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

CVE-2020-8913: Android Play Core Library RCE Vulnerability

CVE-2020-8913 is a local arbitrary code execution flaw in Android Play Core Library that enables attackers to execute code and access application data. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-8913 Overview

A local arbitrary code execution vulnerability exists in the SplitCompat.install endpoint in Android's Play Core Library versions prior to 1.7.2. This vulnerability allows a malicious attacker to create an APK that targets a specific application. If a victim installs this malicious APK, the attacker can perform a directory traversal attack, execute code as the targeted application, and access the targeted application's data on the Android device.

Critical Impact

Attackers can achieve arbitrary code execution within the context of any vulnerable application using the Play Core Library, gaining access to sensitive application data and potentially compromising user privacy and device security.

Affected Products

  • Android Play Core Library versions prior to 1.7.2

Discovery Timeline

  • 2020-08-12 - CVE CVE-2020-8913 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-8913

Vulnerability Analysis

This vulnerability is classified under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory - Path Traversal) and CWE-281 (Improper Preservation of Permissions). The flaw resides in the SplitCompat.install endpoint within Android's Play Core Library, which fails to properly validate file paths during the installation of dynamic feature modules.

The Play Core Library enables applications to download and install dynamic feature modules on demand. However, due to insufficient path validation in versions before 1.7.2, an attacker can craft a malicious APK containing directory traversal sequences. When the victim installs this APK, the attacker can write arbitrary files to directories owned by the targeted application, ultimately achieving code execution within the application's context.

Root Cause

The root cause of this vulnerability is improper input validation in the SplitCompat.install function. The endpoint does not adequately sanitize file paths contained within APK modules, allowing directory traversal sequences (such as ../) to escape the intended installation directory. This path traversal weakness (CWE-22) combined with improper permission handling (CWE-281) enables an attacker to overwrite critical application files or inject malicious code.

Attack Vector

The attack requires user interaction where the victim must install a malicious APK crafted by the attacker. The malicious APK is designed to target a specific application that uses a vulnerable version of the Play Core Library. Once installed, the attack chain proceeds as follows:

  1. The malicious APK contains specially crafted file paths with directory traversal sequences
  2. When the Play Core Library processes these modules via SplitCompat.install, it fails to validate the paths
  3. The attacker's payload is written to arbitrary locations within the targeted application's data directory
  4. The attacker achieves code execution as the targeted application
  5. The attacker gains access to all data and permissions held by the targeted application

The vulnerability is particularly dangerous because it affects any application using vulnerable versions of the Play Core Library, potentially impacting millions of Android users across thousands of apps.

Detection Methods for CVE-2020-8913

Indicators of Compromise

  • Unexpected APK installations from untrusted sources attempting to interact with applications using the Play Core Library
  • Unusual file system activity in application-specific directories, particularly files appearing outside expected module directories
  • Applications exhibiting unexpected behavior or accessing resources they typically wouldn't access
  • Log entries showing path traversal patterns (sequences containing ../) in file operations related to dynamic module installation

Detection Strategies

  • Monitor for APK installations from unknown or untrusted sources on Android devices
  • Implement application integrity checking to detect unauthorized modifications to application files
  • Use mobile threat defense solutions to identify malicious APKs attempting to exploit Play Core Library vulnerabilities
  • Analyze application dependency manifests to identify apps using vulnerable Play Core Library versions (< 1.7.2)

Monitoring Recommendations

  • Deploy endpoint detection and response (EDR) solutions capable of monitoring Android device activity
  • Enable detailed logging for file system operations on managed devices
  • Implement network monitoring to detect communication from potentially compromised applications
  • Regularly audit installed applications and their dependencies for known vulnerabilities

How to Mitigate CVE-2020-8913

Immediate Actions Required

  • Update the Play Core Library to version 1.7.2 or later in all Android applications
  • Audit all applications in your organization's mobile fleet to identify those using vulnerable Play Core Library versions
  • Advise users to avoid installing APKs from untrusted sources
  • Consider temporarily disabling dynamic feature module installations if immediate patching is not possible

Patch Information

Google has addressed this vulnerability in Play Core Library version 1.7.2. Application developers must update their dependency to the patched version and release updated applications to users. Detailed release notes are available in the Android Developer Release Notes.

For technical details on the vulnerability discovery, refer to the Oversecured Blog Post.

Workarounds

  • Restrict application installations to only those from trusted sources such as Google Play Store
  • Implement mobile device management (MDM) policies to control which applications can be installed
  • Educate users about the risks of side-loading APKs from untrusted sources
  • Consider using application sandboxing solutions to limit the impact of potential exploitation
bash
# Gradle dependency update example
# Update your app's build.gradle file to use the patched version:
implementation 'com.google.android.play:core:1.7.2'

# Verify the dependency version after update
./gradlew dependencies | grep play-core

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechAndroid Play Core Library

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.40%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-281

  • CWE-22
  • Technical References
  • Oversecured Blog Post
  • Vendor Resources
  • Android Developer Release Notes
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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