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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-47774

CVE-2024-47774: GStreamer OOB-Read Vulnerability

CVE-2024-47774 is an out-of-bounds read flaw in GStreamer's AVI subtitle parsing that causes memory access beyond buffer boundaries. This article covers the technical details, affected versions, and mitigation steps.

Published: April 15, 2026

CVE-2024-47774 Overview

CVE-2024-47774 is an out-of-bounds read vulnerability discovered in GStreamer, a widely-used open-source multimedia framework for constructing graphs of media-handling components. The vulnerability exists within the gst_avi_subtitle_parse_gab2_chunk function in the gstavisubtitle.c file, where improper validation of the name_length value read from input files can lead to an integer overflow condition, ultimately causing memory access beyond allocated buffer boundaries.

Critical Impact

This vulnerability allows attackers to trigger out-of-bounds memory reads through specially crafted AVI subtitle files, potentially leading to information disclosure or application crashes affecting multimedia applications built on GStreamer.

Affected Products

  • GStreamer versions prior to 1.24.10
  • Applications and media players utilizing vulnerable GStreamer libraries
  • Linux distributions and systems with unpatched GStreamer installations

Discovery Timeline

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

Technical Details for CVE-2024-47774

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read), occurring in the AVI subtitle parsing functionality of GStreamer. The flaw stems from insufficient bounds checking when processing subtitle chunks within AVI container files.

The vulnerable function reads the name_length value directly from the input file without adequate validation. The critical issue arises when name_length exceeds 0xFFFFFFFF - 17, which causes an integer overflow during subsequent arithmetic operations. When this overflow occurs, the boundary check condition fails to properly constrain the memory access, allowing the function to read memory beyond the allocated buffer.

This type of vulnerability requires local access to exploit, as an attacker would need to provide a maliciously crafted AVI file for processing. The impact includes potential information disclosure through leaked memory contents and denial of service through application crashes.

Root Cause

The root cause of CVE-2024-47774 is an integer overflow vulnerability combined with insufficient input validation. The name_length parameter is read from untrusted input (the AVI file) and used in arithmetic calculations without proper bounds checking to prevent integer wraparound. When name_length values approach the maximum 32-bit integer boundary, adding 17 to this value causes the result to wrap around to a small number, bypassing the intended boundary check and enabling the out-of-bounds read condition.

Attack Vector

The attack vector for this vulnerability is local, requiring an attacker to craft a malicious AVI file containing a specially constructed subtitle chunk. The exploitation scenario involves:

  1. An attacker creates an AVI file with a GAB2 subtitle chunk containing a name_length value designed to trigger the integer overflow
  2. The victim opens or processes the malicious AVI file using an application built on the vulnerable GStreamer library
  3. When GStreamer parses the subtitle chunk, the integer overflow bypasses boundary checks
  4. The application reads memory beyond the allocated buffer, potentially exposing sensitive data or causing a crash

The vulnerability does not require elevated privileges to trigger, though exploitation is limited to scenarios where the attacker can influence media files processed by the target system.

Detection Methods for CVE-2024-47774

Indicators of Compromise

  • Unexpected crashes in applications using GStreamer when processing AVI files with embedded subtitles
  • Abnormal memory access patterns or segmentation faults in media processing workflows
  • AVI files with unusually large or malformed subtitle chunk headers in media directories

Detection Strategies

  • Monitor for application crashes in GStreamer-based media players with crash dumps indicating gstavisubtitle.c or related components
  • Implement file integrity monitoring for media processing directories to detect suspicious AVI files
  • Deploy memory sanitizer tools (AddressSanitizer, Valgrind) in development and testing environments to detect out-of-bounds reads

Monitoring Recommendations

  • Enable verbose logging for media processing applications to capture detailed parsing errors
  • Monitor system logs for SIGSEGV or SIGBUS signals from GStreamer-dependent processes
  • Implement application-level telemetry to track unusual file processing failures in multimedia pipelines

How to Mitigate CVE-2024-47774

Immediate Actions Required

  • Update GStreamer to version 1.24.10 or later, which contains the fix for this vulnerability
  • Review and update all applications that bundle or depend on GStreamer libraries
  • Limit processing of AVI files from untrusted sources until patching is complete
  • Consider disabling AVI subtitle parsing functionality if not required for your use case

Patch Information

The vulnerability has been fixed in GStreamer version 1.24.10. The official patch is available through the GitLab Merge Request. Additional security information is available through the GitHub Security Advisory and Debian LTS Announcement for distribution-specific guidance.

System administrators should update GStreamer packages through their distribution's package manager or compile from source using the patched version for systems requiring custom builds.

Workarounds

  • Restrict AVI file processing to trusted sources only through access controls and content filtering
  • Implement input validation at the application layer to reject AVI files with abnormal subtitle chunk sizes before passing to GStreamer
  • Run media processing applications in sandboxed environments to limit the impact of potential exploitation
  • Consider using alternative subtitle formats that do not rely on the vulnerable GAB2 parsing code
bash
# Configuration example
# Check installed GStreamer version
gst-inspect-1.0 --version

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

# Update GStreamer on RHEL/CentOS systems
sudo dnf update gstreamer1-plugins-good

# Verify the update was successful
gst-inspect-1.0 --version

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechGstreamer

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.10%

  • 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
  • GitHub Security Issue

  • GitHub Security Advisory

  • Debian LTS Announcement
  • Vendor Resources
  • GitLab Merge Request Patch
  • Related CVEs
  • CVE-2025-47219: GStreamer Information Disclosure Flaw

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

  • CVE-2026-2922: GStreamer RealMedia Demuxer RCE Vulnerability

  • CVE-2026-2921: GStreamer RIFF Palette 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