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
    • 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-2025-68812

CVE-2025-68812: Linux Kernel Media Iris DoS Vulnerability

CVE-2025-68812 is a denial of service flaw in the Linux kernel media iris driver that can cause system crashes due to improper stream handling. This article covers technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2025-68812 Overview

A use-after-free vulnerability has been identified in the Linux kernel's media iris driver, specifically in the iris_vb2_stop_streaming function. The vulnerability occurs due to a missing sanity check that allows stream_off operations to proceed even when the instance state is already in an error condition (IRIS_INST_ERROR). This can lead to a kernel crash when accessing freed memory.

Critical Impact

Exploitation of this vulnerability can cause a kernel crash through accessing freed memory, potentially leading to system instability and denial of service.

Affected Products

  • Linux kernel with media iris driver support
  • Systems using Qualcomm media hardware with iris driver

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-68812 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68812

Vulnerability Analysis

This vulnerability represents a classic use-after-free condition in the Linux kernel's media subsystem. The iris driver, used for media streaming operations, lacks proper state validation before executing stop streaming operations. When iris_kill_session is called, it sets the instance state to IRIS_INST_ERROR and proceeds to execute session_close, which frees the memory allocated for inst_hfi_gen2->packet using kfree().

The critical issue arises when stop_streaming is subsequently called on an instance that has already been marked as IRIS_INST_ERROR. Without proper validation, the function attempts to send packets to the firmware using the already-freed packet structure, resulting in a use-after-free condition that triggers a kernel crash.

Root Cause

The root cause of this vulnerability is the absence of a sanity check in the iris_vb2_stop_streaming function to verify the instance state before proceeding with stream_off operations. The function should verify that inst->state is not already set to IRIS_INST_ERROR before attempting to access or use the packet structure that may have been freed during a prior error handling sequence in iris_kill_session.

Attack Vector

The attack vector for this vulnerability involves triggering a race condition or sequence of events that causes iris_kill_session to be called while streaming operations are still active. An attacker with local access to the system could potentially:

  1. Initiate a media streaming session using the iris driver
  2. Trigger an error condition that invokes iris_kill_session
  3. Immediately call stop_streaming before the system fully handles the error state
  4. This sequence causes the driver to access the freed inst_hfi_gen2->packet memory, resulting in a kernel crash

The vulnerability requires local access to the system and the ability to interact with the media subsystem. The attack mechanism exploits the lack of synchronization between error handling and normal streaming teardown operations.

Detection Methods for CVE-2025-68812

Indicators of Compromise

  • Unexpected kernel crashes or system reboots when stopping media streams
  • Kernel panic messages referencing iris_vb2_stop_streaming or related iris driver functions
  • Use-after-free reports from kernel sanitizers (KASAN) in the media/iris subsystem
  • System logs showing media streaming errors followed by crashes

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) to detect use-after-free conditions in the iris driver
  • Monitor kernel logs for crashes or warnings in the media/iris subsystem components
  • Deploy endpoint detection solutions capable of monitoring kernel-level anomalies
  • Implement crash dump analysis to identify patterns indicative of this vulnerability

Monitoring Recommendations

  • Configure kernel crash monitoring to alert on panics in media driver code paths
  • Enable kernel debug options to trace iris driver state transitions
  • Monitor for unusual patterns in media streaming session lifecycle events
  • Implement file integrity monitoring on kernel modules related to media drivers

How to Mitigate CVE-2025-68812

Immediate Actions Required

  • Update to a patched version of the Linux kernel that includes the sanity check fix
  • If patching is not immediately possible, consider disabling or unloading the iris driver module if not required
  • Monitor systems for signs of exploitation attempts or unexpected crashes
  • Review and restrict local access to systems with the vulnerable driver

Patch Information

The fix has been merged into the Linux kernel stable tree. The patch adds a sanity check in iris_vb2_stop_streaming to verify that inst->state is not IRIS_INST_ERROR before proceeding with stream_off operations. This prevents the use-after-free condition by skipping the problematic code path when the instance is already in an error state.

Reference commits are available:

  • Kernel Git Commit Log
  • Kernel Git Commit Log

Workarounds

  • Unload the iris driver module (rmmod iris) if media streaming functionality is not required
  • Restrict access to media devices at the file permission level to limit potential attackers
  • Implement security policies to prevent untrusted users from accessing media streaming interfaces
  • Consider using kernel lockdown features to restrict direct interaction with kernel modules

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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