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

CVE-2026-31405: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-31405 is a buffer overflow flaw in Linux kernel's DVB-net component that enables out-of-bounds access in ULE extension header tables. This article covers technical details, affected versions, and mitigation.

Updated: May 14, 2026

CVE-2026-31405 Overview

CVE-2026-31405 is an out-of-bounds read vulnerability in the Linux kernel's dvb-net driver. The flaw resides in the handle_one_ule_extension() function, which processes Unidirectional Lightweight Encapsulation (ULE) extension headers used in Digital Video Broadcasting (DVB) streams. The function uses two handler tables, ule_mandatory_ext_handlers[] and ule_optional_ext_handlers[], each declared with 255 elements. The index htype is derived from network-controlled data via (ule_sndu_type & 0x00FF), producing a range of 0-255. When htype equals 255, an out-of-bounds read occurs against the function pointer table, and the retrieved value may be invoked as a function pointer.

Critical Impact

Network-attacker-controlled input can trigger an out-of-bounds function pointer dereference in the Linux kernel, potentially enabling arbitrary code execution at the kernel level.

Affected Products

  • Linux kernel branches containing the dvb-net ULE handling code prior to the fix
  • Systems with DVB network interfaces enabled and processing ULE-encapsulated traffic
  • Multiple stable kernel branches patched in commits 145e50c, 1a6da3d, 24d8771, 29ef43c, 8bde543, b2bd2ee, e512387, and f2b65dc

Discovery Timeline

  • 2026-04-06 - CVE-2026-31405 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-31405

Vulnerability Analysis

The vulnerability resides in the Linux kernel media subsystem, specifically the DVB network driver (drivers/media/dvb-core/dvb_net.c). The ULE protocol encapsulates IP traffic over MPEG-2 transport streams, and extension headers within ULE Subnetwork Data Units (SNDUs) are dispatched through function pointer tables. Because htype is computed from an attacker-controlled byte and the tables are sized to 255 entries, the maximum legal index is 254. A value of 255 reads past the end of the table and treats the resulting memory contents as a function pointer.

Invoking an attacker-influenced or unpredictable function pointer in kernel context can lead to a kernel crash (denial of service) or arbitrary code execution depending on the memory layout adjacent to the handler tables. The upstream fix introduces a bounds check on htype against the array size, causing out-of-range values to be discarded along with the SNDU.

Root Cause

The root cause is an off-by-one mismatch between the value space of a network-derived index and the declared size of the dispatch tables. The handler arrays accommodate 255 entries (indices 0-254), while the index derivation masks to 8 bits (0-255). No bounds check was performed before indexing, classifying this as an Out-of-Bounds Read leading to control-flow hijack via an unchecked function pointer call.

Attack Vector

Exploitation requires the target system to process attacker-controlled DVB transport streams carrying ULE-encapsulated data with a crafted ule_sndu_type whose low byte equals 0xFF. On systems where DVB network reception is exposed or where stream sources are untrusted, an attacker can deliver a malicious SNDU to trigger the out-of-bounds read and subsequent indirect call.

No verified public exploit code is available. Refer to the upstream patch commits for the precise code paths and remediation logic.

Detection Methods for CVE-2026-31405

Indicators of Compromise

  • Unexpected kernel oops or panic messages referencing handle_one_ule_extension, dvb_net, or invalid instruction pointers in kernel logs
  • Crashes or instability on hosts receiving DVB transport streams shortly after malformed ULE traffic arrives
  • Abnormal kernel module behavior on systems where the dvb_net module is loaded but no legitimate DVB workload is expected

Detection Strategies

  • Inventory hosts where the dvb_net kernel module is loaded using lsmod | grep dvb_net and prioritize them for patching
  • Compare running kernel versions against the fixed commit set (145e50c, 1a6da3d, 24d8771, 29ef43c, 8bde543, b2bd2ee, e512387, f2b65dc) to identify unpatched systems
  • Monitor kernel ring buffer output via dmesg and centralized logging for ULE-related faults

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on panics, oops events, and indirect call faults from media drivers
  • Track loaded kernel module inventories across the fleet to identify systems that should not have dvb_net enabled
  • Baseline DVB traffic sources and alert on unexpected ULE stream ingestion paths

How to Mitigate CVE-2026-31405

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the commit list to all affected stable branches
  • Unload the dvb_net module on systems that do not require DVB networking using modprobe -r dvb_net
  • Restrict physical and network access to DVB tuners and transport stream sources to trusted inputs only

Patch Information

The fix adds a bounds check on htype against the array size before either the mandatory or optional handler table is accessed. Out-of-range values cause the SNDU to be discarded. Patched commits are available in the upstream kernel tree, including Linux Kernel Commit 145e50c, Linux Kernel Commit 1a6da3d, Linux Kernel Commit 24d8771, Linux Kernel Commit 29ef43c, Linux Kernel Commit 8bde543, Linux Kernel Commit b2bd2ee, Linux Kernel Commit e512387, and Linux Kernel Commit f2b65dc.

Workarounds

  • Blacklist the dvb_net module on hosts that do not need DVB networking by adding blacklist dvb_net to /etc/modprobe.d/
  • Ensure DVB transport stream inputs originate exclusively from trusted broadcast sources
  • Apply distribution vendor kernel updates as soon as they incorporate the upstream fix
bash
# Prevent the vulnerable module from loading on systems that do not require DVB networking
echo "blacklist dvb_net" | sudo tee /etc/modprobe.d/disable-dvb-net.conf
sudo modprobe -r dvb_net

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Linux Kernel Commit 145e50c

  • Linux Kernel Commit 1a6da3d

  • Linux Kernel Commit 24d8771

  • Linux Kernel Commit 29ef43c

  • Linux Kernel Commit 8bde543

  • Linux Kernel Commit b2bd2ee

  • Linux Kernel Commit e512387

  • Linux Kernel Commit f2b65dc
  • Related CVEs
  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43337: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43341: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43350: Linux Kernel Buffer Overflow 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