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
    • 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-31599

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

CVE-2026-31599 is a use-after-free vulnerability in Linux Kernel's vidtv media driver that causes NULL pointer dereference. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 30, 2026

CVE-2026-31599 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's vidtv (Virtual Digital TV) test driver, specifically within the vidtv_channel_pmt_match_sections() function. The vulnerability was discovered by syzbot through automated kernel fuzzing and results in a general protection fault when memory allocation fails during PMT (Program Map Table) stream initialization.

The flaw occurs because vidtv_psi_pmt_stream_init() can return NULL on memory allocation failure, but the calling function vidtv_channel_pmt_match_sections() does not properly check for this condition. When the tail pointer is NULL, a subsequent call to vidtv_psi_desc_assign(&tail->descriptor, desc) attempts to dereference a NULL pointer offset, triggering a kernel crash.

Critical Impact

Local attackers with access to the vidtv driver can trigger a denial of service condition through a NULL pointer dereference, causing system instability or crash.

Affected Products

  • Linux Kernel (vidtv media test driver)

Discovery Timeline

  • April 24, 2026 - CVE-2026-31599 published to NVD
  • April 29, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31599

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference) and affects the virtual Digital TV test driver subsystem in the Linux kernel. The vidtv driver is used for testing DVB (Digital Video Broadcasting) applications without requiring actual DVB hardware.

The vulnerability resides in the PSI (Program Specific Information) handling code, specifically in how the driver manages PMT stream structures. When the kernel is under memory pressure or an attacker deliberately exhausts memory resources, the vidtv_psi_pmt_stream_init() function may fail to allocate memory and return NULL. The calling code in vidtv_channel_pmt_match_sections() proceeds without validating this return value, leading to a NULL pointer dereference when accessing the descriptor member of the NULL tail pointer.

The impact is primarily a denial of service condition. The vulnerability requires local access to trigger, limiting the attack surface to authenticated users or processes that can interact with the vidtv driver. While the media test drivers are typically not loaded on production systems, environments using these drivers for DVB testing or development are at risk.

Root Cause

The root cause is a missing NULL pointer check after calling vidtv_psi_pmt_stream_init(). The function allocates memory for PMT stream structures and can legitimately return NULL when memory allocation fails. The calling function vidtv_channel_pmt_match_sections() assumes successful allocation without validation.

The vulnerable code path follows this sequence:

  1. vidtv_start_feed() initiates streaming operations
  2. vidtv_mux_init() initializes the multiplexer
  3. vidtv_channel_si_init() sets up Service Information
  4. vidtv_channel_pmt_match_sections() creates PMT stream entries
  5. vidtv_psi_pmt_stream_init() returns NULL on allocation failure
  6. vidtv_psi_desc_assign() dereferences the NULL pointer

Attack Vector

The attack vector is local, requiring an attacker to have access to a system with the vidtv kernel module loaded. Exploitation involves:

  1. Memory Pressure: The attacker creates memory pressure conditions to increase the likelihood of allocation failures
  2. Driver Interaction: The attacker triggers the vulnerable code path by initiating streaming operations through the vidtv interface
  3. Crash Trigger: When memory allocation fails during PMT stream initialization, the NULL pointer dereference causes a kernel panic or general protection fault

The kernel crash trace shows the fault occurring at vidtv_psi_desc_assign+0x24/0x90 in drivers/media/test-drivers/vidtv/vidtv_psi.c:629, with KASAN (Kernel Address Sanitizer) detecting a null-ptr-deref in the memory range 0x0000000000000000-0x0000000000000007.

Detection Methods for CVE-2026-31599

Indicators of Compromise

  • Kernel panic messages referencing vidtv_psi_desc_assign or vidtv_channel_pmt_match_sections
  • KASAN null-ptr-deref reports in kernel logs related to the vidtv driver
  • General protection fault (GPF) errors with RIP pointing to vidtv driver code
  • Unexpected system reboots on systems with the vidtv module loaded

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for oops or panic messages mentioning vidtv driver functions
  • Enable KASAN in development/testing kernels to catch NULL pointer dereferences early
  • Use kernel tracing (ftrace) to monitor calls to vidtv_psi_pmt_stream_init() and validate return values
  • Implement system monitoring to detect unexpected kernel module crashes or system instability

Monitoring Recommendations

  • Configure centralized logging to capture kernel panic events across fleet
  • Set up alerts for GPF (general protection fault) events in kernel logs
  • Monitor for unusual memory pressure conditions that could trigger allocation failures
  • Track vidtv module loading events on production systems where it should not be present

How to Mitigate CVE-2026-31599

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the NULL check fix
  • If kernel update is not immediately possible, unload the vidtv module using rmmod vidtv
  • Blacklist the vidtv module on production systems where DVB testing is not required
  • Restrict local access to minimize the attack surface for this local-only vulnerability

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds a NULL check after vidtv_psi_pmt_stream_init() and properly cleans up already-allocated stream chain resources on failure.

Patched versions are available through the following kernel git commits:

  • Kernel Git Commit 07c1e47
  • Kernel Git Commit 2dff11f
  • Kernel Git Commit b7efb4c
  • Kernel Git Commit b832cfd
  • Kernel Git Commit e589de3
  • Kernel Git Commit f8e1fc9

Workarounds

  • Blacklist the vidtv module by adding blacklist vidtv to /etc/modprobe.d/blacklist.conf
  • Remove the vidtv module from the running kernel: sudo rmmod vidtv
  • Restrict access to DVB device files using appropriate file permissions
  • Consider using kernel live patching solutions if immediate reboot is not feasible
bash
# Blacklist vidtv module to prevent loading
echo "blacklist vidtv" | sudo tee /etc/modprobe.d/vidtv-blacklist.conf

# Unload the module if currently loaded
sudo rmmod vidtv 2>/dev/null || echo "Module not loaded"

# Verify module is not loaded
lsmod | grep vidtv

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Vendor Resources
  • Kernel Git Commit Changes

  • Kernel Git Commit Updates

  • Kernel Git Commit Modifications

  • Kernel Git Commit Enhancements

  • Kernel Git Commit Improvements

  • Kernel Git Commit Revisions
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43335: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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