summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/curl/curl/CVE-2016-8615.patch
diff options
context:
space:
mode:
authorSona Sarmadi <sona.sarmadi@enea.com>2017-04-21 12:29:17 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2017-04-21 13:54:14 +0200
commit3fc5d271f554e07c88b1195812e48a0d86291395 (patch)
treeaa886d608aee07639e7a841d0618ccd0bda97bc7 /meta/recipes-support/curl/curl/CVE-2016-8615.patch
parent9ee38b3a027470c98f7337dceac67ba06420c075 (diff)
downloadpoky-3fc5d271f554e07c88b1195812e48a0d86291395.tar.gz
curl: Upgrade 7.47.1 -> 7.53.1
Security vulnerabilities fixed between 7.47.1 and 7.53.1 versions: ================================================================= TLS session resumption client cert bypass (again): CVE-2017-XXXX --write-out out of buffer read: CVE-2017-7407 SSL_VERIFYSTATUS ignored: CVE-2017-2629 uninitialized random: CVE-2016-9594 printf floating point buffer overflow: CVE-2016-9586 Win CE schannel cert wildcard matches too much: CVE-2016-9952 Win CE schannel cert name out of buffer read: CVE-2016-9953 cookie injection for other servers: CVE-2016-8615 case insensitive password comparison: CVE-2016-8616 OOB write via unchecked multiplication: CVE-2016-8617 double-free in curl_maprintf: CVE-2016-8618 double-free in krb5 code: CVE-2016-8619 glob parser write/read out of bounds: CVE-2016-8620 curl_getdate read out of bounds: CVE-2016-8621 URL unescape heap overflow via integer truncation: CVE-2016-8622 Use-after-free via shared cookies: CVE-2016-8623 invalid URL parsing with '#': CVE-2016-8624 IDNA 2003 makes curl use wrong host: CVE-2016-8625 curl escape and unescape integer overflows: CVE-2016-7167 Incorrect reuse of client certificates: CVE-2016-7141 TLS session resumption client cert bypass: CVE-2016-5419 Re-using connections with wrong client cert: CVE-2016-5420 use of connection struct after free: CVE-2016-5421 Windows DLL hijacking: CVE-2016-4802 TLS certificate check bypass with mbedTLS/PolarSSL: CVE-2016-3739 Reference: https://curl.haxx.se/docs/security.html https://curl.haxx.se/changes.html Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com> Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-support/curl/curl/CVE-2016-8615.patch')
-rw-r--r--meta/recipes-support/curl/curl/CVE-2016-8615.patch77
1 files changed, 0 insertions, 77 deletions
diff --git a/meta/recipes-support/curl/curl/CVE-2016-8615.patch b/meta/recipes-support/curl/curl/CVE-2016-8615.patch
deleted file mode 100644
index 5faa423a2a..0000000000
--- a/meta/recipes-support/curl/curl/CVE-2016-8615.patch
+++ /dev/null
@@ -1,77 +0,0 @@
1From 1620f552a277ed5b23a48b9c27dbf07663cac068 Mon Sep 17 00:00:00 2001
2From: Daniel Stenberg <daniel@haxx.se>
3Date: Tue, 27 Sep 2016 17:36:19 +0200
4Subject: [PATCH] cookie: replace use of fgets() with custom version
5
6... that will ignore lines that are too long to fit in the buffer.
7
8CVE: CVE-2016-8615
9Upstream-Status: Backport
10
11Bug: https://curl.haxx.se/docs/adv_20161102A.html
12Reported-by: Cure53
13Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
14---
15 lib/cookie.c | 31 ++++++++++++++++++++++++++++++-
16 1 file changed, 30 insertions(+), 1 deletion(-)
17
18diff --git a/lib/cookie.c b/lib/cookie.c
19index 0f05da2..e5097d3 100644
20--- a/lib/cookie.c
21+++ b/lib/cookie.c
22@@ -901,10 +901,39 @@ Curl_cookie_add(struct Curl_easy *data,
23 }
24
25 return co;
26 }
27
28+/*
29+ * get_line() makes sure to only return complete whole lines that fit in 'len'
30+ * bytes and end with a newline.
31+ */
32+static char *get_line(char *buf, int len, FILE *input)
33+{
34+ bool partial = FALSE;
35+ while(1) {
36+ char *b = fgets(buf, len, input);
37+ if(b) {
38+ size_t rlen = strlen(b);
39+ if(rlen && (b[rlen-1] == '\n')) {
40+ if(partial) {
41+ partial = FALSE;
42+ continue;
43+ }
44+ return b;
45+ }
46+ else
47+ /* read a partial, discard the next piece that ends with newline */
48+ partial = TRUE;
49+ }
50+ else
51+ break;
52+ }
53+ return NULL;
54+}
55+
56+
57 /*****************************************************************************
58 *
59 * Curl_cookie_init()
60 *
61 * Inits a cookie struct to read data from a local file. This is always
62@@ -957,11 +986,11 @@ struct CookieInfo *Curl_cookie_init(struct Curl_easy *data,
63 bool headerline;
64
65 line = malloc(MAX_COOKIE_LINE);
66 if(!line)
67 goto fail;
68- while(fgets(line, MAX_COOKIE_LINE, fp)) {
69+ while(get_line(line, MAX_COOKIE_LINE, fp)) {
70 if(checkprefix("Set-Cookie:", line)) {
71 /* This is a cookie line, get it! */
72 lineptr=&line[11];
73 headerline=TRUE;
74 }
75--
762.9.3
77