A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46056

CVE-2026-46056: Linux Kernel Bluetooth UAF Vulnerability

CVE-2026-46056 is a use-after-free flaw in the Linux kernel Bluetooth subsystem affecting SSP passkey handlers. Improper locking allows concurrent connection freeing. This article covers technical details, impact, and mitigation.

Published: May 28, 2026

CVE-2026-46056 Overview

CVE-2026-46056 is a use-after-free vulnerability in the Linux kernel's Bluetooth subsystem. The flaw resides in the Secure Simple Pairing (SSP) passkey event handlers within hci_event.c. Specifically, the functions hci_user_passkey_notify_evt() and hci_keypress_notify_evt() performed hci_conn lookups and field accesses without holding the hdev lock. A concurrent code path could free the connection structure while these handlers accessed it, producing a classic use-after-free condition [CWE-416].

Critical Impact

Concurrent freeing of an hci_conn structure during SSP passkey event processing can lead to kernel memory corruption, potentially enabling denial of service or local privilege escalation on systems with active Bluetooth pairing.

Affected Products

  • Linux kernel Bluetooth subsystem (net/bluetooth/hci_event.c)
  • Linux distributions shipping affected stable kernel branches prior to the fix
  • Systems exposing Bluetooth with SSP pairing enabled

Discovery Timeline

  • 2026-05-27 - CVE-2026-46056 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-46056

Vulnerability Analysis

The Linux kernel Bluetooth Host Controller Interface (HCI) layer processes events from controllers, including SSP passkey notifications. Two event handlers, hci_user_passkey_notify_evt() and hci_keypress_notify_evt(), looked up an hci_conn object by Bluetooth device address and then accessed fields on that object. The original code did not hold hci_dev_lock across the full lookup-and-use sequence. Another kernel context could complete connection teardown and free the hci_conn structure between the lookup and the field dereference. The patch extends the hci_dev_lock critical section to cover all conn usage in both handlers and routes early exits through a common unlock path to preserve existing keypress notification behavior.

Root Cause

The root cause is missing synchronization. The hci_conn object lifetime is governed by hdev locking, but the SSP passkey handlers accessed the connection outside that lock. This created a race window where a concurrent disconnect or cleanup path could free the object while the event handler still held a reference to it.

Attack Vector

An attacker within Bluetooth range, or a local actor able to influence Bluetooth events, can trigger SSP passkey notification events while initiating or tearing down a pairing session. Winning the race causes the kernel to dereference freed memory. The vulnerability requires Bluetooth to be active and SSP pairing flows to be exercised. The NVD record does not provide a CVSS vector or attack complexity rating at this time.

No public exploitation code is referenced in the advisory. The fix is published as upstream kernel commits, including 01a64317, 204028af, 85fa3512, 8c6443bb, and e08d7575.

Detection Methods for CVE-2026-46056

Indicators of Compromise

  • Kernel oops or panic messages referencing hci_user_passkey_notify_evt or hci_keypress_notify_evt in dmesg or journalctl -k output.
  • KASAN use-after-free reports involving hci_conn structures on kernels built with sanitizers.
  • Unexpected Bluetooth daemon (bluetoothd) restarts or crashes coinciding with pairing attempts.

Detection Strategies

  • Inventory kernel versions across Linux endpoints and compare against the fixed stable branches referenced in the upstream commits.
  • Enable kernel crash collection (kdump, pstore) to capture stack traces involving Bluetooth event handlers.
  • Correlate Bluetooth pairing attempts in audit logs with kernel ring buffer warnings to identify race-triggered failures.

Monitoring Recommendations

  • Forward dmesg and journald kernel messages to a central log platform and alert on Bluetooth subsystem oops signatures.
  • Monitor for repeated Bluetooth pairing requests from untrusted devices, which may indicate attempts to trigger the race.
  • Track kernel package versions through configuration management and flag hosts running unpatched builds.

How to Mitigate CVE-2026-46056

Immediate Actions Required

  • Apply the latest stable kernel update from your Linux distribution that includes the upstream fix commits.
  • Disable the Bluetooth stack on systems that do not require it by stopping and masking the bluetooth.service unit.
  • Restrict Bluetooth discoverability and pairing on systems that must keep the radio active.

Patch Information

The vulnerability is fixed by extending the hci_dev_lock critical section across all hci_conn access in both SSP passkey event handlers. The upstream patches are available as the following commits: Linux Kernel Commit 01a64317, Linux Kernel Commit 204028af, Linux Kernel Commit 85fa3512, Linux Kernel Commit 8c6443bb, and Linux Kernel Commit e08d7575.

Workarounds

  • Unload the Bluetooth kernel modules (btusb, bluetooth) on hosts where Bluetooth is not required.
  • Block untrusted Bluetooth devices from initiating pairing by configuring bluetoothd to require explicit authorization.
  • Set Bluetooth adapters to non-discoverable mode to reduce the attack surface until patches are deployed.
bash
# Disable Bluetooth where not required
sudo systemctl stop bluetooth.service
sudo systemctl mask bluetooth.service
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

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 01a64317

  • Linux Kernel Commit 204028af

  • Linux Kernel Commit 85fa3512

  • Linux Kernel Commit 8c6443bb

  • Linux Kernel Commit e08d7575
  • Related CVEs
  • CVE-2026-46240: Linux Kernel Use-After-Free Vulnerability

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

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

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