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

CVE-2023-20983: Google Android Information Disclosure Flaw

CVE-2023-20983 is an information disclosure vulnerability in Google Android's Bluetooth stack that enables local privilege escalation. This article covers the technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2023-20983 Overview

CVE-2023-20983 is an out-of-bounds read vulnerability discovered in the Android Bluetooth stack, specifically within the btm_ble_rand_enc_complete function located in btm_ble.cc. The vulnerability stems from a missing bounds check that could allow an attacker with System execution privileges to access memory beyond the intended buffer boundaries, potentially leading to local information disclosure.

Critical Impact

Local information disclosure affecting Android 13 devices through improper memory access in the Bluetooth Low Energy (BLE) subsystem. Exploitation does not require user interaction.

Affected Products

  • Google Android 13.0

Discovery Timeline

  • 2023-03-24 - CVE-2023-20983 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-20983

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read), a common memory safety issue that occurs when software reads data past the boundaries of an allocated buffer. In the context of btm_ble_rand_enc_complete, the function processes random encryption completion events in the Bluetooth Low Energy stack without properly validating the bounds of the data being accessed.

The vulnerability exists in the Android Bluetooth Manager (BTM) module, which handles BLE encryption operations. When processing encryption completion callbacks, the function fails to verify that the data length falls within expected boundaries before reading from the buffer. This oversight allows reading beyond allocated memory regions.

Root Cause

The root cause is a missing bounds check in the btm_ble_rand_enc_complete function within btm_ble.cc. The function processes encryption-related data from the BLE controller without verifying that the received data length is within acceptable limits. This allows out-of-bounds memory access when malformed or unexpected data is processed.

Attack Vector

The attack requires local access to the device with System execution privileges. An attacker with elevated privileges could potentially trigger the vulnerable code path through the Bluetooth subsystem to read sensitive information from adjacent memory regions. The attack does not require any user interaction, making it exploitable in automated scenarios once the prerequisite privileges are obtained.

The vulnerability manifests when the BLE random encryption completion handler processes data without proper length validation. Attackers with System-level access could craft specific Bluetooth operations that trigger the vulnerable code path, causing the function to read beyond the intended buffer boundaries and potentially exposing sensitive kernel or system memory contents.

Detection Methods for CVE-2023-20983

Indicators of Compromise

  • Unusual Bluetooth service crashes or restarts indicating potential exploitation attempts
  • Abnormal memory access patterns in the btm_ble.cc module during BLE operations
  • System logs showing unexpected behavior in the Bluetooth Low Energy encryption subsystem
  • Evidence of privilege escalation attempts targeting Bluetooth system services

Detection Strategies

  • Monitor Android system logs for Bluetooth stack exceptions or memory access violations
  • Implement runtime memory protection mechanisms to detect out-of-bounds read attempts
  • Deploy endpoint detection solutions capable of monitoring Bluetooth subsystem behavior
  • Analyze system audit logs for suspicious process activity involving Bluetooth services with System privileges

Monitoring Recommendations

  • Enable verbose logging for the Android Bluetooth service to capture potential exploitation attempts
  • Monitor for unusual process behavior involving the Bluetooth system service
  • Implement SentinelOne Singularity Platform for comprehensive endpoint visibility and threat detection
  • Review device security patches to ensure the June 2023 Android security bulletin has been applied

How to Mitigate CVE-2023-20983

Immediate Actions Required

  • Apply the Android security patch from the June 2023 security bulletin immediately
  • Verify all Android 13 devices in your environment are updated to the patched version
  • Review device management policies to ensure automatic security updates are enabled
  • Audit system privilege assignments to minimize exposure to the required attack prerequisites

Patch Information

Google has addressed this vulnerability in the Android Security Bulletin for June 2023. The fix adds proper bounds checking to the btm_ble_rand_enc_complete function to prevent out-of-bounds read operations. Organizations should ensure all Android 13 devices receive this security update through their device management solutions.

The vulnerability is tracked internally by Google as Android ID A-260569449.

Workarounds

  • Limit applications and services with System execution privileges to reduce attack surface
  • Implement mobile device management (MDM) solutions to enforce security configurations
  • Consider disabling Bluetooth on devices where it is not required until patches can be applied
  • Isolate unpatched devices from sensitive networks and data
bash
# Verify Android security patch level
adb shell getprop ro.build.version.security_patch
# Expected output should be 2023-06-01 or later for patched devices

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGoogle Android

  • SeverityMEDIUM

  • CVSS Score4.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-125
  • Technical References
  • Android Security Bulletin June 2023
  • Related CVEs
  • CVE-2026-0108: Google Android Information Disclosure Flaw

  • CVE-2026-0115: Google Android Information Disclosure Flaw

  • CVE-2025-48642: Google Android Information Disclosure Flaw

  • CVE-2026-0024: Google Android 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