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 l2cap_unregister_user. This article covers technical details, affected versions, and mitigations.

Published: April 10, 2026

CVE-2026-23461 Overview

A use-after-free vulnerability has been identified in the Linux kernel's Bluetooth L2CAP (Logical Link Control and Adaptation Protocol) subsystem. The flaw exists in the l2cap_unregister_user function where improper locking mechanisms create a race condition that can lead to memory corruption and potential system instability.

After commit ab4eedb790ca ("Bluetooth: L2CAP: Fix corrupted list in hci_chan_del"), the l2cap_conn_del() function was updated to use conn->lock to protect access to conn->users. However, the l2cap_register_user() and l2cap_unregister_user() functions were not updated to use the same lock, instead continuing to use hci_dev_lock(). This inconsistent locking creates a race condition where these functions can access conn->users and conn->hchan concurrently with l2cap_conn_del().

Critical Impact

This vulnerability can lead to use-after-free conditions and list corruption in the Linux kernel's Bluetooth stack, potentially causing system crashes or enabling privilege escalation attacks on systems with Bluetooth functionality enabled.

Affected Products

  • Linux kernel with Bluetooth L2CAP support enabled
  • Systems running vulnerable kernel versions with active Bluetooth functionality
  • Devices utilizing L2CAP protocol for Bluetooth communications

Discovery Timeline

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

Technical Details for CVE-2026-23461

Vulnerability Analysis

This use-after-free vulnerability stems from a locking inconsistency introduced when fixing a previous Bluetooth L2CAP bug. The original fix in commit ab4eedb790ca modified l2cap_conn_del() to use conn->lock for protecting the conn->users list. However, the complementary functions l2cap_register_user() and l2cap_unregister_user() continued using hci_dev_lock(), creating a synchronization gap.

When multiple threads access the L2CAP connection structure simultaneously—one thread calling l2cap_conn_del() while another invokes l2cap_unregister_user()—the inconsistent locking allows both to manipulate conn->users and conn->hchan without proper mutual exclusion. This race condition was identified and reported by syzbot, a kernel fuzzing system.

The vulnerability can manifest as list corruption when concurrent operations modify the user list, or as use-after-free when l2cap_conn_del() frees the connection structure while another function is still accessing it.

Root Cause

The root cause is inconsistent lock usage across related kernel functions. After the previous fix introduced conn->lock for protecting conn->users in l2cap_conn_del(), the l2cap_register_user() and l2cap_unregister_user() functions were not updated to use the same lock primitive. This created a Time-of-Check Time-of-Use (TOCTOU) style race condition where:

  1. l2cap_conn_del() acquires conn->lock and begins teardown
  2. Concurrently, l2cap_unregister_user() acquires hci_dev_lock() (different lock)
  3. Both functions access shared data structures without mutual exclusion
  4. Memory corruption or use-after-free occurs

Attack Vector

Exploitation requires local access to the system with the ability to trigger Bluetooth L2CAP operations. An attacker would need to:

  1. Establish an L2CAP connection to the target system
  2. Trigger rapid registration and unregistration of L2CAP users while simultaneously causing connection deletions
  3. Win the race condition to cause use-after-free or list corruption
  4. Potentially leverage the memory corruption for privilege escalation

The vulnerability was discovered through fuzzing, indicating that triggering the race condition requires precise timing but is achievable through automated approaches. Systems with active Bluetooth connectivity and multiple concurrent L2CAP operations are at higher risk.

Detection Methods for CVE-2026-23461

Indicators of Compromise

  • Kernel panic messages referencing l2cap_unregister_user or l2cap_conn_del functions
  • List corruption warnings in kernel logs related to Bluetooth subsystem
  • Unexpected Bluetooth service crashes or connectivity issues
  • Memory corruption indicators such as KASAN (Kernel Address Sanitizer) reports involving L2CAP structures

Detection Strategies

  • Enable KASAN in development and testing environments to detect use-after-free accesses
  • Monitor dmesg output for Bluetooth stack crashes, warnings, or list corruption messages
  • Deploy kernel live patching solutions to detect and prevent exploitation attempts
  • Use system auditing to track Bluetooth connection events and identify anomalous patterns

Monitoring Recommendations

  • Configure kernel crash dump collection to capture evidence of exploitation attempts
  • Implement Bluetooth service monitoring to detect unusual connection patterns or rapid connect/disconnect cycles
  • Deploy SentinelOne Singularity Platform for real-time kernel exploit detection and behavioral analysis
  • Enable kernel tracing for l2cap_* functions in high-security environments

How to Mitigate CVE-2026-23461

Immediate Actions Required

  • Apply the kernel patches from the official git repositories immediately
  • If patching is not immediately possible, consider disabling Bluetooth functionality on critical systems
  • Review systems for signs of compromise using the detection methods outlined above
  • Prioritize patching systems with active Bluetooth connectivity in untrusted environments

Patch Information

The Linux kernel maintainers have released patches that fix the locking inconsistency by changing l2cap_register_user() and l2cap_unregister_user() to use conn->lock instead of hci_dev_lock(). This ensures consistent locking for the l2cap_conn structure across all related functions.

Official patches are available through multiple kernel git commits:

  • Kernel Git Commit 11a87dd
  • Kernel Git Commit 71030f3
  • Kernel Git Commit 752a6c9
  • Kernel Git Commit c22a5e6
  • Kernel Git Commit da3000c

Workarounds

  • Disable Bluetooth at the kernel level using CONFIG_BT=n if Bluetooth functionality is not required
  • Use rfkill to block Bluetooth adapters on systems where the kernel cannot be immediately updated
  • Implement network segmentation to limit Bluetooth exposure on critical infrastructure
  • Deploy kernel runtime protection solutions that can detect and block use-after-free exploitation attempts
bash
# Disable Bluetooth using rfkill as a temporary workaround
rfkill block bluetooth

# Verify Bluetooth is blocked
rfkill list bluetooth

# To blacklist the Bluetooth module (requires reboot)
echo "blacklist bluetooth" >> /etc/modprobe.d/bluetooth-blacklist.conf
echo "blacklist btusb" >> /etc/modprobe.d/bluetooth-blacklist.conf

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 11a87dd

  • Kernel Git Commit 71030f3

  • Kernel Git Commit 752a6c9

  • Kernel Git Commit c22a5e6

  • Kernel Git Commit da3000c
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43056: Linux Kernel Use-After-Free 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