diff options
author | Vivek Kumbhar <vkumbhar@mvista.com> | 2022-11-11 11:10:31 +0530 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-20 08:19:10 +0000 |
commit | 213cf8004c19d34bba9f7840911d545588671462 (patch) | |
tree | 68e88918ab0d1bf7de0db7b9b552e6e0977b2729 /meta | |
parent | b39245d723fd04f706d475710a3b0ebb5c611825 (diff) | |
download | poky-213cf8004c19d34bba9f7840911d545588671462.tar.gz |
curl: fix CVE-2022-32221 POST following PUT
Upstream-Status: Backport from https://github.com/curl/curl/commit/a64e3e59938abd7d6
(From OE-Core rev: 9af175e122acb93a412ad7a099f0eaa793a1c097)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/curl/curl/CVE-2022-32221.patch | 29 | ||||
-rw-r--r-- | meta/recipes-support/curl/curl_7.69.1.bb | 1 |
2 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-support/curl/curl/CVE-2022-32221.patch b/meta/recipes-support/curl/curl/CVE-2022-32221.patch new file mode 100644 index 0000000000..8e662abd3a --- /dev/null +++ b/meta/recipes-support/curl/curl/CVE-2022-32221.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From 75c04a3e75e8e3025a17ca3033ca307da9691cd0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Vivek Kumbhar <vkumbhar@mvista.com> | ||
3 | Date: Fri, 11 Nov 2022 10:49:58 +0530 | ||
4 | Subject: [PATCH] CVE-2022-32221 | ||
5 | |||
6 | Upstream-Status: Backport [https://github.com/curl/curl/commit/a64e3e59938abd7d6] | ||
7 | CVE: CVE-2022-32221 | ||
8 | Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com> | ||
9 | |||
10 | setopt: when POST is set, reset the 'upload' field. | ||
11 | --- | ||
12 | lib/setopt.c | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | diff --git a/lib/setopt.c b/lib/setopt.c | ||
16 | index bebb2e4..4d96f6b 100644 | ||
17 | --- a/lib/setopt.c | ||
18 | +++ b/lib/setopt.c | ||
19 | @@ -486,6 +486,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param) | ||
20 | } | ||
21 | else | ||
22 | data->set.httpreq = HTTPREQ_GET; | ||
23 | + data->set.upload = FALSE; | ||
24 | break; | ||
25 | |||
26 | case CURLOPT_COPYPOSTFIELDS: | ||
27 | -- | ||
28 | 2.25.1 | ||
29 | |||
diff --git a/meta/recipes-support/curl/curl_7.69.1.bb b/meta/recipes-support/curl/curl_7.69.1.bb index ed37094049..31aa9d7185 100644 --- a/meta/recipes-support/curl/curl_7.69.1.bb +++ b/meta/recipes-support/curl/curl_7.69.1.bb | |||
@@ -39,6 +39,7 @@ SRC_URI = "https://curl.haxx.se/download/curl-${PV}.tar.bz2 \ | |||
39 | file://CVE-2022-32207.patch \ | 39 | file://CVE-2022-32207.patch \ |
40 | file://CVE-2022-32208.patch \ | 40 | file://CVE-2022-32208.patch \ |
41 | file://CVE-2022-35252.patch \ | 41 | file://CVE-2022-35252.patch \ |
42 | file://CVE-2022-32221.patch \ | ||
42 | " | 43 | " |
43 | 44 | ||
44 | SRC_URI[md5sum] = "ec5fc263f898a3dfef08e805f1ecca42" | 45 | SRC_URI[md5sum] = "ec5fc263f898a3dfef08e805f1ecca42" |