From 4c198f4891cfabde868944d55ff98925e7beb757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 4 Oct 2024 13:09:43 +0300 Subject: [PATCH] wavparse: Make sure enough data for the tag list tag is available before parsing Thanks to Antonio Morales for finding and reporting the issue. Fixes GHSL-2024-258 Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3886 Part-of: Upstream-Status: Backport [https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/4c198f4891cfabde868944d55ff98925e7beb757] CVE: CVE-2024-47775 CVE-2024-47776 CVE-2024-47777 CVE-2024-47778 Signed-off-by: Vijay Anusuri --- subprojects/gst-plugins-good/gst/wavparse/gstwavparse.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/subprojects/gst-plugins-good/gst/wavparse/gstwavparse.c b/subprojects/gst-plugins-good/gst/wavparse/gstwavparse.c index 97d5591fae8f..21cb48c07eb3 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -1489,6 +1489,10 @@ gst_wavparse_stream_headers (GstWavParse * wav) case GST_RIFF_TAG_LIST:{ guint32 ltag; + /* Need at least the ltag */ + if (size < 4) + goto exit; + if (wav->streaming) { const guint8 *data = NULL; -- GitLab