diff options
Diffstat (limited to 'meta-oe/recipes-support/libsoup/libsoup-2.4/CVE-2025-32052.patch')
-rw-r--r-- | meta-oe/recipes-support/libsoup/libsoup-2.4/CVE-2025-32052.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libsoup/libsoup-2.4/CVE-2025-32052.patch b/meta-oe/recipes-support/libsoup/libsoup-2.4/CVE-2025-32052.patch new file mode 100644 index 0000000000..34bc8113a4 --- /dev/null +++ b/meta-oe/recipes-support/libsoup/libsoup-2.4/CVE-2025-32052.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From f4a67a9a3033586edaee715d40d5992e02d32893 Mon Sep 17 00:00:00 2001 | ||
2 | From: Patrick Griffis <pgriffis@igalia.com> | ||
3 | Date: Sat, 16 Nov 2024 12:07:30 -0600 | ||
4 | Subject: [PATCH] Fix heap buffer overflow in soup_content_sniffer_sniff | ||
5 | |||
6 | Co-Author: Ar Jun <pkillarjun@protonmail.com> | ||
7 | |||
8 | CVE: CVE-2025-32052 | ||
9 | Upstream-Status: Backport | ||
10 | [https://gitlab.gnome.org/GNOME/libsoup/-/commit/f182429e5b1fc034050510da20c93256c4fa9652#500da7cfde649872c49169be34b03a1c42a53ddb] | ||
11 | |||
12 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
13 | --- | ||
14 | libsoup/soup-content-sniffer.c | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/libsoup/soup-content-sniffer.c b/libsoup/soup-content-sniffer.c | ||
18 | index 9554636..eac9e7b 100644 | ||
19 | --- a/libsoup/soup-content-sniffer.c | ||
20 | +++ b/libsoup/soup-content-sniffer.c | ||
21 | @@ -504,7 +504,7 @@ sniff_unknown (SoupContentSniffer *sniffer, SoupBuffer *buffer, | ||
22 | guint index_pattern = 0; | ||
23 | gboolean skip_row = FALSE; | ||
24 | |||
25 | - while ((index_stream < resource_length) && | ||
26 | + while ((index_stream < resource_length - 1) && | ||
27 | (index_pattern <= type_row->pattern_length)) { | ||
28 | /* Skip insignificant white space ("WS" in the spec) */ | ||
29 | if (type_row->pattern[index_pattern] == ' ') { | ||
30 | -- | ||
31 | 2.34.1 | ||
32 | |||