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
    • 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-2022-42895

CVE-2022-42895: Linux Kernel Information Disclosure Flaw

CVE-2022-42895 is an information disclosure vulnerability in the Linux Kernel's Bluetooth L2CAP implementation that enables remote kernel pointer leaks. This article covers the technical details, affected systems, and patches.

Published: February 18, 2026

CVE-2022-42895 Overview

CVE-2022-42895 is an information disclosure vulnerability in the Linux kernel's Bluetooth L2CAP (Logical Link Control and Adaptation Protocol) implementation. The flaw exists in the l2cap_parse_conf_req function within net/bluetooth/l2cap_core.c, where the code attempts to access uninitialized memory. This vulnerability can be exploited remotely by an attacker within adjacent network range to leak kernel pointers, potentially enabling further exploitation such as bypassing kernel address space layout randomization (KASLR).

Critical Impact

Attackers within Bluetooth range can remotely leak sensitive kernel memory addresses, potentially defeating KASLR and enabling more sophisticated attacks against the Linux kernel.

Affected Products

  • Linux Kernel (all versions prior to the security patch)
  • Systems with Bluetooth L2CAP functionality enabled
  • Devices running unpatched Linux distributions with Bluetooth support

Discovery Timeline

  • 2022-11-23 - CVE CVE-2022-42895 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-42895

Vulnerability Analysis

This vulnerability is classified as CWE-824 (Access of Uninitialized Pointer), a type of memory information disclosure weakness. The flaw occurs in the Bluetooth L2CAP subsystem of the Linux kernel, specifically within the configuration request parsing logic. The vulnerability allows an attacker on an adjacent network (within Bluetooth range) to trigger the information leak without requiring any privileges or user interaction.

The attack exploits a logic error where the code accesses EFS (Extended Flow Specification) structure fields without first verifying that a remote EFS option was actually received. This leads to the use of uninitialized stack memory, which may contain sensitive kernel pointer values that can be leaked to the attacker.

Root Cause

The root cause lies in the l2cap_parse_conf_req function failing to validate whether a remote EFS structure was actually received before accessing its fields. When the FLAG_EFS_ENABLE flag is set on a channel but no remote EFS option was provided in the configuration request, the code would access the uninitialized efs structure on the stack. This uninitialized memory could contain kernel pointers from previous function calls, which would then be processed and potentially leaked to the remote attacker.

Attack Vector

An attacker within Bluetooth range can send specially crafted L2CAP configuration requests to a vulnerable Linux system. By manipulating the configuration options, the attacker can trigger the vulnerable code path where the kernel accesses uninitialized EFS structure data. The leaked kernel pointers can then be used to defeat KASLR protections, making subsequent memory corruption exploits more reliable.

c
 			l2cap_add_conf_opt(&ptr, L2CAP_CONF_RFC,
 					   sizeof(rfc), (unsigned long) &rfc, endptr - ptr);
 
-			if (test_bit(FLAG_EFS_ENABLE, &chan->flags)) {
+			if (remote_efs &&
+			    test_bit(FLAG_EFS_ENABLE, &chan->flags)) {
 				chan->remote_id = efs.id;
 				chan->remote_stype = efs.stype;
 				chan->remote_msdu = le16_to_cpu(efs.msdu);

Source: GitHub Linux Commit

The patch adds a check for the remote_efs variable to ensure that the remote EFS option was actually received before accessing the efs structure fields, preventing the use of uninitialized memory.

Detection Methods for CVE-2022-42895

Indicators of Compromise

  • Unusual Bluetooth L2CAP configuration request traffic from unknown devices
  • Suspicious pairing attempts or connection requests from devices within Bluetooth range
  • Unexpected L2CAP channel establishment activity in system logs
  • Evidence of Bluetooth scanning activity targeting the system

Detection Strategies

  • Monitor kernel logs for L2CAP-related errors or warnings using dmesg or journalctl
  • Deploy network monitoring solutions capable of inspecting Bluetooth traffic for anomalous L2CAP configuration requests
  • Use intrusion detection systems with rules to detect Bluetooth-based exploitation attempts
  • Implement endpoint detection solutions like SentinelOne that can identify kernel-level exploitation attempts

Monitoring Recommendations

  • Enable verbose Bluetooth logging on critical systems using btmon or similar tools
  • Configure centralized logging to aggregate Bluetooth subsystem events across the environment
  • Establish baselines for normal Bluetooth activity to identify anomalous connection patterns
  • Deploy SentinelOne agents to monitor for suspicious kernel memory access patterns

How to Mitigate CVE-2022-42895

Immediate Actions Required

  • Update the Linux kernel to a version containing commit b1a2cd50c0357f243b7435a732b4e62ba3157a2e or later
  • Apply vendor-specific kernel patches from your Linux distribution
  • Disable Bluetooth functionality on systems where it is not required
  • Restrict physical access to systems to limit Bluetooth attack surface

Patch Information

The vulnerability has been addressed in the upstream Linux kernel. The fix is available in commit b1a2cd50c0357f243b7435a732b4e62ba3157a2e which adds proper validation of the remote_efs variable before accessing EFS structure fields. System administrators should apply kernel updates from their Linux distribution that include this patch.

For reference:

  • GitHub Linux Commit
  • Kernel Dance Reference

Workarounds

  • Disable Bluetooth on systems where it is not required to eliminate the attack surface
  • Use Bluetooth management tools to restrict discoverable mode and limit pairing capabilities
  • Implement physical security controls to prevent adversaries from approaching within Bluetooth range
  • Blacklist the bluetooth kernel module on systems that do not require Bluetooth functionality
bash
# Disable Bluetooth kernel module
echo "blacklist bluetooth" >> /etc/modprobe.d/blacklist-bluetooth.conf
echo "blacklist btusb" >> /etc/modprobe.d/blacklist-bluetooth.conf

# Disable Bluetooth service
systemctl disable bluetooth
systemctl stop bluetooth

# Verify Bluetooth is disabled
rfkill block bluetooth

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-824
  • Vendor Resources
  • GitHub Linux Commit

  • Kernel Dance Reference
  • Related CVEs
  • CVE-2026-23430: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23465: Linux Kernel Btrfs Logging Vulnerability

  • CVE-2026-23421: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw
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