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-40076

CVE-2023-40076: Google Android Privilege Escalation Flaw

CVE-2023-40076 is a privilege escalation vulnerability in Google Android that allows attackers to access credentials from other users. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 4, 2026

CVE-2023-40076 Overview

CVE-2023-40076 is a local privilege escalation vulnerability in Google Android's CredentialManagerUi component. The flaw exists in the createPendingIntent function of CredentialManagerUi.java, where a permissions bypass allows an attacker to access credentials belonging to other users on the same device. This vulnerability can be exploited locally without requiring any user interaction, making it a significant concern for multi-user Android environments.

Critical Impact

Successful exploitation allows unauthorized access to other users' credentials stored on the device, enabling local privilege escalation without requiring additional execution privileges or user interaction.

Affected Products

  • Google Android 14.0

Discovery Timeline

  • 2023-12-04 - CVE-2023-40076 published to NVD
  • 2025-05-29 - Last updated in NVD database

Technical Details for CVE-2023-40076

Vulnerability Analysis

This vulnerability stems from improper permission handling in the Android Credential Manager UI component. The createPendingIntent method in CredentialManagerUi.java fails to properly enforce user-level permission boundaries when creating pending intents for credential operations. This flaw allows a local attacker to bypass normal access controls and retrieve credential information that should be isolated to other user profiles on the device.

The vulnerability is particularly concerning in enterprise or shared device scenarios where multiple users maintain separate credential stores. Android's multi-user architecture is designed to provide isolation between user profiles, but this flaw undermines that security boundary at the credential management layer.

Root Cause

The root cause is classified as CWE-276 (Incorrect Default Permissions). The createPendingIntent method does not properly validate the calling user's permissions before allowing access to credential operations. This results in insufficient access control checks that should restrict credential access to the owning user only. The pending intent creation process lacks proper user context validation, allowing cross-user credential access.

Attack Vector

The attack vector is local, requiring the attacker to have some level of access to the target device. The exploitation path involves:

  1. An attacker with local access to an Android 14.0 device executes code within their own user context
  2. The malicious code invokes the vulnerable createPendingIntent method in CredentialManagerUi.java
  3. Due to the permissions bypass, the pending intent is created without proper user boundary enforcement
  4. The attacker can then access credentials stored by other users on the same device
  5. No additional execution privileges are needed beyond standard application permissions
  6. User interaction is not required for successful exploitation

The vulnerability allows for high confidentiality impact as stored credentials can be exfiltrated, though integrity and availability of the system are not directly affected.

Detection Methods for CVE-2023-40076

Indicators of Compromise

  • Unexpected access attempts to credential storage from non-owner user contexts
  • Anomalous PendingIntent creation patterns in CredentialManagerUi logs
  • Cross-user credential access events that do not match legitimate user switching operations

Detection Strategies

  • Monitor Android system logs for suspicious activity involving CredentialManagerUi.java and credential access operations
  • Implement application behavior analysis to detect unusual cross-user data access patterns
  • Deploy mobile threat detection solutions capable of identifying privilege escalation attempts on Android devices

Monitoring Recommendations

  • Enable verbose logging for credential management operations on enterprise-managed Android devices
  • Configure SentinelOne Mobile Threat Defense to alert on anomalous credential access behaviors
  • Establish baseline user activity patterns to identify deviations that may indicate exploitation attempts

How to Mitigate CVE-2023-40076

Immediate Actions Required

  • Apply the Android Security Bulletin December 2023 patch immediately on all affected Android 14.0 devices
  • Prioritize patching for devices used in multi-user or shared device scenarios
  • Review device access controls and limit local access to trusted users until patches are applied

Patch Information

Google has released a security patch addressing this vulnerability as part of the Android Security Bulletin December 2023. The fix is available in the Android source code repository with commit hash 9b68987df85b681f9362a3cadca6496796d23bbc. Organizations should coordinate with their device manufacturers to ensure the patch is applied through OTA updates or manual firmware updates.

Workarounds

  • Restrict physical device access to trusted users only until patches can be applied
  • Disable multi-user functionality where not strictly required to reduce the attack surface
  • Implement mobile device management (MDM) policies to enforce security baselines and monitor device compliance
  • Consider isolating sensitive credential storage to single-user devices in high-security environments
bash
# Verify Android Security Patch Level
adb shell getprop ro.build.version.security_patch
# Expected output should be 2023-12-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
  • TypePrivilege Escalation

  • Vendor/TechGoogle Android

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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
  • NVD-CWE-noinfo

  • CWE-276
  • Vendor Resources
  • Android Source Code Reference

  • Android Security Bulletin December 2023
  • Related CVEs
  • CVE-2025-36920: Google Android Privilege Escalation Flaw

  • CVE-2026-0107: Google Android Privilege Escalation Flaw

  • CVE-2026-0110: Google Android Privilege Escalation Flaw

  • CVE-2026-0111: Google Android Privilege Escalation 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