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-2023-28866

CVE-2023-28866: Linux Kernel Buffer Overflow Vulnerability

CVE-2023-28866 is a buffer overflow flaw in Linux Kernel's Bluetooth component that enables out-of-bounds memory access. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: February 4, 2026

CVE-2023-28866 Overview

CVE-2023-28866 is an Out-of-Bounds Read vulnerability affecting the Linux kernel through version 6.2.8. The vulnerability exists in net/bluetooth/hci_sync.c where the amp_init1[] and amp_init2[] arrays are supposed to contain intentionally invalid terminating elements but do not, allowing out-of-bounds memory access during Bluetooth HCI synchronization operations.

Critical Impact

This vulnerability could allow remote attackers to read sensitive memory contents via network-accessible Bluetooth operations, potentially leading to information disclosure.

Affected Products

  • Linux Kernel versions through 6.2.8
  • Systems with Bluetooth HCI functionality enabled
  • Devices running affected kernel versions with Bluetooth stack active

Discovery Timeline

  • 2023-03-27 - CVE CVE-2023-28866 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2023-28866

Vulnerability Analysis

The vulnerability resides in the Bluetooth Host Controller Interface (HCI) synchronization code within the Linux kernel. The amp_init1[] and amp_init2[] arrays in net/bluetooth/hci_sync.c are designed to store initialization parameters for Alternate MAC/PHY (AMP) operations. These arrays were intended to include an intentionally invalid sentinel element to mark the end of valid data, preventing iteration beyond the array bounds.

However, due to a coding oversight, these arrays lack the required invalid terminating element. When the kernel iterates through these arrays during Bluetooth AMP initialization, it can read beyond the intended array boundaries, accessing uninitialized or sensitive kernel memory. This out-of-bounds read condition (CWE-125) could be triggered through network-accessible Bluetooth operations, potentially exposing kernel memory contents to attackers.

Root Cause

The root cause is a missing array terminator in the amp_init1[] and amp_init2[] arrays within the HCI synchronization code. The arrays were designed with the expectation that a sentinel invalid element would be present to signal the end of valid entries during iteration. Without this terminator, loop conditions that depend on detecting an invalid element to stop iteration will continue reading memory beyond the array boundaries.

Attack Vector

The attack vector is network-based, accessible through Bluetooth communications. An attacker within Bluetooth range could potentially trigger the vulnerable code path by initiating AMP-related Bluetooth operations with a target device. The attack does not require user interaction or special privileges, though successful exploitation requires the target system to have Bluetooth enabled and the vulnerable kernel code path accessible.

The vulnerability mechanism can be understood as follows: when the Bluetooth stack processes AMP initialization requests, it iterates through the amp_init1[] and amp_init2[] arrays. Without proper bounds checking or a sentinel value to terminate the loop, the iteration continues past the array boundaries. See the Linux Kernel Bluetooth Commit for the technical patch details.

Detection Methods for CVE-2023-28866

Indicators of Compromise

  • Unexpected Bluetooth HCI errors or crashes in system logs related to AMP operations
  • Kernel oops or warnings referencing hci_sync.c or related Bluetooth subsystem functions
  • Memory disclosure events detected by kernel address sanitizer (KASAN) logs
  • Anomalous Bluetooth connection attempts targeting AMP functionality

Detection Strategies

  • Monitor kernel logs for out-of-bounds access warnings from KASAN or similar memory debugging tools
  • Deploy runtime memory safety detection tools that can identify out-of-bounds read attempts
  • Implement Bluetooth traffic analysis to detect unusual AMP initialization patterns
  • Use SentinelOne's Singularity Platform to detect anomalous kernel memory access patterns

Monitoring Recommendations

  • Enable kernel auditing for Bluetooth subsystem events
  • Configure KASAN (Kernel Address SANitizer) in development and testing environments to catch similar issues
  • Monitor for unusual Bluetooth stack behavior or unexpected daemon restarts
  • Implement network-level Bluetooth traffic monitoring where applicable

How to Mitigate CVE-2023-28866

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for CVE-2023-28866
  • If immediate patching is not possible, consider disabling Bluetooth functionality on affected systems
  • Review systems for evidence of exploitation attempts in kernel logs
  • Prioritize patching for systems that require Bluetooth connectivity in untrusted environments

Patch Information

The fix for this vulnerability adds the missing invalid sentinel elements to the amp_init1[] and amp_init2[] arrays, ensuring proper loop termination during iteration. The patch is available through the Linux kernel Bluetooth maintainers:

  • Linux Kernel Bluetooth Commit
  • Bluetooth Project Patch Submission

Additional technical discussion is available on the Linux Kernel Mailing List Post.

Workarounds

  • Disable Bluetooth functionality at the kernel level by blacklisting Bluetooth modules (bluetooth, btusb, hci_uart)
  • Use firewall rules or physical controls to limit Bluetooth exposure in high-risk environments
  • Implement network segmentation to isolate systems with Bluetooth enabled from untrusted networks
  • Monitor affected systems closely for signs of exploitation while awaiting patch deployment
bash
# Disable Bluetooth modules temporarily
sudo modprobe -r btusb bluetooth
# Blacklist Bluetooth modules to prevent loading on boot
echo "blacklist bluetooth" | sudo tee /etc/modprobe.d/disable-bluetooth.conf
echo "blacklist btusb" | sudo tee -a /etc/modprobe.d/disable-bluetooth.conf

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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-125
  • Technical References
  • Linux Kernel Bluetooth Commit

  • Linux Kernel Mailing List Post

  • Bluetooth Project Patch Submission
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

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

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

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