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
    • 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-35681

CVE-2023-35681: Google Android RCE Vulnerability

CVE-2023-35681 is a remote code execution vulnerability in Google Android caused by an integer overflow in eatt_l2cap_reconfig_completed. This article covers technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-35681 Overview

CVE-2023-35681 is a critical integer overflow vulnerability in Google Android's Bluetooth stack, specifically in the eatt_l2cap_reconfig_completed function within eatt_impl.h. This vulnerability results in an out-of-bounds write condition that can be exploited to achieve remote code execution. The vulnerability requires no user interaction and no additional execution privileges, making it particularly dangerous for Android devices with Bluetooth enabled.

Critical Impact

Remote code execution via Bluetooth without user interaction, potentially allowing complete device compromise on affected Android devices.

Affected Products

  • Google Android 13.0

Discovery Timeline

  • 2023-09-11 - CVE-2023-35681 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-35681

Vulnerability Analysis

This vulnerability exists within the Enhanced Attribute Protocol (EATT) implementation in Android's Bluetooth module. The eatt_l2cap_reconfig_completed function handles L2CAP (Logical Link Control and Adaptation Protocol) reconfiguration events, which are part of the Bluetooth Low Energy (BLE) communication stack.

The flaw is classified as CWE-190 (Integer Overflow or Wraparound). When processing L2CAP reconfiguration data, an arithmetic operation produces an integer overflow condition. This causes the resulting value to wrap around, leading to an undersized buffer allocation or incorrect bounds checking. Subsequent write operations then exceed the allocated buffer boundaries, corrupting adjacent memory structures.

The vulnerability is exploitable over the network via Bluetooth, requires low attack complexity, and needs no privileges or user interaction. An attacker within Bluetooth range could send specially crafted L2CAP packets to trigger the overflow and potentially execute arbitrary code on the target device.

Root Cause

The root cause is an integer overflow in the eatt_l2cap_reconfig_completed function when handling L2CAP reconfiguration completion events. The vulnerable code fails to properly validate integer arithmetic operations before using the result for memory allocation or array indexing. When a malicious value causes the integer to overflow, it wraps to a smaller value, leading to insufficient memory allocation and subsequent out-of-bounds memory writes.

Attack Vector

An attacker can exploit this vulnerability by sending maliciously crafted Bluetooth L2CAP packets to a vulnerable Android device. The attack does not require the victim to take any action—simply having Bluetooth enabled and being within range of the attacker is sufficient. The attacker would craft packets that trigger the integer overflow condition in the EATT L2CAP reconfiguration handler, causing memory corruption that can be leveraged to execute arbitrary code with the privileges of the Bluetooth daemon process.

The vulnerability is accessible via the network attack vector through Bluetooth communication. Due to the lack of required privileges and user interaction, this represents a severe remote code execution threat for any Android 13.0 device with an active Bluetooth interface.

Detection Methods for CVE-2023-35681

Indicators of Compromise

  • Unexpected Bluetooth service crashes or restarts on Android devices
  • Anomalous L2CAP reconfiguration traffic patterns from unknown or suspicious devices
  • Memory corruption indicators in system logs related to the Bluetooth stack
  • Unusual process behavior or privilege escalation following Bluetooth activity

Detection Strategies

  • Monitor Bluetooth system logs for crash reports in com.android.bluetooth or related components
  • Implement network-level monitoring for anomalous Bluetooth L2CAP traffic patterns
  • Deploy endpoint detection and response (EDR) solutions capable of detecting memory corruption exploitation attempts
  • Review Android security patch levels across managed device fleets to identify unpatched systems

Monitoring Recommendations

  • Enable verbose Bluetooth logging on high-value Android devices for forensic analysis
  • Implement mobile device management (MDM) solutions to track security patch compliance
  • Configure alerting for Bluetooth service anomalies and unexpected process terminations
  • Regularly audit connected Bluetooth device lists for unauthorized pairings

How to Mitigate CVE-2023-35681

Immediate Actions Required

  • Apply the Android security patch from the September 2023 security bulletin immediately
  • Disable Bluetooth on affected devices until patching is complete
  • Restrict Bluetooth visibility and pairing to trusted devices only
  • Monitor enterprise Android device fleets for patch compliance

Patch Information

Google has addressed this vulnerability in the September 2023 Android Security Bulletin. The fix is available in the Bluetooth module commit d8d95291f16a8f18f8ffbd6322c14686897c5730. Organizations should ensure all Android 13.0 devices are updated to include security patches from September 2023 or later. Refer to the Android Security Bulletin September 2023 for complete details, and the Android Bluetooth Module Commit for the specific code changes.

Workarounds

  • Disable Bluetooth functionality entirely on affected devices until patches can be applied
  • Implement Bluetooth management policies through MDM to restrict Bluetooth usage in sensitive environments
  • Configure devices to non-discoverable mode to reduce attack surface
  • Use network segmentation to isolate high-risk mobile devices from critical infrastructure
bash
# Android ADB commands to verify patch level and manage Bluetooth
# Check current security patch level
adb shell getprop ro.build.version.security_patch

# Disable Bluetooth via settings (requires appropriate permissions)
adb shell settings put global bluetooth_on 0

# Verify Bluetooth is disabled
adb shell settings get global bluetooth_on

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGoogle Android

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.63%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-190
  • Vendor Resources
  • Android Bluetooth Module Commit

  • Android Security Bulletin September 2023
  • Related CVEs
  • CVE-2026-0114: Google Android Modem RCE Vulnerability

  • CVE-2026-0116: Google Android RCE Vulnerability

  • CVE-2026-0120: Google Android Modem RCE Vulnerability

  • CVE-2026-0122: Google Android RCE Vulnerability
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