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-2025-21969

CVE-2025-21969: Linux Kernel Use-After-Free Vulnerability

CVE-2025-21969 is a use-after-free vulnerability in the Linux Kernel Bluetooth L2CAP subsystem that can cause memory corruption. This article covers the technical details, affected kernel versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-21969 Overview

CVE-2025-21969 is a use-after-free vulnerability in the Linux kernel's Bluetooth L2CAP (Logical Link Control and Adaptation Protocol) subsystem. The flaw occurs in the l2cap_send_cmd function where a race condition between the HCI sync command and HCI receive data work queue leads to accessing a freed l2cap_conn structure. When the HCI sync command releases the l2cap_conn object, the HCI receive data work queue may still reference this memory when sending data to the upper layer, resulting in a slab-use-after-free condition.

Critical Impact

A local attacker with low privileges can exploit this use-after-free vulnerability to potentially achieve arbitrary code execution with elevated privileges, cause system crashes, or corrupt kernel memory structures.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.14-rc1
  • Linux Kernel 6.14-rc2

Discovery Timeline

  • April 1, 2025 - CVE-2025-21969 published to NVD
  • October 1, 2025 - Last updated in NVD database

Technical Details for CVE-2025-21969

Vulnerability Analysis

This use-after-free vulnerability stems from improper synchronization between two kernel work queues handling Bluetooth operations. The l2cap_conn structure is allocated when a Bluetooth L2CAP connection is established via l2cap_conn_add() and is freed during connection failure handling in hci_conn_failed().

The vulnerability manifests when the hci_rx_work work queue attempts to process incoming Bluetooth data and calls l2cap_send_cmd() to send L2CAP commands. If the hci_cmd_sync_work has already freed the l2cap_conn structure through the hci_abort_conn_sync() path, the receive work queue will access freed memory. This race condition is particularly dangerous because the KASAN (Kernel Address Sanitizer) report shows an 8-byte read from freed memory at address ffff8880271a4000, indicating the kernel is dereferencing a pointer to deallocated slab memory.

The fix involves adding proper HCI device locking (hci dev lock) to the HCI receive data work queue to ensure synchronization between the connection teardown and data reception paths.

Root Cause

The root cause is a missing synchronization primitive between concurrent kernel work queues. The hci_cmd_sync_work and hci_rx_work operate on shared l2cap_conn structures without adequate locking, creating a classic time-of-check-to-time-of-use (TOCTOU) race condition. When a connection abort occurs via hci_abort_conn_sync(), the l2cap_conn is freed through l2cap_connect_cfm(), but the receive path in hci_rx_work may still hold a stale pointer to this structure.

Attack Vector

The vulnerability requires local access and low privileges to exploit. An attacker with the ability to initiate Bluetooth operations could manipulate the timing of Bluetooth connection establishment and teardown to trigger the race condition. By carefully timing HCI commands and data reception, an attacker could cause the kernel to access freed memory, potentially leading to:

  • Information disclosure through reading freed memory contents
  • Denial of service through kernel panic or corruption
  • Privilege escalation through controlled memory corruption

The attack vector involves manipulating Bluetooth HCI events to trigger the specific timing window where l2cap_conn is freed but still referenced. The vulnerability is triggered through the l2cap_recv_frame() -> l2cap_sig_channel() -> l2cap_sig_send_rej() -> l2cap_send_cmd() call chain, which ultimately calls l2cap_build_cmd() with a stale l2cap_conn pointer.

Detection Methods for CVE-2025-21969

Indicators of Compromise

  • Kernel KASAN reports indicating slab-use-after-free in l2cap_send_cmd or l2cap_build_cmd functions
  • Kernel panic or crash logs referencing net/bluetooth/l2cap_core.c with stack traces involving hci_rx_work
  • Unexpected system instability when Bluetooth devices connect and disconnect rapidly
  • Audit logs showing unusual Bluetooth HCI activity patterns

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) on systems to detect use-after-free conditions at runtime
  • Monitor kernel logs for Bluetooth-related crashes or memory corruption warnings using dmesg filtering
  • Deploy kernel debugging tools such as LOCKDEP to detect potential locking violations in Bluetooth subsystem
  • Use SentinelOne's kernel-level monitoring to detect anomalous memory access patterns in the Bluetooth stack

Monitoring Recommendations

  • Configure kernel logging to capture Bluetooth subsystem warnings at debug level (hci_core and l2cap_core modules)
  • Implement real-time monitoring of kernel memory allocations and deallocations in the l2cap_conn slab cache
  • Set up alerts for kernel OOPS or panic events originating from Bluetooth code paths
  • Monitor for unusual patterns of Bluetooth connection establishment and termination

How to Mitigate CVE-2025-21969

Immediate Actions Required

  • Apply the official kernel patches from the stable kernel tree immediately
  • If patching is not immediately possible, consider disabling Bluetooth functionality on affected systems
  • Review and update kernel configurations to enable memory safety features like KASAN for development and testing environments
  • Restrict local user access to Bluetooth operations using appropriate permissions and policies

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds proper HCI device locking to the receive data work queue to synchronize access to l2cap_conn structures. The following commits contain the security fix:

  • Commit 7790a79c6fce
  • Commit b4f82f9ed43a
  • Commit c96cce853542
  • Commit f8094625a591

Update to a patched kernel version through your distribution's package manager or by compiling from source with the applied patches.

Workarounds

  • Disable Bluetooth functionality at the kernel level by blacklisting the bluetooth module: add blacklist bluetooth to /etc/modprobe.d/blacklist.conf
  • Restrict Bluetooth adapter access using udev rules to limit exposure to trusted processes only
  • If Bluetooth is required, implement network segmentation and limit physical access to prevent local exploitation
  • Use mandatory access control (SELinux/AppArmor) policies to restrict Bluetooth-related operations
bash
# Disable Bluetooth module loading
echo "blacklist bluetooth" >> /etc/modprobe.d/bluetooth-blacklist.conf
echo "blacklist btusb" >> /etc/modprobe.d/bluetooth-blacklist.conf

# Remove loaded modules if present
modprobe -r btusb
modprobe -r bluetooth

# Verify modules are unloaded
lsmod | grep -i 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 Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Vendor Resources
  • Kernel Git Commit Reference

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference

  • Kernel Git Commit Reference
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

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