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-2026-31473

CVE-2026-31473: Linux Kernel Use-After-Free Vulnerability

CVE-2026-31473 is a use-after-free flaw in the Linux kernel media subsystem that occurs during concurrent REINIT and REQBUFS operations. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 23, 2026

CVE-2026-31473 Overview

A race condition vulnerability exists in the Linux kernel's media subsystem that can lead to use-after-free conditions. The vulnerability occurs when MEDIA_REQUEST_IOC_REINIT runs concurrently with VIDIOC_REQBUFS(0) queue teardown paths, allowing request object cleanup to race against vb2 queue cancellation.

Critical Impact

Successful exploitation of this race condition can result in use-after-free conditions, potentially leading to kernel memory corruption, privilege escalation, or system crashes on Linux systems using media request-capable devices.

Affected Products

  • Linux Kernel (media subsystem with request API support)
  • Linux systems using V4L2 video capture devices
  • Linux systems with media controller framework enabled

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31473 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31473

Vulnerability Analysis

This vulnerability is a classic Time-of-Check Time-of-Use (TOCTOU) race condition in the Linux kernel's media subsystem. The flaw exists because the kernel did not properly serialize access between request reinitialization operations and buffer request operations.

The media request API allows userspace applications to queue requests for media devices, while the VIDIOC_REQBUFS ioctl handles buffer allocation and deallocation for video buffer queues. When VIDIOC_REQBUFS(0) is called (requesting zero buffers), it triggers queue teardown and cancellation procedures. If MEDIA_REQUEST_IOC_REINIT executes concurrently during this teardown, the request object cleanup can race against the vb2 queue cancellation, resulting in memory being freed while still in use.

The existing serialization mechanism using req_queue_mutex only covered request queueing against STREAMON/STREAMOFF operations, but failed to protect against the REQBUFS teardown path, leaving a window for exploitation.

Root Cause

The root cause is insufficient synchronization between concurrent operations in the media subsystem. The req_queue_mutex mutex was not held during MEDIA_REQUEST_IOC_REINIT and VIDIOC_REQBUFS operations, allowing these critical sections to execute in parallel. This lack of mutual exclusion permits request cleanup and queue cancellation to run simultaneously, violating memory safety guarantees and leading to use-after-free conditions.

Attack Vector

Exploitation requires local access to the system with permissions to interact with media devices through V4L2 ioctls. An attacker would need to:

  1. Open a request-capable media device with V4L2 support
  2. Allocate video buffers using VIDIOC_REQBUFS
  3. Create and configure media requests using the request API
  4. Trigger concurrent execution of MEDIA_REQUEST_IOC_REINIT and VIDIOC_REQBUFS(0) from multiple threads or processes
  5. Win the race condition to cause use-after-free corruption

The attack is probabilistic due to the nature of race conditions, but repeated attempts increase the likelihood of successful exploitation. Once achieved, the memory corruption could potentially be leveraged for privilege escalation or arbitrary code execution in kernel context.

Detection Methods for CVE-2026-31473

Indicators of Compromise

  • Kernel log messages indicating use-after-free detection from KASAN (Kernel Address Sanitizer)
  • Unexpected kernel crashes or panics in media subsystem functions
  • Stack traces referencing media_request_ioctl_reinit() or vb2 queue functions

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) to detect use-after-free conditions at runtime
  • Monitor kernel logs for warnings or errors from the media controller or V4L2 subsystems
  • Deploy system call auditing to track unusual patterns of media device ioctl operations
  • Use kernel tracing tools to monitor MEDIA_REQUEST_IOC_REINIT and VIDIOC_REQBUFS system calls

Monitoring Recommendations

  • Implement continuous monitoring of kernel stability metrics for systems with media capture hardware
  • Configure alerting for kernel panic events or unexpected system reboots
  • Enable kernel crash dump collection to capture forensic evidence of exploitation attempts
  • Monitor for suspicious processes repeatedly accessing V4L2 devices with unusual access patterns

How to Mitigate CVE-2026-31473

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the serialization fix
  • Review systems with media capture hardware or V4L2 device support as priority for patching
  • Restrict access to media devices using appropriate permissions and access control policies
  • Consider temporarily disabling the media request API if not required for operations

Patch Information

The fix extends the existing req_queue_mutex serialization to cover VIDIOC_REQBUFS operations and adds the same mutex acquisition in media_request_ioctl_reinit(). This ensures that request reinitialization and queue teardown operations cannot execute concurrently, eliminating the race condition window.

Multiple kernel commits have been released to address this vulnerability across different stable kernel branches:

  • Kernel Git Commit 1a0d9083
  • Kernel Git Commit 2c685e99
  • Kernel Git Commit 33124299
  • Kernel Git Commit 585fd9a2
  • Kernel Git Commit 72b9e81e
  • Kernel Git Commit bef4f4a8
  • Kernel Git Commit cf2023e8
  • Kernel Git Commit d8549a45

Workarounds

  • Limit access to /dev/video* and /dev/media* devices to trusted users only
  • Disable the media request API via kernel configuration if not required (CONFIG_MEDIA_CONTROLLER_REQUEST_API)
  • Use SELinux or AppArmor policies to restrict V4L2 device access to specific applications
  • Monitor and limit concurrent access to media devices using resource control mechanisms
bash
# Restrict access to video devices
chmod 600 /dev/video*
chmod 600 /dev/media*

# Add only trusted users to video group
usermod -a -G video trusted_user

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 2c685e99

  • Kernel Git Commit 33124299

  • Kernel Git Commit 585fd9a2

  • Kernel Git Commit 72b9e81e

  • Kernel Git Commit bef4f4a8

  • Kernel Git Commit cf2023e8

  • Kernel Git Commit d8549a45
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31469: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31457: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31444: Linux Kernel Use-After-Free 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