Skip to content

Commit 9c408c4

Browse files
authored
Merge pull request puppetlabs#921 from amitkarsale/PA-6962-curl
(PA-6962) update curl to address CVE-2024-8096
2 parents ecf1c5a + 0bbd1f0 commit 9c408c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configs/components/curl.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
case version
77
when '7.88.1'
88
pkg.sha256sum 'cdb38b72e36bc5d33d5b8810f8018ece1baa29a8f215b4495e495ded82bbf3c7'
9-
when '8.9.1'
10-
pkg.sha256sum '291124a007ee5111997825940b3876b3048f7d31e73e9caa681b80fe48b2dcd5'
9+
when '8.10.1'
10+
pkg.sha256sum 'd15ebab765d793e2e96db090f0e172d127859d78ca6f6391d7eafecfd894bbc0'
1111
else
1212
raise "curl version #{version} has not been configured; Cannot continue."
1313
end
@@ -53,7 +53,7 @@
5353
end
5454

5555
configure_options = []
56-
configure_options << "--with-ssl=#{settings[:prefix]}"
56+
configure_options << "--with-ssl=#{settings[:prefix]} --without-libpsl"
5757

5858
# OpenSSL version 3.0 & up no longer ships by default the insecure algorithms
5959
# that curl's ntlm module depends on (md4 & des).

configs/projects/agent-runtime-main.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
proj.setting :augeas_version, '1.14.1'
1515
end
1616

17-
proj.setting :curl_version, '8.9.1'
17+
proj.setting :curl_version, '8.10.1'
1818

1919
########
2020
# Load shared agent settings

0 commit comments

Comments
 (0)