Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-47613

CVE-2024-47613: GStreamer Null Pointer Dereference DoS

CVE-2024-47613 is a null pointer dereference vulnerability in GStreamer that triggers a segmentation fault, causing denial of service. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 8, 2026

CVE-2024-47613 Overview

A null pointer dereference vulnerability has been discovered in GStreamer, the widely-used open-source multimedia framework for constructing graphs of media-handling components. The vulnerability exists in the gst_gdk_pixbuf_dec_flush function within gstgdkpixbufdec.c. When processing certain media files, the function invokes memcpy using out_pix as the destination address, which is expected to point to frame 0 from the frame structure read from the input file. However, under specific conditions, out_pix can reference a NULL frame, causing memcpy to attempt writing to address 0x00 and triggering a segmentation fault.

Critical Impact

This vulnerability enables attackers to cause a Denial of Service (DoS) condition by crashing applications that use the GStreamer GDK Pixbuf decoder plugin when processing maliciously crafted media files.

Affected Products

  • GStreamer versions prior to 1.24.10
  • Applications and systems using the GStreamer GDK Pixbuf decoder plugin (gstgdkpixbufdec.c)
  • Linux distributions shipping vulnerable GStreamer packages

Discovery Timeline

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

Technical Details for CVE-2024-47613

Vulnerability Analysis

This vulnerability is classified under CWE-476 (NULL Pointer Dereference) and CWE-787 (Out-of-bounds Write). The flaw occurs in the GDK Pixbuf decoder component of GStreamer, which is responsible for handling image data within media streams.

The vulnerable function gst_gdk_pixbuf_dec_flush processes frame data from input media files. During normal operation, the function expects out_pix to contain a valid pointer to frame 0's buffer. However, insufficient validation allows out_pix to be dereferenced when it contains a NULL value. When this occurs, the subsequent memcpy operation attempts to write data to memory address 0x00, which is a protected memory region on most systems, causing an immediate segmentation fault and process termination.

The local attack vector requires an attacker to provide a specially crafted media file to an application using the vulnerable GStreamer component. This could occur through various scenarios including media players opening malicious files, web browsers processing embedded media, or automated media processing pipelines.

Root Cause

The root cause of this vulnerability is inadequate input validation and null pointer checking in the gst_gdk_pixbuf_dec_flush function. The code fails to verify that out_pix contains a valid, non-NULL pointer before passing it to memcpy. When the input file contains malformed or unexpected frame data that results in a NULL frame reference, the code proceeds with the memory copy operation without checking for this condition.

Attack Vector

Exploitation of this vulnerability requires local access to provide a maliciously crafted media file to an application using GStreamer's GDK Pixbuf decoder. An attacker could:

  1. Create a specially crafted media file designed to trigger the NULL frame condition
  2. Deliver the malicious file to the target system through various means (email attachment, web download, shared storage)
  3. When the victim opens or processes the file with a GStreamer-based application, the null pointer dereference occurs
  4. The application crashes with a segmentation fault, resulting in denial of service

The vulnerability does not require user privileges for exploitation, as any user with access to process media files can trigger the condition. Applications that automatically process uploaded or received media files are particularly at risk.

Detection Methods for CVE-2024-47613

Indicators of Compromise

  • Unexpected crashes or segmentation faults in GStreamer-based media applications
  • Core dump files containing references to gst_gdk_pixbuf_dec_flush or gstgdkpixbufdec.c
  • Application logs showing null pointer access violations during media processing
  • Repeated crashes when processing specific media files

Detection Strategies

  • Monitor system logs for SIGSEGV signals originating from GStreamer processes
  • Implement crash dump analysis to identify null pointer dereference patterns in GStreamer components
  • Deploy file integrity monitoring for media files that consistently cause application crashes
  • Use runtime application self-protection (RASP) to detect and prevent null pointer access attempts

Monitoring Recommendations

  • Enable application crash reporting and analyze crash patterns for GStreamer-related failures
  • Monitor for unusual media file processing failures in automated pipelines
  • Track GStreamer process terminations and correlate with media file inputs
  • Implement logging for all media file processing operations to identify potentially malicious files

How to Mitigate CVE-2024-47613

Immediate Actions Required

  • Update GStreamer to version 1.24.10 or later, which contains the fix for this vulnerability
  • Review and update all applications and container images that bundle GStreamer
  • Implement input validation for media files before processing with GStreamer
  • Consider temporarily disabling or restricting access to the GDK Pixbuf decoder plugin if immediate patching is not possible

Patch Information

The vulnerability has been fixed in GStreamer version 1.24.10. The official patch is available through the GitLab Merge Request Patch. Additional security information is available in the GStreamer Security Advisory and the GitHub Security Advisory.

For Debian-based systems, refer to the Debian LTS Announcement for distribution-specific patches.

Workarounds

  • Restrict processing of untrusted media files until the patch is applied
  • Implement application sandboxing to limit the impact of crashes on the broader system
  • Use input validation to reject malformed media files before they reach GStreamer
  • Consider running media processing tasks in isolated environments or containers
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 Fedora/RHEL systems
sudo dnf update gstreamer1-plugins-good

# Verify the installed version is 1.24.10 or later
gst-inspect-1.0 --version | grep -E "GStreamer.*1\.24\.(1[0-9]|[2-9][0-9])"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGstreamer

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-476

  • CWE-787
  • Technical References
  • GStreamer Security Advisory

  • GitHub Security Advisory

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

  • CVE-2024-47775: GStreamer OOB-Read DoS Vulnerability

  • 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