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

CVE-2026-31393: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-31393 is a buffer overflow flaw in the Linux kernel Bluetooth L2CAP component that triggers out-of-bounds memory reads. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: April 10, 2026

CVE-2026-31393 Overview

A vulnerability has been discovered in the Linux kernel's Bluetooth L2CAP (Logical Link Control and Adaptation Protocol) implementation. The l2cap_information_rsp() function fails to properly validate the payload length of L2CAP_INFO_RSP packets before accessing the response data. While the function checks that cmd_len covers the fixed l2cap_info_rsp header (type + result, 4 bytes), it subsequently reads rsp->data without verifying that the payload is actually present, leading to an out-of-bounds read vulnerability.

Critical Impact

A truncated L2CAP_INFO_RSP packet with result == L2CAP_IR_SUCCESS can trigger an out-of-bounds read of adjacent skb data, potentially exposing kernel memory contents to an attacker within Bluetooth range.

Affected Products

  • Linux Kernel (Bluetooth L2CAP subsystem)
  • Systems with Bluetooth enabled and L2CAP functionality

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-31393 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-31393

Vulnerability Analysis

The vulnerability exists in the L2CAP information response handling code within the Linux kernel's Bluetooth stack. The l2cap_information_rsp() function processes incoming L2CAP information response packets and verifies that the command length covers the fixed header structure. However, the function proceeds to read data fields beyond this header without additional length validation.

Two specific code paths are affected:

  1. L2CAP_IT_FEAT_MASK handling: The function calls get_unaligned_le32(rsp->data), which reads 4 bytes past the header. This operation requires cmd_len >= 8 bytes to be safe, but this constraint is not enforced.

  2. L2CAP_IT_FIXED_CHAN handling: The function reads rsp->data[0], which is 1 byte past the header. This requires cmd_len >= 5 bytes, which is also not validated.

When a maliciously crafted or truncated L2CAP_INFO_RSP packet arrives with result == L2CAP_IR_SUCCESS but insufficient payload data, the kernel reads beyond the allocated buffer boundaries into adjacent socket buffer (skb) data.

Root Cause

The root cause is insufficient input validation in the l2cap_information_rsp() function. The function validates only the minimum header length (4 bytes) but fails to validate the presence of variable-length payload data before accessing it. This is a classic example of an input validation error where boundary conditions are not properly enforced.

Attack Vector

The vulnerability can be exploited by an attacker within Bluetooth range who can send crafted L2CAP information response packets to a target system. The attack requires:

  1. Establishing a Bluetooth connection with the target device
  2. Sending a truncated L2CAP_INFO_RSP packet with a successful result code but insufficient payload length
  3. The target kernel reads beyond buffer boundaries, potentially leaking kernel memory contents

The fix implements proper payload length checks for each data access path. If the payload is too short, the code skips the read operation and allows the state machine to complete with safe defaults (feat_mask and remote_fixed_chan remain zero from kzalloc), ensuring the info timer cleanup and l2cap_conn_start() still run without stalling the connection.

Detection Methods for CVE-2026-31393

Indicators of Compromise

  • Unusual Bluetooth traffic patterns with malformed L2CAP packets
  • Kernel crash logs or memory corruption errors related to the Bluetooth subsystem
  • System instability when Bluetooth devices attempt to connect

Detection Strategies

  • Monitor kernel logs for out-of-bounds read warnings in the Bluetooth L2CAP subsystem
  • Deploy kernel address sanitizer (KASAN) on development/test systems to detect memory access violations
  • Implement Bluetooth traffic analysis to identify malformed L2CAP_INFO_RSP packets with truncated payloads

Monitoring Recommendations

  • Enable kernel memory debugging features such as KASAN in non-production environments to catch exploitation attempts
  • Configure audit logging for Bluetooth connection events and failures
  • Monitor for unusual Bluetooth pairing requests from unknown devices

How to Mitigate CVE-2026-31393

Immediate Actions Required

  • Apply the latest kernel security patches from your distribution vendor
  • Consider disabling Bluetooth functionality on systems where it is not required
  • Limit Bluetooth discoverability and pairing to trusted devices only

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds proper payload length validation before each data access in l2cap_information_rsp(). Multiple kernel patch commits are available:

  • Kernel Patch 3b64651
  • Kernel Patch 807bd12
  • Kernel Patch 9aeacd
  • Kernel Patch db2872d
  • Kernel Patch dd815e6
  • Kernel Patch e7ff754

Workarounds

  • Disable Bluetooth at the kernel level by adding bluetooth.disable_ertm=1 to kernel boot parameters
  • Unload the Bluetooth kernel modules if Bluetooth functionality is not required: modprobe -r bluetooth btusb
  • Use firewall rules to restrict Bluetooth connections to known, trusted devices only
bash
# Disable Bluetooth service
sudo systemctl stop bluetooth
sudo systemctl disable bluetooth

# Unload Bluetooth kernel modules
sudo modprobe -r btusb
sudo modprobe -r bluetooth

# Blacklist Bluetooth modules to prevent loading on boot
echo "blacklist bluetooth" | sudo tee /etc/modprobe.d/disable-bluetooth.conf
echo "blacklist btusb" | sudo tee -a /etc/modprobe.d/disable-bluetooth.conf

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch 3b64651

  • Kernel Patch 807bd12

  • Kernel Patch 9aeacd

  • Kernel Patch db2872d

  • Kernel Patch dd815e6

  • Kernel Patch e7ff754
  • Related CVEs
  • CVE-2026-23448: Linux Kernel Buffer Overflow Vulnerability

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

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

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