diff --git a/SOURCES/cve-2023-27371.patch b/SOURCES/cve-2023-27371.patch new file mode 100644 index 0000000..fa85125 --- /dev/null +++ b/SOURCES/cve-2023-27371.patch @@ -0,0 +1,15 @@ +diff --git a/src/microhttpd/postprocessor.c b/src/microhttpd/postprocessor.c +index 99074215..c00605c7 100644 +--- a/src/microhttpd/postprocessor.c ++++ b/src/microhttpd/postprocessor.c +@@ -83,7 +83,7 @@ MHD_create_post_processor (struct MHD_Connection *connection, + return NULL; /* failed to determine boundary */ + boundary += MHD_STATICSTR_LEN_ ("boundary="); + blen = strlen (boundary); +- if ( (blen == 0) || ++ if ( (blen < 2) || + (blen * 2 + 2 > buffer_size) ) + return NULL; /* (will be) out of memory or invalid boundary */ + if ( (boundary[0] == '"') && +-- +cgit v1.2.3 diff --git a/SPECS/libmicrohttpd.spec b/SPECS/libmicrohttpd.spec index c400167..51b80d0 100644 --- a/SPECS/libmicrohttpd.spec +++ b/SPECS/libmicrohttpd.spec @@ -1,12 +1,13 @@ Name: libmicrohttpd Version: 0.9.72 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 1 Summary: Lightweight library for embedding a webserver in applications License: LGPLv2+ URL: http://www.gnu.org/software/libmicrohttpd/ Source0: https://ftp.gnu.org/gnu/libmicrohttpd/%{name}-%{version}.tar.gz Patch0: gnutls-utilize-system-crypto-policy.patch +Patch1: cve-2023-27371.patch BuildRequires: autoconf, automake, libtool, gettext-devel BuildRequires: texinfo @@ -107,6 +108,11 @@ fi %doc html %changelog +* Tue Mar 28 2023 Pavel Šimovec - 1:0.9.72-5 +- Add cve-2023-27371.patch + Related: rhbz#2174640 + CVE-2023-27371 + * Mon Aug 09 2021 Mohan Boddu - 1:0.9.72-4 - Rebuilt for IMA sigs, glibc 2.34, aarch64 flags Related: rhbz#1991688