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-2020-0023

CVE-2020-0023: Android Bluetooth Information Disclosure

CVE-2020-0023 is an information disclosure vulnerability in Google Android's Bluetooth service that exposes user contacts due to missing permission checks. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-0023 Overview

CVE-2020-0023 is a missing permission check vulnerability in the setPhonebookAccessPermission function of AdapterService.java within Google Android. This flaw allows a malicious application to enable disclosure of user contacts over Bluetooth without proper authorization. The vulnerability affects the Bluetooth adapter service, which is responsible for managing Bluetooth device connections and permissions on Android devices.

Critical Impact

A malicious app with local access can silently enable contacts sharing over Bluetooth, potentially exposing sensitive user contact information to unauthorized Bluetooth-paired devices without user knowledge or consent.

Affected Products

  • Google Android 10.0

Discovery Timeline

  • 2020-02-13 - CVE-2020-0023 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-0023

Vulnerability Analysis

This vulnerability falls under CWE-862 (Missing Authorization), indicating that the setPhonebookAccessPermission method in AdapterService.java fails to verify that the calling application has the appropriate permissions before modifying phonebook access settings for Bluetooth connections. The flaw requires local access and user execution privileges, but notably does not require any user interaction to exploit.

When a Bluetooth connection is established between devices, Android typically prompts users to authorize phonebook sharing. However, this vulnerability allows a malicious application to programmatically enable phonebook access without triggering this authorization flow, effectively bypassing the intended security control.

Root Cause

The root cause of CVE-2020-0023 is the absence of a proper permission check in the setPhonebookAccessPermission method within the Android Bluetooth Adapter Service. The method should validate that the calling application possesses the necessary Bluetooth and contacts permissions before allowing modification of phonebook access settings. Without this validation, any application running with user-level privileges can manipulate these settings.

Attack Vector

The attack vector is local, requiring a malicious application to be installed on the target Android device. The attack scenario involves:

  1. A malicious app is installed on an Android 10.0 device
  2. The app calls the vulnerable setPhonebookAccessPermission method
  3. Due to the missing permission check, the method allows the app to enable phonebook access for Bluetooth connections
  4. When the device connects to a Bluetooth device (such as a car's infotainment system or headset), the contacts are automatically shared
  5. An attacker with access to the paired Bluetooth device can harvest the victim's contact information

The vulnerability is particularly concerning because it can silently leak personal data through seemingly innocuous Bluetooth connections that users may establish regularly.

Detection Methods for CVE-2020-0023

Indicators of Compromise

  • Unexpected phonebook access being enabled for Bluetooth devices without user consent
  • Unknown or suspicious applications making calls to Bluetooth adapter services
  • Contacts data appearing on paired Bluetooth devices that weren't explicitly shared by the user
  • Unusual Bluetooth service activity in system logs related to phonebook permissions

Detection Strategies

  • Monitor for applications attempting to access AdapterService.java or Bluetooth adapter APIs without appropriate permissions
  • Review installed applications for apps requesting Bluetooth permissions in combination with contacts-related functionality
  • Analyze Android system logs for unauthorized calls to setPhonebookAccessPermission
  • Deploy mobile threat detection solutions capable of identifying apps exploiting Bluetooth permission bypass vulnerabilities

Monitoring Recommendations

  • Enable detailed logging for Bluetooth service interactions on managed Android devices
  • Implement mobile device management (MDM) policies to monitor and control Bluetooth access and phonebook sharing settings
  • Regularly audit installed applications on enterprise devices for suspicious Bluetooth-related behavior
  • Use SentinelOne Mobile Threat Defense to detect applications attempting to exploit Android permission vulnerabilities

How to Mitigate CVE-2020-0023

Immediate Actions Required

  • Update all Android 10.0 devices to the latest security patch level that includes the February 2020 security bulletin fixes
  • Review and audit all installed applications for unnecessary Bluetooth or contacts permissions
  • Disable Bluetooth when not in use to reduce the attack surface
  • Remove or disable any untrusted applications from affected devices

Patch Information

Google addressed this vulnerability in the Android Security Bulletin February 2020. The fix implements proper permission checking in the setPhonebookAccessPermission method to ensure that calling applications have the necessary authorization before modifying phonebook access settings for Bluetooth connections.

Organizations should ensure all Android 10.0 devices are updated to security patch level 2020-02-01 or later to receive the fix for this vulnerability.

Workarounds

  • Disable Bluetooth functionality on devices that cannot be immediately patched
  • Review and revoke Bluetooth and contacts permissions from untrusted applications
  • Use enterprise MDM solutions to enforce policies that prevent unauthorized phonebook sharing over Bluetooth
  • Consider network segmentation for managed Bluetooth devices in enterprise environments
  • Implement application allowlisting to prevent installation of potentially malicious apps
bash
# Check Android security patch level via ADB
adb shell getprop ro.build.version.security_patch

# Expected output should be 2020-02-01 or later
# If earlier, update the device to the latest available security patch

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechAndroid

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Vendor Resources
  • Android Security Bulletin February 2020
  • Related CVEs
  • CVE-2023-21237: Android Information Disclosure Vulnerability

  • CVE-2022-20481: Android WiFi Information Disclosure Flaw

  • CVE-2020-0187: Google Android Information Disclosure Flaw

  • CVE-2020-0018: 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