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

CVE-2026-43020: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43020 is a buffer overflow vulnerability in the Linux kernel Bluetooth MGMT subsystem that allows stack buffer overflow through oversized enc_size values. This post covers technical details, affected versions, and mitigations.

Published: May 7, 2026

CVE-2026-43020 Overview

CVE-2026-43020 is a stack buffer overflow vulnerability in the Linux kernel's Bluetooth Management (MGMT) interface. The flaw resides in the Long Term Key (LTK) loading path, where the kernel stores a user-supplied enc_size field without validating its bounds. The stored value is later used to size fixed stack operations when responding to LE LTK requests. An enc_size value larger than the 16-byte key buffer can overflow the reply stack buffer. The fix rejects oversized enc_size values during validation of the management LTK record so invalid keys never reach the stored key state.

Critical Impact

A local user with privileges to issue Bluetooth MGMT commands can overflow a kernel stack buffer, potentially leading to kernel memory corruption, denial of service, or local privilege escalation.

Affected Products

  • Linux kernel Bluetooth subsystem (MGMT interface)
  • Multiple stable Linux kernel branches receiving backported fixes
  • Distributions shipping affected upstream kernels

Discovery Timeline

  • 2026-05-01 - CVE-2026-43020 published to NVD
  • 2026-05-01 - Last updated in NVD database

Technical Details for CVE-2026-43020

Vulnerability Analysis

The vulnerability is a stack-based buffer overflow [CWE-121] in the Bluetooth MGMT subsystem of the Linux kernel. The MGMT interface allows privileged userspace to load Long Term Keys used for Bluetooth Low Energy (LE) link encryption. Each LTK record carries an enc_size field describing the encryption key length in bytes, which must not exceed 16.

The original code path stored the user-supplied enc_size directly into the kernel key state without range checks. When the kernel later replied to an LE LTK request, it copied data into a 16-byte fixed stack buffer using the stored enc_size as the length. Supplying an enc_size greater than 16 caused the copy to write beyond the buffer boundary, corrupting adjacent stack memory including saved registers and return addresses.

Root Cause

The root cause is missing input validation on the enc_size parameter in the Load Long Term Keys MGMT command handler. The handler accepted any 8-bit value and persisted it. Trust in this stored value at the LE LTK reply path created a TOCTOU-style assumption that the size was within Bluetooth specification bounds. The patch adds explicit validation that rejects records where enc_size exceeds the 16-byte maximum before the key reaches stored state.

Attack Vector

Exploitation requires local access with the CAP_NET_ADMIN capability or equivalent privileges to issue Bluetooth MGMT commands over the HCI socket. An attacker submits a crafted Load Long Term Keys command containing one or more LTK records with enc_size greater than 16. When a peer device subsequently triggers an LE LTK request matching the malicious record, the kernel performs the oversized copy and corrupts the stack frame of the responding function. Because no verified public exploit is available, real-world impact depends on stack canary configuration, KASLR, and overall kernel hardening of the target system.

No public proof-of-concept code has been published. Refer to the upstream commits referenced below for the technical fix details.

Detection Methods for CVE-2026-43020

Indicators of Compromise

  • Kernel oops, panic, or stack-protector (__stack_chk_fail) messages originating from the Bluetooth LE LTK reply path
  • Unexpected reboots or crashes on systems with active Bluetooth LE pairings shortly after MGMT key load operations
  • Audit records showing non-root processes invoking Bluetooth MGMT commands with unusual LTK payloads

Detection Strategies

  • Monitor kernel ring buffer (dmesg) and journalctl -k for stack corruption warnings tied to hci, mgmt, or smp symbols
  • Enable auditd rules on the HCI socket family (AF_BLUETOOTH) to record processes issuing MGMT_OP_LOAD_LONG_TERM_KEYS commands
  • Compare running kernel version and build against the patched commits listed in the Linux stable tree

Monitoring Recommendations

  • Track which user accounts and services hold CAP_NET_ADMIN and can interact with /dev/rfkill or HCI sockets
  • Alert on repeated Bluetooth subsystem crashes across the fleet, which can indicate exploitation attempts
  • Inventory hosts where Bluetooth is enabled but not required, since reducing the attack surface limits exposure

How to Mitigate CVE-2026-43020

Immediate Actions Required

  • Apply vendor kernel updates that incorporate the upstream fixes in commits 0f37d1e, 257cdb9, 40ba329, 50fb64d, 82f342b, b8dbe96, c34577f, and f71695e
  • Restrict CAP_NET_ADMIN and HCI socket access to trusted system services only
  • Disable the Bluetooth subsystem on servers and endpoints that do not require it

Patch Information

The Linux kernel maintainers have merged the fix across multiple stable branches. The patch validates enc_size in the management LTK record handler and rejects values greater than 16 bytes before the key is stored. Refer to the upstream commits: 0f37d1e, 257cdb9, 40ba329, 50fb64d, 82f342b, b8dbe96, c34577f, and f71695e. Apply distribution updates as soon as they are released.

Workarounds

  • Blacklist the bluetooth and btusb kernel modules on systems that do not need Bluetooth functionality
  • Stop and disable the bluetooth.service unit through systemctl disable --now bluetooth.service
  • Use setcap audits and Linux Security Modules such as SELinux or AppArmor to constrain which binaries may open AF_BLUETOOTH sockets
bash
# Configuration example: disable Bluetooth stack until patched kernel is deployed
sudo systemctl disable --now bluetooth.service
echo 'install bluetooth /bin/true' | sudo tee /etc/modprobe.d/disable-bluetooth.conf
echo 'install btusb /bin/true' | sudo tee -a /etc/modprobe.d/disable-bluetooth.conf
sudo rmmod btusb bluetooth 2>/dev/null || true

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 0f37d1e

  • Linux Kernel Commit 257cdb9

  • Linux Kernel Commit 40ba329

  • Linux Kernel Commit 50fb64d

  • Linux Kernel Commit 82f342b

  • Linux Kernel Commit b8dbe96

  • Linux Kernel Commit c34577f

  • Linux Kernel Commit f71695e
  • Related CVEs
  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43051: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31742: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31774: Linux Kernel Buffer Overflow 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