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
    • 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-2026-0029

CVE-2026-0029: Google Android Privilege Escalation Flaw

CVE-2026-0029 is a privilege escalation vulnerability in Google Android caused by memory corruption in pkvm.c. Attackers can gain elevated privileges locally without user interaction. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 6, 2026

CVE-2026-0029 Overview

CVE-2026-0029 is a memory corruption vulnerability in the Android kernel's protected KVM (pKVM) hypervisor implementation. Specifically, the flaw exists in the __pkvm_init_vm function within pkvm.c, where a logic error can lead to memory corruption. This vulnerability enables local privilege escalation without requiring any additional execution privileges or user interaction, making it a significant threat to Android device security.

Critical Impact

Local privilege escalation through kernel-level memory corruption in the pKVM hypervisor, potentially allowing attackers to gain elevated system access on affected Android devices.

Affected Products

  • Google Android (all versions prior to March 2026 security patch)

Discovery Timeline

  • 2026-03-02 - CVE-2026-0029 published to NVD
  • 2026-03-03 - Last updated in NVD database

Technical Details for CVE-2026-0029

Vulnerability Analysis

This vulnerability resides in the protected Kernel-based Virtual Machine (pKVM) subsystem of the Android kernel. The pKVM component is responsible for providing hardware-backed isolation between the Android operating system and sensitive workloads. The __pkvm_init_vm function handles the initialization of virtual machine structures within this hypervisor context.

The flaw stems from a logic error in the code path that processes VM initialization requests. When specific conditions are met during VM setup, the logic error can result in memory corruption within kernel space. Because pKVM operates at the hypervisor level with elevated privileges, any memory corruption in this component has severe security implications.

The vulnerability is exploitable locally without requiring special privileges or user interaction. An attacker with the ability to execute code on an affected Android device could leverage this flaw to corrupt kernel memory structures, ultimately achieving privilege escalation to gain elevated system access.

Root Cause

The root cause is a logic error (CWE-269: Improper Privilege Management) in the __pkvm_init_vm function within the pkvm.c source file. The flawed logic fails to properly validate or handle certain conditions during virtual machine initialization, leading to memory corruption. This type of error can occur when control flow decisions do not correctly account for all possible states or input conditions.

Attack Vector

The attack vector is local, meaning an attacker must have the ability to execute code on the target Android device. The exploitation scenario involves:

  1. An attacker gains initial code execution on an Android device (through a malicious app or other means)
  2. The attacker triggers the vulnerable code path in __pkvm_init_vm through system calls or kernel interfaces
  3. The logic error causes memory corruption in kernel space
  4. The attacker leverages the memory corruption to escalate privileges, potentially gaining root access

The vulnerability is particularly concerning because it requires no additional execution privileges (PR:N) and no user interaction (UI:N), allowing for silent exploitation once initial code execution is achieved.

Detection Methods for CVE-2026-0029

Indicators of Compromise

  • Unexpected kernel crashes or system instability related to KVM or hypervisor components
  • Anomalous process behavior indicating privilege escalation attempts
  • Suspicious system call patterns targeting pKVM interfaces
  • Unusual kernel memory access patterns or allocation failures

Detection Strategies

  • Monitor system logs for kernel panics or oops messages referencing pkvm.c or __pkvm_init_vm
  • Deploy endpoint detection solutions capable of monitoring kernel-level activity
  • Implement anomaly detection for processes attempting to interact with hypervisor interfaces
  • Use SentinelOne's behavioral AI to detect privilege escalation attempts

Monitoring Recommendations

  • Enable comprehensive kernel logging on Android devices where feasible
  • Monitor for applications attempting to access pKVM-related interfaces
  • Deploy mobile device management (MDM) solutions with security monitoring capabilities
  • Regularly audit installed applications for potentially malicious behavior

How to Mitigate CVE-2026-0029

Immediate Actions Required

  • Apply the March 2026 Android security patch immediately on all affected devices
  • Prioritize patching for devices with sensitive data or enterprise deployment
  • Review installed applications and remove any untrusted or unnecessary apps
  • Enable automatic security updates where available

Patch Information

Google has addressed this vulnerability in the Android Security Bulletin March 2026. Multiple kernel commits have been released to fix the issue:

  • Kernel Commit 42eff3b2fd3a
  • Kernel Commit 749cf1743eb2
  • Kernel Commit ae242b263718

Device manufacturers should incorporate these patches into their kernel builds and distribute updates to end users. Enterprise administrators should coordinate with device vendors to ensure timely patch deployment.

Workarounds

  • Limit application installations to trusted sources (Google Play Store with Play Protect enabled)
  • Implement strict application whitelisting policies on enterprise-managed devices
  • Use SentinelOne Mobile Threat Defense to detect and prevent exploitation attempts
  • Consider restricting device access for users until patches can be applied in high-security environments

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 Score8.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-269
  • Technical References
  • Android Security Bulletin March 2026
  • Vendor Resources
  • Android Kernel Commit Update

  • Android Kernel Commit Update

  • Android Kernel Commit Update
  • 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
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