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

CVE-2025-26443: Google Android Privilege Escalation Flaw

CVE-2025-26443 is a privilege escalation vulnerability in Google Android that allows unauthorized app installation bypassing security controls. This article covers the technical details, affected versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-26443 Overview

CVE-2025-26443 is a local privilege escalation vulnerability affecting Google Android's HtmlToSpannedParser.java component within the ManagedProvisioning package. A logic error in the parseHtml function allows attackers to bypass the "Install from unknown sources" security restriction, enabling unauthorized app installation on affected devices. This vulnerability requires local access and user interaction to exploit, but successful exploitation grants elevated privileges without requiring additional execution permissions.

Critical Impact

This vulnerability enables attackers to bypass Android's core security mechanism for controlling app installations, potentially allowing malicious applications to be installed on devices without user consent to enable unknown sources.

Affected Products

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

Discovery Timeline

  • 2025-09-04 - CVE-2025-26443 published to NVD
  • 2025-09-08 - Last updated in NVD database

Technical Details for CVE-2025-26443

Vulnerability Analysis

This vulnerability resides in the parseHtml method of HtmlToSpannedParser.java, a component responsible for parsing and rendering HTML content within Android's ManagedProvisioning application. The flaw stems from a logic error (CWE-693: Protection Mechanism Failure) that fails to properly enforce Android's security controls for app installation from unknown sources.

Android's unknown sources restriction is a critical security boundary designed to prevent unauthorized app installations. When this protection is bypassed, attackers can install malicious applications without the user explicitly enabling the "Install from unknown sources" setting in their device security preferences. The vulnerability is particularly concerning because it operates within the ManagedProvisioning context, which handles enterprise device management and provisioning workflows.

Root Cause

The root cause is a logic error in the HTML parsing code that improperly handles certain input conditions. This protection mechanism failure allows the app installation process to proceed without the requisite security checks. The flaw exists in the code path that processes HTML content, where improper validation allows bypassing the normal installation source verification.

Attack Vector

The attack requires local access to the target device and user interaction for successful exploitation. An attacker would need to craft malicious content that, when processed by the vulnerable parseHtml function, triggers the logic error and initiates an unauthorized app installation. The attack scenario could involve:

  1. Delivering specially crafted HTML content to the device through various means (email, messaging, web browsing)
  2. Tricking the user into interacting with the malicious content
  3. The parseHtml function processes the content and bypasses installation restrictions
  4. A malicious application is installed without proper authorization checks

The vulnerability does not require the attacker to have additional execution privileges, making it accessible to lower-privileged threat actors who can deliver content to target devices.

Detection Methods for CVE-2025-26443

Indicators of Compromise

  • Unexpected app installations appearing on devices without user consent
  • Applications installed without the "Install from unknown sources" setting being enabled
  • Unusual activity within the ManagedProvisioning application logs
  • Presence of suspicious APK files that were installed through non-standard channels

Detection Strategies

  • Monitor for anomalous app installation events, particularly those that bypass standard installation prompts
  • Implement Mobile Device Management (MDM) solutions to track application inventory changes
  • Review device logs for unusual ManagedProvisioning activity or HTML parsing events
  • Deploy endpoint detection tools capable of identifying unauthorized package installations on Android devices

Monitoring Recommendations

  • Enable verbose logging for the ManagedProvisioning application where possible
  • Implement centralized log collection for enterprise Android deployments
  • Set up alerts for new application installations that don't match expected software deployment patterns
  • Monitor for privilege escalation indicators on managed Android devices

How to Mitigate CVE-2025-26443

Immediate Actions Required

  • Apply the latest Android security updates from Google immediately
  • Review the Android Security Bulletin June 2025 for patch details
  • Audit installed applications on potentially affected devices for unauthorized installations
  • Consider restricting access to untrusted HTML content on vulnerable devices until patches are applied

Patch Information

Google has released a security patch addressing this vulnerability as part of the June 2025 Android Security Bulletin. The fix is available in the ManagedProvisioning update (commit hash: 69a363847696f6f79f81038cad03c7950bc82054). Organizations should ensure all Android devices running versions 13.0, 14.0, and 15.0 receive this update through their standard patch management processes.

Workarounds

  • Restrict installation of applications to trusted enterprise app stores only via MDM policies
  • Implement network-level filtering to block delivery of potentially malicious HTML content
  • Educate users about the risks of interacting with untrusted content
  • Consider temporarily disabling or restricting the ManagedProvisioning application functionality on critical devices until patches can be applied
bash
# Verify Android security patch level on device
adb shell getprop ro.build.version.security_patch

# Check if ManagedProvisioning package is updated
adb shell dumpsys package com.android.managedprovisioning | grep versionCode

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

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-693
  • Vendor Resources
  • Android ManagedProvisioning Update

  • Android Security Bulletin June 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