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-69693

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

CVE-2025-69693 is an out-of-bounds read flaw in FFmpeg 8.0 and 8.0.1 RV60 video decoder caused by missing upper bound validation for quantization parameters. This article covers technical details, affected versions, and patches.

Published: March 20, 2026

CVE-2025-69693 Overview

CVE-2025-69693 is an out-of-bounds read vulnerability affecting the RV60 video decoder in FFmpeg versions 8.0 and 8.0.1. The flaw exists in libavcodec/rv60dec.c where the quantization parameter (qp) validation at line 2267 only checks the lower bound (qp < 0) but is missing upper bound validation. This allows an attacker to craft a malicious RV60 video file that triggers out-of-bounds array access, potentially leading to memory disclosure or application crash.

Critical Impact

Processing maliciously crafted RV60 video files can cause out-of-bounds memory read, potentially exposing sensitive memory contents or causing denial of service through application crash.

Affected Products

  • FFmpeg 8.0 (released 2025-08-22)
  • FFmpeg 8.0.1 (released 2025-11-20)

Discovery Timeline

  • 2026-03-16 - CVE-2025-69693 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2025-69693

Vulnerability Analysis

The vulnerability resides in the RV60 video decoder component of FFmpeg. The root issue is that the quantization parameter (qp) can reach a value of 65, calculated as a base value of 63 from the 6-bit frame header plus an offset of +2 from the read_qp_offset function. However, the rv60_qp_to_idx array has a size of only 64 elements, meaning valid indices range from 0 to 63. When the qp value exceeds 63, out-of-bounds array access occurs at multiple locations in the codebase: line 1554 in decode_cbp8, line 1655 in decode_cbp16, and lines 1419/1421 in get_c4x4_set.

A previous fix in commit 61cbcaf93f attempted to address this issue but only added validation for intra frames, leaving the vulnerability exploitable through non-intra frame scenarios.

Root Cause

The root cause is incomplete input validation in the quantization parameter handling. The original validation code checked only for negative values (qp < 0) without enforcing an upper bound. Since the qp value is derived from user-controlled input in the video file header, an attacker can supply values that cause the parameter to exceed the valid array bounds.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious RV60 video file with a specially constructed frame header. When a victim processes this file using FFmpeg (either directly or through an application that uses FFmpeg's libavcodec library), the vulnerable decoder will read beyond the bounds of the rv60_qp_to_idx array. This can result in:

  1. Information Disclosure: Memory contents adjacent to the array may be leaked
  2. Denial of Service: The application may crash due to invalid memory access

The attack requires user interaction to process the malicious file, but the file could be delivered through various vectors including web downloads, email attachments, or media streaming applications.

c
            ff_thread_progress_await(&s->progress[cu_y - 1], cu_x + 2);

        qp = s->qp + read_qp_offset(&gb, s->qp_off_type);
-        if (qp < 0) {
+        if (qp < 0 || qp >= 64) {
            ret = AVERROR_INVALIDDATA;
            break;
        }

Source: GitHub FFmpeg Commit Change

Detection Methods for CVE-2025-69693

Indicators of Compromise

  • Unexpected crashes in applications using FFmpeg when processing RV60 video files
  • Memory access violations or segmentation faults in libavcodec/rv60dec.c
  • Unusual process behavior following RV60 video file processing

Detection Strategies

  • Monitor for crashes in FFmpeg-based applications with stack traces pointing to rv60dec.c
  • Implement file integrity monitoring for media processing workflows
  • Deploy endpoint detection rules that flag abnormal memory access patterns in media decoder processes

Monitoring Recommendations

  • Enable verbose logging in media processing applications to capture decoder errors
  • Monitor system logs for SIGSEGV or similar memory access violation signals from FFmpeg processes
  • Track incoming media files and validate their sources before processing

How to Mitigate CVE-2025-69693

Immediate Actions Required

  • Update FFmpeg to version 8.1 or later when available
  • Apply the security patch from commit 8abeb879df to existing installations
  • Restrict RV60 video decoding in untrusted environments until patched

Patch Information

The vulnerability is fixed in FFmpeg git master commit 8abeb879df66ea8d27ce1735925ced5a30813de4, which adds the missing upper bound check (qp >= 64) to the validation logic. This fix will be included in FFmpeg version 8.1. Organizations running FFmpeg 8.0 or 8.0.1 should apply this patch or upgrade when version 8.1 becomes available.

  • FFmpeg Security Patch Commit
  • FFmpeg 8.0 Release Information
  • FFmpeg 8.0.1 Release Information

Workarounds

  • Disable RV60 video decoding by excluding the RV60 decoder during FFmpeg compilation (--disable-decoder=rv60)
  • Pre-validate media files in sandboxed environments before processing
  • Implement input validation to reject RV60 files from untrusted sources
bash
# Rebuild FFmpeg without RV60 decoder as a temporary workaround
./configure --disable-decoder=rv60
make && make install

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechFfmpeg

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-125
  • Technical References
  • GitHub FFmpeg Release n8.0

  • GitHub FFmpeg Release n8.0.1
  • Vendor Resources
  • GitHub FFmpeg Commit Change
  • Related CVEs
  • CVE-2024-35367: FFmpeg Out-of-Bounds Read Vulnerability

  • CVE-2024-35366: FFmpeg Integer Overflow Vulnerability

  • CVE-2025-12343: FFmpeg TensorFlow Backend DoS Vulnerability

  • CVE-2025-10256: FFmpeg Firequalizer Filter DoS 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