summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files/CVE-2023-31484.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/files/CVE-2023-31484.patch')
-rw-r--r--meta/recipes-devtools/perl/files/CVE-2023-31484.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/files/CVE-2023-31484.patch b/meta/recipes-devtools/perl/files/CVE-2023-31484.patch
new file mode 100644
index 0000000000..0fea7bf8a8
--- /dev/null
+++ b/meta/recipes-devtools/perl/files/CVE-2023-31484.patch
@@ -0,0 +1,27 @@
1CVE: CVE-2023-31484
2Upstream-Status: Backport [ import from Ubuntu perl_5.30.0-9ubuntu0.5
3upstream https://github.com/andk/cpanpm/commit/9c98370287f4e709924aee7c58ef21c85289a7f0 ]
4Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
5
6From 9c98370287f4e709924aee7c58ef21c85289a7f0 Mon Sep 17 00:00:00 2001
7From: Stig Palmquist <git@stig.io>
8Date: Tue, 28 Feb 2023 11:54:06 +0100
9Subject: [PATCH] Add verify_SSL=>1 to HTTP::Tiny to verify https server
10 identity
11
12---
13 lib/CPAN/HTTP/Client.pm | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/cpan/CPAN/lib/CPAN/HTTP/Client.pm b/cpan/CPAN/lib/CPAN/HTTP/Client.pm
17index 4fc792c26..a616fee20 100644
18--- a/cpan/CPAN/lib/CPAN/HTTP/Client.pm
19+++ b/cpan/CPAN/lib/CPAN/HTTP/Client.pm
20@@ -32,6 +32,7 @@ sub mirror {
21
22 my $want_proxy = $self->_want_proxy($uri);
23 my $http = HTTP::Tiny->new(
24+ verify_SSL => 1,
25 $want_proxy ? (proxy => $self->{proxy}) : ()
26 );
27