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

CVE-2026-23461: Linux Kernel Bluetooth Use-After-Free Bug

CVE-2026-23461 is a use-after-free vulnerability in the Linux kernel Bluetooth L2CAP subsystem caused by race conditions in connection handling. This article covers the technical details, affected versions, and mitigation.

Updated: May 15, 2026

CVE-2026-23461 Overview

CVE-2026-23461 is a use-after-free vulnerability in the Linux kernel's Bluetooth Logical Link Control and Adaptation Protocol (L2CAP) subsystem. The flaw resides in the l2cap_unregister_user() function and stems from inconsistent locking in the L2CAP connection management code. After commit ab4eedb790ca introduced conn->lock to protect access to conn->users in l2cap_conn_del(), the corresponding l2cap_register_user() and l2cap_unregister_user() functions continued to use hci_dev_lock(), creating a race condition. An attacker within Bluetooth range can trigger concurrent access to conn->users and conn->hchan, leading to use-after-free conditions and list corruption.

Critical Impact

An adjacent network attacker can exploit this race condition to corrupt kernel memory, potentially achieving privilege escalation or kernel-level code execution on affected Linux systems with Bluetooth enabled.

Affected Products

  • Linux Kernel (Bluetooth L2CAP subsystem)
  • Distributions shipping kernels that include commit ab4eedb790ca without the corresponding fix
  • Any Linux-based system with Bluetooth hardware enabled

Discovery Timeline

  • 2026-04-03 - CVE-2026-23461 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-23461

Vulnerability Analysis

The vulnerability is a classic kernel race condition that produces a use-after-free in the Bluetooth L2CAP code path. The L2CAP layer maintains a list of registered users on each l2cap_conn structure through conn->users. The functions l2cap_register_user() and l2cap_unregister_user() add and remove entries from this list, while l2cap_conn_del() tears down the connection and frees associated resources, including conn->hchan.

The report from the syzbot fuzzer demonstrated that concurrent execution of these paths can corrupt the list and dereference freed memory. Successful exploitation can result in kernel memory corruption, denial of service through kernel panic, or escalation to arbitrary kernel code execution depending on the heap state at the time of the race [CWE-416].

Root Cause

The root cause is inconsistent locking discipline introduced by commit ab4eedb790ca ("Bluetooth: L2CAP: Fix corrupted list in hci_chan_del"). That commit moved protection of conn->users under a new conn->lock mutex in l2cap_conn_del(). However, l2cap_register_user() and l2cap_unregister_user() continued to serialize using hci_dev_lock(). Because the two locks are independent, the registration and deregistration paths can run concurrently with connection teardown. This allows iteration and modification of the user list while another CPU is freeing the underlying l2cap_conn and its hchan channel.

Attack Vector

Exploitation requires an attacker to be within Bluetooth radio range of the target, consistent with the Adjacent Network attack vector. The attacker must induce L2CAP user registration or unregistration events while the connection is being torn down. This is typically achieved by repeatedly establishing and dropping L2CAP connections to win the race against l2cap_conn_del(). No authentication or user interaction is required, which raises the practical risk for any device that accepts Bluetooth pairing or scanning traffic.

No public proof-of-concept exploit is currently available outside of the syzbot reproducer that surfaced the bug. Refer to the upstream commits in the Linux Kernel git repository for the verified source-level changes.

Detection Methods for CVE-2026-23461

Indicators of Compromise

  • Kernel oops or panic messages referencing l2cap_unregister_user, l2cap_conn_del, or hci_chan_del in dmesg or /var/log/kern.log
  • KASAN reports indicating use-after-free in the net/bluetooth/l2cap_core.c code path
  • Unexpected Bluetooth service crashes or repeated bluetoothd restarts on affected hosts

Detection Strategies

  • Inventory running kernel versions against vendor advisories to identify hosts running unpatched builds that include commit ab4eedb790ca but lack the corresponding lock fix
  • Enable KASAN on test and staging kernels to surface use-after-free conditions in the Bluetooth stack during fuzzing or QA
  • Correlate Bluetooth subsystem errors with audit logs that show unusual rates of L2CAP connection establishment and teardown from nearby devices

Monitoring Recommendations

  • Forward kernel logs to a centralized logging platform and alert on stack traces containing l2cap_ symbols
  • Monitor Bluetooth adapter state changes and bluetoothd service health across the fleet
  • Track patch compliance for the affected kernel package versions on every Linux endpoint and server

How to Mitigate CVE-2026-23461

Immediate Actions Required

  • Apply the upstream kernel fixes from commits 11a87dd5df42, 71030f3b3015, 752a6c9596dd, c22a5e659959, and da3000cbe485 as packaged by your Linux distribution
  • Disable Bluetooth on systems that do not require it by unloading the bluetooth and btusb kernel modules and masking the bluetooth.service unit
  • Restrict Bluetooth discoverability and pairing on systems where the service must remain enabled until patches are deployed

Patch Information

The vulnerability is resolved by changing l2cap_register_user() and l2cap_unregister_user() to acquire conn->lock instead of hci_dev_lock(), restoring consistent locking around the l2cap_conn structure. The fix is distributed across multiple stable branches in the upstream Linux kernel: commit 11a87dd, commit 71030f3, commit 752a6c9, commit c22a5e6, and commit da3000c. Consult your distribution vendor for the corresponding package update.

Workarounds

  • Unload the Bluetooth kernel modules with modprobe -r btusb bluetooth on systems that do not need wireless connectivity
  • Set the Bluetooth adapter to non-discoverable and disable automatic pairing through bluetoothctl to reduce the attack surface
  • Use a kernel module blacklist to prevent Bluetooth modules from loading at boot on servers and headless systems
bash
# Disable Bluetooth at the system level until patches are applied
sudo systemctl stop bluetooth.service
sudo systemctl mask bluetooth.service

# Prevent Bluetooth kernel modules from loading
echo 'blacklist bluetooth' | sudo tee /etc/modprobe.d/disable-bluetooth.conf
echo 'blacklist btusb'     | sudo tee -a /etc/modprobe.d/disable-bluetooth.conf

# Unload modules from the running kernel
sudo modprobe -r btusb bluetooth

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

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.04%

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

  • Linux Kernel Commit 71030f3

  • Linux Kernel Commit 752a6c9

  • Linux Kernel Commit c22a5e6

  • Linux Kernel Commit da3000c
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