The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2024-47776

CVE-2024-47776: GStreamer OOB-Read DoS Vulnerability

CVE-2024-47776 is an out-of-bounds read vulnerability in GStreamer's wavparse component that enables denial of service attacks. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 8, 2026

CVE-2024-47776 Overview

CVE-2024-47776 is an out-of-bounds read vulnerability discovered in the GStreamer multimedia framework, specifically within the gst_wavparse_cue_chunk function in gstwavparse.c. GStreamer is a widely-used open-source library for constructing graphs of media-handling components, commonly found in Linux desktop environments and multimedia applications.

The vulnerability arises from a discrepancy between the actual size of a data buffer and the size value provided to the function. This mismatch causes the bounds check comparison if (size < 4 + ncues * 24) to fail in certain cases, allowing subsequent loop operations to access memory beyond the legitimate bounds of the data buffer. The root cause stems from a miscalculation when clipping the chunk size based on upstream data size.

Critical Impact

This vulnerability allows reading beyond the bounds of the data buffer, potentially leading to a crash (denial of service) or the leak of sensitive data from memory.

Affected Products

  • GStreamer versions prior to 1.24.10
  • Linux distributions using vulnerable GStreamer packages
  • Applications built with affected GStreamer libraries

Discovery Timeline

  • 2024-12-12 - CVE-2024-47776 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2024-47776

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read), which occurs when a program reads data from outside the intended buffer boundaries. In the context of GStreamer's WAV parser, the vulnerability manifests when processing cue chunk data within WAV audio files.

The gst_wavparse_cue_chunk function is responsible for parsing cue points embedded in WAV files. The function performs a size validation check to ensure the buffer contains enough data for the expected number of cue entries. However, due to an error in how the chunk size is clipped based on upstream data size, this validation can be bypassed under specific conditions.

When a maliciously crafted WAV file with manipulated cue chunk metadata is processed, the parser may read beyond the allocated buffer, accessing adjacent memory regions that could contain sensitive information or cause the application to crash.

Root Cause

The root cause of this vulnerability is a miscalculation when clipping the chunk size based on upstream data size. When GStreamer processes a WAV file, it determines the size of various chunks within the file. The discrepancy between the reported size and the actual buffer size causes the bounds check if (size < 4 + ncues * 24) to incorrectly pass validation, allowing the parsing loop to iterate beyond safe memory boundaries.

This is a classic example of an input validation error where the size parameter is not properly validated against the actual buffer allocation before being used in memory access operations.

Attack Vector

The attack vector is local, requiring an attacker to deliver a maliciously crafted WAV file to the target system. Exploitation scenarios include:

The vulnerability is triggered when GStreamer parses specially crafted WAV files containing manipulated cue chunk metadata. An attacker would need to craft a WAV file where the cue chunk size parameters create a mismatch with the actual buffer allocation. When such a file is opened by any application using the vulnerable GStreamer library, the out-of-bounds read occurs during the parsing of cue point data. For technical details on the vulnerability mechanism, see the GStreamer Security Advisory 2024-0027 and GitHub Security Advisory GHSL-2024-260.

Detection Methods for CVE-2024-47776

Indicators of Compromise

  • Unexpected crashes in applications using GStreamer when processing WAV files
  • Memory access violations or segmentation faults in gstwavparse.c related functions
  • Unusual memory access patterns during WAV file parsing operations

Detection Strategies

  • Monitor for application crashes with stack traces pointing to gst_wavparse_cue_chunk or related WAV parsing functions
  • Implement file integrity monitoring on systems processing untrusted WAV files
  • Deploy endpoint detection solutions capable of identifying memory access anomalies during media file processing

Monitoring Recommendations

  • Log and analyze GStreamer-related crashes across multimedia applications
  • Monitor for suspicious WAV files with abnormal cue chunk structures in file upload or processing pipelines
  • Track GStreamer library versions across your environment to identify vulnerable installations

How to Mitigate CVE-2024-47776

Immediate Actions Required

  • Update GStreamer to version 1.24.10 or later immediately
  • Review and restrict access to systems processing untrusted media files
  • Consider temporarily disabling WAV file processing in high-security environments until patches are applied

Patch Information

GStreamer has released a security patch that addresses this vulnerability in version 1.24.10. The fix corrects the size calculation when clipping the chunk size based on upstream data, ensuring proper bounds validation before accessing buffer memory.

The official patch is available through the GitLab GStreamer Patch. Debian users should refer to the Debian LTS Announcement for distribution-specific package updates.

Workarounds

  • Restrict processing of untrusted WAV files until the patch can be applied
  • Implement input validation at the application level to reject WAV files with suspicious cue chunk metadata
  • Use sandboxing or containerization for applications that must process untrusted media files
  • Deploy network-level filtering to prevent potentially malicious WAV files from reaching vulnerable systems
bash
# Check current GStreamer version
gst-launch-1.0 --version

# Update GStreamer on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade gstreamer1.0-plugins-good

# Verify the updated version includes the fix (should be 1.24.10 or later)
dpkg -l | grep gstreamer

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGstreamer

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-125
  • Technical References
  • GStreamer Security Advisory 2024-0027

  • GitHub Security Advisory GHSL-2024-260

  • Debian LTS Announcement
  • Vendor Resources
  • GitLab GStreamer Patch
  • Related CVEs
  • CVE-2024-47775: GStreamer OOB-Read DoS Vulnerability

  • CVE-2024-47613: GStreamer Null Pointer Dereference DoS

  • CVE-2026-2923: GStreamer DVB Subtitles RCE Vulnerability

  • CVE-2026-2922: GStreamer RealMedia Demuxer RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English