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

CVE-2026-23395: Linux Kernel Bluetooth Buffer Overflow

CVE-2026-23395 is a buffer overflow vulnerability in the Linux kernel Bluetooth L2CAP protocol that allows allocation beyond safe limits. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2026-23395 Overview

A buffer overflow vulnerability has been identified in the Linux kernel's Bluetooth L2CAP (Logical Link Control and Adaptation Protocol) implementation. The vulnerability exists in the handling of L2CAP Enhanced Credit Based Flow Control connection requests (L2CAP_ECRED_CONN_REQ). The code incorrectly accepts multiple connection requests regardless of the command identifier, causing multiple requests to be marked as pending with the FLAG_DEFER_SETUP flag. This can result in more than L2CAP_ECRED_MAX_CID(5) channels being allocated in l2cap_ecred_rsp_defer, causing a buffer overflow.

Critical Impact

An attacker within Bluetooth range could exploit this vulnerability by sending multiple L2CAP Enhanced Credit connection requests with the same identifier, potentially causing memory corruption and system instability.

Affected Products

  • Linux Kernel (multiple versions with Bluetooth L2CAP support)

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23395 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23395

Vulnerability Analysis

The vulnerability stems from a violation of the Bluetooth Core Specification, which mandates that within each signaling channel, a different identifier must be used for each successive request or indication. The affected Linux kernel code fails to validate that incoming L2CAP_ECRED_CONN_REQ requests use unique command identifiers.

When an attacker sends multiple connection requests with the same identifier, the kernel marks all of them as pending with the FLAG_DEFER_SETUP flag. This leads to the allocation of more channel identifiers (CIDs) than the defined maximum of 5 (L2CAP_ECRED_MAX_CID) in the l2cap_ecred_rsp_defer function. The resulting buffer overflow can corrupt adjacent memory structures, potentially leading to kernel crashes or other undefined behavior.

Root Cause

The root cause is improper input validation in the L2CAP signaling layer. The kernel code processes L2CAP_ECRED_CONN_REQ commands without verifying whether channels with the same command identifier are already pending. According to the Bluetooth Core Specification, each successive request must use a different identifier, but this constraint was not enforced.

Attack Vector

An attacker within Bluetooth range of a vulnerable Linux system can exploit this vulnerability by:

  1. Establishing a Bluetooth connection with the target device
  2. Sending multiple L2CAP_ECRED_CONN_REQ requests using the same command identifier
  3. Each request is incorrectly accepted and marked as pending
  4. When more than 5 CIDs are allocated, a buffer overflow occurs in l2cap_ecred_rsp_defer

The fix implemented by the kernel developers adds a check for any channels pending with the same identifier, rejecting duplicate requests to prevent the overflow condition.

Detection Methods for CVE-2026-23395

Indicators of Compromise

  • Unexpected kernel crashes or panics related to Bluetooth subsystem
  • Anomalous L2CAP connection request patterns in Bluetooth logs
  • System instability when Bluetooth devices are in proximity

Detection Strategies

  • Monitor kernel logs for L2CAP-related errors or warnings using dmesg | grep -i l2cap
  • Deploy kernel-level monitoring for unusual Bluetooth connection patterns
  • Utilize host-based intrusion detection systems (HIDS) to detect anomalous Bluetooth activity

Monitoring Recommendations

  • Enable Bluetooth subsystem debug logging to capture detailed L2CAP signaling information
  • Implement continuous monitoring of Bluetooth-enabled systems for unexpected crashes
  • Review /var/log/kern.log and /var/log/syslog for Bluetooth-related anomalies

How to Mitigate CVE-2026-23395

Immediate Actions Required

  • Update the Linux kernel to a patched version immediately
  • If patching is not immediately possible, disable Bluetooth functionality on affected systems
  • Limit Bluetooth discoverability and pairing to trusted devices only
  • Monitor systems for signs of exploitation until patches can be applied

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fix adds validation to check if there are any channels pending with the same identifier before accepting new connection requests. Relevant kernel commits include:

  • Linux Kernel Commit 2124d82
  • Linux Kernel Commit 5b3e205
  • Linux Kernel Commit 6b949a6
  • Linux Kernel Commit 8d0d94f
  • Linux Kernel Commit e72ee45
  • Linux Kernel Commit fb4a3a2

Workarounds

  • Disable Bluetooth at the system level using rfkill block bluetooth
  • Remove or blacklist Bluetooth kernel modules (btusb, bluetooth) if not required
  • Implement network segmentation to isolate Bluetooth-enabled systems from sensitive environments
bash
# Disable Bluetooth temporarily
sudo rfkill block bluetooth

# Blacklist Bluetooth modules (permanent)
echo "blacklist btusb" | sudo tee /etc/modprobe.d/disable-bluetooth.conf
echo "blacklist bluetooth" | sudo tee -a /etc/modprobe.d/disable-bluetooth.conf

# Verify Bluetooth is disabled
rfkill list bluetooth

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.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 2124d82

  • Linux Kernel Commit 5b3e205

  • Linux Kernel Commit 6b949a6

  • Linux Kernel Commit 8d0d94f

  • Linux Kernel Commit e72ee45

  • Linux Kernel Commit fb4a3a2
  • Related CVEs
  • CVE-2026-23397: Linux Kernel Buffer Overflow Vulnerability

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

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

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