Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23299

CVE-2026-23299: Linux Kernel Bluetooth Memory Leak Flaw

CVE-2026-23299 is a memory leak flaw in the Linux kernel Bluetooth subsystem caused by improper handling of error queues in socket destructors. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-23299 Overview

CVE-2026-23299 is a Memory Leak vulnerability in the Linux kernel's Bluetooth subsystem. The flaw exists in the socket destructor handling when TX timestamping is enabled via SO_TIMESTAMPING. When this feature is enabled, SKBs (socket buffer structures) may be queued into sk_error_queue and remain there until consumed by userspace. If userspace never reads the timestamps, or if the Bluetooth controller is removed unexpectedly, these SKBs will leak, potentially leading to memory exhaustion over time.

Critical Impact

Systems with Bluetooth functionality enabled could experience gradual memory exhaustion, leading to system instability or denial of service conditions when timestamping features are actively used.

Affected Products

  • Linux kernel (Bluetooth subsystem)
  • Systems with Bluetooth HCI, L2CAP, and SCO socket implementations
  • RFCOMM protocol is not affected as it does not currently use sk_error_queue

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23299 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23299

Vulnerability Analysis

The vulnerability stems from improper resource cleanup in the Bluetooth socket destructor functions. When TX timestamping is enabled via the SO_TIMESTAMPING socket option, the kernel queues socket buffers (SKBs) into sk_error_queue to deliver timestamp information back to userspace. Under normal operation, userspace applications would read these timestamps from the error queue, causing the SKBs to be dequeued and freed.

However, the original implementation did not account for scenarios where these queued SKBs would never be consumed. Two primary scenarios trigger this memory leak: when userspace applications fail to read the timestamps before closing the socket, and when the Bluetooth controller is unexpectedly removed while SKBs are still queued. In both cases, the socket destructor would complete without purging the sk_error_queue, leaving the SKBs allocated indefinitely.

Root Cause

The root cause is the absence of skb_queue_purge() calls for sk_error_queue in the Bluetooth socket destructor functions. The affected socket types include HCI, L2CAP, and SCO sockets. When these sockets are destroyed, the destructor should clean up all associated resources, including any remaining entries in the error queue. The RFCOMM protocol implementation does not currently utilize sk_error_queue, making it unaffected by this specific issue.

Attack Vector

This vulnerability could be exploited in a local denial of service scenario. An attacker with the ability to create Bluetooth sockets and enable timestamping could deliberately:

  1. Open multiple Bluetooth sockets with SO_TIMESTAMPING enabled
  2. Generate network traffic that triggers timestamp events to be queued
  3. Close the sockets without reading the error queue
  4. Repeat the process to gradually exhaust kernel memory

The attack requires local access and the ability to create Bluetooth sockets, limiting the attack surface to authenticated local users or compromised processes with appropriate capabilities.

Detection Methods for CVE-2026-23299

Indicators of Compromise

  • Gradual increase in kernel memory usage over time on systems with active Bluetooth connections
  • Increasing sk_buff allocation counts in /proc/slabinfo without corresponding frees
  • System instability or OOM (Out of Memory) killer activation on systems with heavy Bluetooth usage
  • Bluetooth-related processes showing unexpectedly high memory consumption

Detection Strategies

  • Monitor kernel memory allocation patterns using slabtop or /proc/slabinfo for unusual sk_buff growth
  • Implement memory monitoring alerts for systems with active Bluetooth functionality
  • Audit application usage of SO_TIMESTAMPING on Bluetooth sockets
  • Track kernel versions against the patched commits to identify vulnerable systems

Monitoring Recommendations

  • Deploy system monitoring to track kernel memory usage trends over extended periods
  • Configure alerts for abnormal memory consumption patterns on Bluetooth-enabled servers and workstations
  • Review system logs for OOM killer events that may indicate exploitation attempts
  • Maintain an inventory of systems running vulnerable kernel versions

How to Mitigate CVE-2026-23299

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix commits
  • If immediate patching is not possible, consider disabling Bluetooth functionality on critical systems
  • Monitor memory usage on systems that cannot be immediately patched
  • Review and restrict local user access to Bluetooth socket creation capabilities

Patch Information

The Linux kernel development team has resolved this vulnerability by adding skb_queue_purge() calls for sk_error_queue in the affected Bluetooth socket destructor functions. The fix ensures that any remaining SKBs in the error queue are properly freed when sockets are destroyed.

The following kernel commits contain the fix:

  • Kernel Git Commit 21e4271e6509
  • Kernel Git Commit 2b6c942a5266
  • Kernel Git Commit 3de7c10a950b

Workarounds

  • Disable TX timestamping functionality if not required for operational purposes
  • Restrict Bluetooth socket creation to trusted users and processes using capability controls
  • Implement resource limits (cgroups) to contain potential memory exhaustion from affected processes
  • Monitor and restart affected services if memory leaks are detected before patches can be applied
bash
# Check current kernel version for vulnerability assessment
uname -r

# Monitor sk_buff allocations for potential leaks
watch -n 5 'grep skbuff /proc/slabinfo'

# Disable Bluetooth functionality temporarily if not needed
sudo systemctl stop bluetooth
sudo systemctl disable bluetooth

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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