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

CVE-2026-43059: Linux Kernel Bluetooth Use-After-Free

CVE-2026-43059 is a use-after-free vulnerability in the Linux kernel Bluetooth MGMT component that causes list corruption and memory safety issues. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43059 Overview

CVE-2026-43059 is a Linux kernel vulnerability in the Bluetooth management (MGMT) subsystem. The flaw affects command complete handlers and produces list corruption alongside use-after-free (UAF) conditions. It originates from a prior fix, commit 302a1f674c00 ("Bluetooth: MGMT: Fix possible UAFs"), which changed the semantics of mgmt_pending_valid() to unlink pending commands during validation. Two completion handlers were not updated to match the new behavior, leaving residual memory safety issues.

Critical Impact

A successful trigger leads to kernel list corruption or use-after-free in the Bluetooth MGMT subsystem, which can result in kernel panic or memory safety violations.

Affected Products

  • Linux kernel (Bluetooth MGMT subsystem)
  • Distributions shipping the kernel revision that contains commit 302a1f674c00
  • Stable kernel branches referenced in the upstream commits 02023ff760cc, 17f89341cb42, 695b45b2262f, and b5c5e96f3b0a

Discovery Timeline

  • 2026-05-05 - CVE-2026-43059 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43059

Vulnerability Analysis

The vulnerability resides in the Linux kernel Bluetooth MGMT command completion path. After commit 302a1f674c00, mgmt_pending_valid() validates a pending command and unlinks it from the pending list as part of validation. Two handlers continued to operate as if the command remained linked.

In mgmt_add_adv_patterns_monitor_complete(), the success path calls mgmt_pending_remove() on a command that mgmt_pending_valid() already unlinked. The duplicate list_del() corrupts the pending list and can panic the kernel.

In set_mesh_complete(), the error path uses mgmt_pending_foreach() to iterate pending commands. Because the current command is already unlinked, the loop targets unrelated mesh commands and may free them while other code paths still reference them. This produces a use-after-free [CWE-416].

Root Cause

The root cause is inconsistent ownership semantics introduced when mgmt_pending_valid() started unlinking commands. Callers retained legacy cleanup logic that assumed the command was still on the list, producing double-unlink and incorrect cross-command iteration.

Attack Vector

Triggering the flaw requires interaction with the Bluetooth MGMT interface, specifically issuing advertisement pattern monitor and mesh configuration commands that invoke the affected completion handlers. A local attacker with the ability to issue MGMT commands can induce list corruption or free in-use command structures, leading to denial of service or potential memory corruption primitives.

No public exploit code is available for CVE-2026-43059. Refer to the upstream kernel commits for technical details on the corrected handler logic.

Detection Methods for CVE-2026-43059

Indicators of Compromise

  • Kernel panic messages referencing list_del corruption originating from the Bluetooth MGMT path
  • KASAN: use-after-free reports implicating set_mesh_complete or mgmt_add_adv_patterns_monitor_complete
  • Unexpected Bluetooth subsystem crashes following advertisement monitor or mesh configuration operations

Detection Strategies

  • Compare running kernel versions against the patched commits 02023ff760cc, 17f89341cb42, 695b45b2262f, and b5c5e96f3b0a to identify unpatched hosts
  • Enable CONFIG_DEBUG_LIST and KASAN in test environments to surface list corruption and UAF conditions early
  • Monitor dmesg and crash dumps for repeating Bluetooth MGMT faults that correlate with userspace MGMT activity

Monitoring Recommendations

  • Forward kernel logs to a centralized log platform and alert on Bluetooth subsystem oops or panic strings
  • Track processes opening AF_BLUETOOTH HCI sockets to baseline normal MGMT command issuers
  • Audit local user privileges that grant CAP_NET_ADMIN, which is required to send MGMT commands

How to Mitigate CVE-2026-43059

Immediate Actions Required

  • Apply the upstream stable kernel updates that include commits 02023ff760cc, 17f89341cb42, 695b45b2262f, and b5c5e96f3b0a
  • Reboot affected systems after patching to load the corrected Bluetooth MGMT code paths
  • Inventory hosts with active Bluetooth stacks and prioritize servers and workstations exposing MGMT functionality

Patch Information

The fix replaces mgmt_pending_remove() with mgmt_pending_free() in the success path of mgmt_add_adv_patterns_monitor_complete(), eliminating the double list_del(). In set_mesh_complete(), the patch removes the mgmt_pending_foreach() call from the error path and simplifies the redundant mgmt_cmd_status() to use cmd->opcode directly. See the upstream changes: Kernel commit 02023ff760cc, Kernel commit 17f89341cb42, Kernel commit 695b45b2262f, and Kernel commit b5c5e96f3b0a.

Workarounds

  • Disable the Bluetooth kernel modules on systems that do not require Bluetooth functionality using rmmod bluetooth and blocklist entries
  • Restrict CAP_NET_ADMIN so unprivileged users cannot issue MGMT commands
  • Limit local access to systems exposing Bluetooth interfaces until the patched kernel is deployed
bash
# Configuration example
# Blocklist Bluetooth modules where the stack is not required
echo 'install bluetooth /bin/true' | sudo tee /etc/modprobe.d/disable-bluetooth.conf
sudo systemctl disable --now bluetooth.service
sudo modprobe -r btusb bluetooth || true

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 Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

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

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

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