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

CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

CVE-2026-23462 is a use-after-free vulnerability in the Linux kernel Bluetooth HIDP module that can cause system crashes. This article covers the technical details, affected kernel versions, security impact, and mitigation.

Published: April 10, 2026

CVE-2026-23462 Overview

CVE-2026-23462 is a Use-After-Free (UAF) vulnerability in the Linux kernel's Bluetooth HIDP (Human Interface Device Profile) subsystem. The vulnerability occurs when the l2cap_conn reference is not properly dropped during the user->remove callback invocation, leading to potential memory corruption and system instability.

The issue manifests in the L2CAP (Logical Link Control and Adaptation Protocol) connection handling code within the Bluetooth stack. When a Bluetooth HID connection is terminated, the kernel fails to correctly manage reference counts for the l2cap_conn structure, resulting in a use-after-free condition that can be triggered during device unregistration or connection teardown.

Critical Impact

This vulnerability can lead to kernel memory corruption, system crashes, or potential privilege escalation through exploitation of the UAF condition in the Bluetooth subsystem.

Affected Products

  • Linux Kernel (versions with vulnerable Bluetooth HIDP implementation)
  • Systems with Bluetooth HID device support enabled
  • Linux-based distributions with affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-23462

Vulnerability Analysis

This Use-After-Free vulnerability exists in the Linux kernel's Bluetooth HIDP subsystem, specifically in the L2CAP connection management code. The root issue is a reference counting error where the l2cap_conn reference is not properly released when the user->remove callback is invoked during connection cleanup.

The stack trace from the vulnerability shows the execution path through several key kernel functions:

  • l2cap_conn_free() - The function responsible for freeing the L2CAP connection structure
  • l2cap_conn_del() - Connection deletion handler that manages reference counting via kref
  • l2cap_disconn_cfm() - Disconnection confirmation callback
  • hci_conn_hash_flush() - Flushes all connections during HCI device unregistration
  • hci_dev_close_sync() - Synchronously closes the HCI device
  • hci_unregister_dev() - Unregisters the Bluetooth HCI device
  • vhci_release() - Release handler for the virtual HCI driver

The vulnerability can be triggered when a Bluetooth HID device connection is terminated, particularly during device unregistration or when the virtual HCI device file is closed. The premature freeing of the l2cap_conn structure while references still exist creates a classic UAF scenario.

Root Cause

The root cause is improper reference count management in the Bluetooth L2CAP layer. When the user->remove callback is called during connection teardown, the code fails to drop the l2cap_conn reference appropriately. This reference counting imbalance causes the connection structure to be freed while other parts of the kernel still hold references to it.

The issue is located in the interaction between net/bluetooth/l2cap_core.c and the HIDP layer. The l2cap_conn_free() function at line 1808 of l2cap_core.c is invoked while the connection object is still being accessed elsewhere in the kernel.

Attack Vector

The attack vector involves manipulating Bluetooth HID device connections to trigger the vulnerable code path. An attacker with local access could:

  1. Establish a Bluetooth HIDP connection (either through a real device or using the virtual HCI interface)
  2. Trigger a connection termination scenario that exercises the vulnerable user->remove callback path
  3. Race to access the freed l2cap_conn structure before it is reallocated
  4. Potentially achieve code execution or privilege escalation through controlled memory corruption

The vulnerability requires local access to a system with Bluetooth capabilities and the ability to create or manipulate Bluetooth HID connections. The virtual HCI driver (hci_vhci.c) provides a convenient interface for triggering this vulnerability without requiring physical Bluetooth hardware.

Detection Methods for CVE-2026-23462

Indicators of Compromise

  • Kernel panic or oops messages referencing l2cap_conn_free or l2cap_conn_del functions
  • Unexpected system crashes during Bluetooth device disconnection events
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in net/bluetooth/l2cap_core.c
  • Abnormal Bluetooth subsystem behavior following HID device disconnections

Detection Strategies

  • Enable kernel memory debugging features (KASAN, KFENCE) to detect UAF conditions
  • Monitor kernel logs for stack traces involving l2cap_conn_free and related Bluetooth functions
  • Deploy runtime integrity monitoring for kernel memory structures
  • Use SentinelOne's kernel-level threat detection to identify exploitation attempts

Monitoring Recommendations

  • Configure syslog monitoring for kernel Bluetooth subsystem errors and warnings
  • Enable audit logging for Bluetooth device registration/unregistration events
  • Monitor for unusual /dev/vhci file operations that could indicate exploitation attempts
  • Implement alerting on kernel panic events related to Bluetooth stack functions

How to Mitigate CVE-2026-23462

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel Git repository
  • Consider disabling Bluetooth functionality on critical systems until patched
  • Restrict access to the virtual HCI interface (/dev/vhci) to trusted users only
  • Update to a patched kernel version as soon as available from your distribution

Patch Information

Multiple patches have been committed to the Linux kernel stable tree to address this vulnerability. The fix ensures proper reference count management for l2cap_conn structures during the user->remove callback execution.

Available patch commits:

  • Kernel Git Commit 21a47a1
  • Kernel Git Commit 45ebe5b
  • Kernel Git Commit 4d37fa7
  • Kernel Git Commit 7c805b7
  • Kernel Git Commit dbf666e
  • Kernel Git Commit f8b6ed2

Workarounds

  • Disable Bluetooth at the kernel level by blacklisting the bluetooth module: echo "blacklist bluetooth" >> /etc/modprobe.d/bluetooth-disable.conf
  • Remove or restrict permissions on /dev/vhci to prevent virtual HCI exploitation
  • Use kernel boot parameters to disable Bluetooth: add btusb.disable_autosuspend=1 or disable Bluetooth modules entirely
  • Implement network segmentation to limit Bluetooth attack surface in enterprise environments
bash
# Configuration example
# Disable Bluetooth kernel module to mitigate CVE-2026-23462
echo "blacklist bluetooth" >> /etc/modprobe.d/bluetooth-disable.conf
echo "blacklist btusb" >> /etc/modprobe.d/bluetooth-disable.conf
echo "blacklist hci_vhci" >> /etc/modprobe.d/bluetooth-disable.conf

# Restrict virtual HCI device access
chmod 600 /dev/vhci 2>/dev/null || true

# Reload module configuration
update-initramfs -u

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

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 21a47a1

  • Kernel Git Commit 45ebe5b

  • Kernel Git Commit 4d37fa7

  • Kernel Git Commit 7c805b7

  • Kernel Git Commit dbf666e

  • Kernel Git Commit f8b6ed2
  • Related CVEs
  • CVE-2026-23458: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-23445: 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