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-2025-10256

CVE-2025-10256: FFmpeg Firequalizer Filter DoS Vulnerability

CVE-2025-10256 is a NULL pointer dereference flaw in FFmpeg's Firequalizer filter that causes application crashes when processing crafted media files. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-10256 Overview

A NULL pointer dereference vulnerability exists in FFmpeg's Firequalizer filter (libavfilter/af_firequalizer.c) due to a missing check on the return value of av_malloc_array() in the config_input() function. An attacker could exploit this by tricking a victim into processing a crafted media file with the Firequalizer filter enabled, causing the application to dereference a NULL pointer and crash, leading to denial of service.

Critical Impact

Processing a maliciously crafted media file with FFmpeg's Firequalizer filter can cause application crashes through NULL pointer dereference, resulting in denial of service conditions for media processing workflows.

Affected Products

  • FFmpeg (versions with vulnerable libavfilter/af_firequalizer.c)
  • Applications and services utilizing FFmpeg's Firequalizer audio filter
  • Media processing pipelines leveraging FFmpeg's libavfilter library

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-10256 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-10256

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference). The flaw exists in FFmpeg's Firequalizer audio filter implementation within libavfilter/af_firequalizer.c. The vulnerability stems from improper handling of memory allocation failures in the config_input() function.

When the av_malloc_array() function is called to allocate memory for the dump_buf buffer, it may return NULL if the allocation fails due to insufficient memory or other system constraints. The original vulnerable code did not validate the return value before using the pointer, leading to a NULL pointer dereference when the buffer is subsequently accessed.

The vulnerability can be triggered remotely through network-based attack vectors, as an attacker can deliver a specially crafted media file to a victim. Processing this file with FFmpeg's Firequalizer filter enabled causes the application to crash, resulting in denial of service.

Root Cause

The root cause is the absence of a NULL pointer check after calling av_malloc_array() for the s->dump_buf allocation. Memory allocation functions in C can fail and return NULL, particularly under memory pressure conditions or when processing files that request abnormally large allocations. Without proper validation, subsequent operations on the returned pointer result in undefined behavior and application crashes.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction beyond processing a malicious media file. An attacker can craft a media file designed to trigger specific conditions in the Firequalizer filter that cause memory allocation to fail. When a victim processes this file using FFmpeg with the Firequalizer filter, the NULL pointer dereference occurs, crashing the application.

Attack scenarios include:

  • Serving malicious media files through compromised or attacker-controlled websites
  • Sending crafted media files via email or messaging platforms
  • Uploading malicious files to media processing services that use FFmpeg
c
         if ((ret = av_tx_init(&s->analysis_rdft, &s->analysis_rdft_fn, AV_TX_FLOAT_RDFT, 0, 1 << rdft_bits, &scale, 0)) < 0)
             return ret;
         s->dump_buf = av_malloc_array(s->analysis_rdft_len + 2, sizeof(*s->dump_buf));
+        if (!s->dump_buf)
+            return AVERROR(ENOMEM);
     }
 
     s->analysis_buf = av_malloc_array((s->analysis_rdft_len + 2), sizeof(*s->analysis_buf));

Source: FFmpeg Commit a25462482 Analysis

Detection Methods for CVE-2025-10256

Indicators of Compromise

  • Unexpected FFmpeg process crashes or terminations during media processing
  • Segmentation fault (SIGSEGV) signals in application logs related to FFmpeg operations
  • Core dump files generated from FFmpeg or applications using libavfilter
  • Repeated crash patterns when processing specific media files through the Firequalizer filter

Detection Strategies

  • Monitor system logs for FFmpeg process crashes and segmentation fault errors
  • Implement file integrity monitoring for media files in processing queues to detect anomalous inputs
  • Deploy endpoint detection solutions that can identify NULL pointer dereference crash patterns
  • Audit FFmpeg invocations to identify usage of the Firequalizer filter (-af firequalizer)

Monitoring Recommendations

  • Configure crash dump collection and analysis for FFmpeg processes to identify exploitation attempts
  • Set up alerting for repeated FFmpeg process failures within short time windows
  • Monitor memory allocation patterns in media processing workloads for anomalies
  • Review access logs for media processing endpoints to identify potential malicious file uploads

How to Mitigate CVE-2025-10256

Immediate Actions Required

  • Update FFmpeg to a patched version that includes the fix from commits a25462482c02c004d685a8fcf2fa63955aaa0931 and d3be186ed1bcdcf2c093d6b13a0e66dc5132be2a
  • If immediate patching is not possible, disable or avoid using the Firequalizer audio filter in production workflows
  • Implement input validation to screen media files before processing with FFmpeg
  • Consider running FFmpeg processes in sandboxed environments to limit the impact of crashes

Patch Information

The vulnerability has been addressed through patches committed to the FFmpeg repository. The fix adds proper NULL pointer validation after the av_malloc_array() call in the Firequalizer filter's config_input() function. When memory allocation fails, the function now returns AVERROR(ENOMEM) instead of proceeding with a NULL pointer.

For detailed patch information, refer to:

  • FFmpeg Commit a25462482 Analysis
  • FFmpeg Commit d3be186ed1 Update
  • Red Hat CVE-2025-10256 Advisory

Workarounds

  • Disable the Firequalizer filter (-af firequalizer) in FFmpeg commands until patching is complete
  • Use alternative audio equalization filters that are not affected by this vulnerability
  • Implement process isolation using containers or sandboxing technologies to limit crash impact
  • Deploy rate limiting on media processing endpoints to slow potential exploitation attempts
bash
# Configuration example
# Avoid using the vulnerable firequalizer filter
# Instead of:
# ffmpeg -i input.mp4 -af "firequalizer=gain_entry='...'" output.mp4

# Use alternative filters or process without firequalizer:
ffmpeg -i input.mp4 -af "equalizer=f=1000:t=q:w=1:g=2" output.mp4

# If firequalizer is required, ensure FFmpeg is updated to include the fix
# Check FFmpeg version and commit history:
ffmpeg -version

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFfmpeg

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-476
  • Technical References
  • Red Hat CVE-2025-10256 Advisory

  • Red Hat Bug Report #2394495

  • FFmpeg Commit a25462482 Analysis

  • FFmpeg Commit d3be186ed1 Update
  • Related CVEs
  • CVE-2025-12343: FFmpeg TensorFlow Backend DoS Vulnerability

  • CVE-2021-38291: FFmpeg DOS Vulnerability

  • CVE-2025-69693: FFmpeg RV60 Decoder OOB Read Vulnerability

  • CVE-2024-7055: FFmpeg Buffer Overflow Vulnerability
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