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-2025-0087

CVE-2025-0087: Google Android Privilege Escalation Flaw

CVE-2025-0087 is a privilege escalation vulnerability in Google Android that allows unauthorized app uninstallation across user accounts. This article covers the technical details, affected versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-0087 Overview

CVE-2025-0087 is a local privilege escalation vulnerability in Google Android's UninstallerActivity.java component. The vulnerability exists in the onCreate method where a missing permission check allows an attacker to uninstall another user's application without proper authorization. This flaw enables local privilege escalation without requiring any additional execution privileges or user interaction.

Critical Impact

Attackers can exploit this vulnerability to uninstall applications belonging to other users on multi-user Android devices, potentially leading to denial of service, disruption of critical applications, or enabling further attack chains by removing security software.

Affected Products

  • Google Android 13.0
  • Google Android 14.0
  • Google Android 15.0

Discovery Timeline

  • 2025-05-01 - Google publishes security patch in Android Security Bulletin
  • 2025-09-04 - CVE-2025-0087 published to NVD
  • 2025-09-05 - Last updated in NVD database

Technical Details for CVE-2025-0087

Vulnerability Analysis

This vulnerability represents a missing permission check vulnerability (CWE-689) in Android's package management framework. The UninstallerActivity.java component is responsible for handling application uninstallation requests, but fails to properly verify that the requesting entity has appropriate permissions to uninstall applications for the target user context.

In Android's multi-user architecture, each user profile maintains separate application installations and data. The permission model is designed to prevent cross-user operations without explicit authorization. However, this implementation oversight allows a malicious application or process running in one user context to trigger uninstallation of applications belonging to a different user profile.

The attack is local in nature, requiring the attacker to have code execution on the device, but does not require elevated privileges to initiate. No user interaction is needed to exploit this vulnerability, making it particularly concerning for automated attack scenarios.

Root Cause

The root cause is a missing permission validation in the onCreate method of UninstallerActivity.java. When processing an uninstallation intent, the activity fails to verify whether the calling package has the necessary permissions to perform cross-user uninstallation operations. This allows any application to craft an intent that targets applications in other user profiles.

Attack Vector

The attack vector is local, meaning an attacker must have the ability to execute code on the target Android device. An attacker can exploit this vulnerability by:

  1. Creating a malicious application that constructs an intent targeting UninstallerActivity
  2. Including the package name of the target application to be uninstalled
  3. Specifying a different user ID to target applications in another user profile
  4. Launching the intent, which bypasses the permission check and initiates uninstallation

Since no user interaction is required, a malicious application running in the background could silently uninstall critical applications from other user profiles, potentially including security applications, work profile apps, or parental control software.

The vulnerability was addressed in the commit referenced in the Android Source Code Commit, which adds the missing permission verification logic.

Detection Methods for CVE-2025-0087

Indicators of Compromise

  • Unexpected application uninstallations on the device, particularly in work profiles or secondary user accounts
  • Applications disappearing from other user profiles without user action
  • Suspicious intent broadcasts targeting UninstallerActivity from unauthorized applications
  • Logcat entries showing uninstallation requests for packages in different user contexts

Detection Strategies

  • Monitor Android system logs for uninstallation events that occur without corresponding user interaction
  • Implement application inventory monitoring to detect unexpected removals across user profiles
  • Deploy mobile threat defense solutions that can detect anomalous package management behavior
  • Enable audit logging for package management operations in enterprise MDM solutions

Monitoring Recommendations

  • Configure SentinelOne Mobile Threat Defense to monitor for suspicious package management activities
  • Enable detailed logging on managed Android devices to capture uninstallation events
  • Implement alerts for critical application removals in work profiles or managed user accounts
  • Regularly audit installed applications across all user profiles on multi-user devices

How to Mitigate CVE-2025-0087

Immediate Actions Required

  • Apply the May 2025 Android security patch immediately to all affected devices
  • Review device logs for any signs of unauthorized application uninstallation
  • Ensure all managed devices are enrolled in an MDM solution with security patch enforcement
  • Consider restricting installation of untrusted applications until patching is complete

Patch Information

Google has released a security patch addressing this vulnerability in the Android Security Bulletin May 2025. The fix adds proper permission validation to the onCreate method of UninstallerActivity.java, ensuring that cross-user uninstallation requests are properly authorized.

Device manufacturers should incorporate the security patch level 2025-05-01 or later into their firmware updates. Enterprise administrators should verify that managed devices have received this patch through their MDM console.

Workarounds

  • Limit installation of applications from unknown sources to reduce the attack surface
  • Use Android's work profile feature with enterprise mobility management to monitor application integrity
  • Deploy mobile threat defense solutions to detect and prevent exploitation attempts
  • For enterprise environments, consider restricting multi-user functionality on sensitive devices until patches are applied
  • Enable application verification through Google Play Protect for additional runtime protection
bash
# Verify Android security patch level on device
adb shell getprop ro.build.version.security_patch

# Check for patch level 2025-05-01 or later
# Expected output: 2025-05-01 (or newer)

# List installed packages for current user to baseline
adb shell pm list packages --user 0

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.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-689
  • Technical References
  • Android Source Code Commit
  • Vendor Resources
  • Android Security Bulletin May 2025
  • 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