Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2024-0044 — a vulnerability affecting Android version 12 & 13 | Kitploit
Tools/GitHubGitHub/hackerronin/cve-2024-0044
Android SecurityPrivilege EscalationPayload GenerationExploitationMobile App PentestingMobile Security
GitHubhackerronin/cve-2024-0044

CVE-2024-0044

a vulnerability affecting Android version 12 & 13

View Repository
642 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2024-0044

Overview

CVE-2024-0044 is a vulnerability discovered in certain Android applications that allows attackers to escalate privileges by exploiting a flaw in the run-as command. This vulnerability can be exploited by crafting a specific payload that grants unauthorized access to application data directories, which should otherwise be inaccessible to the attacker.

Overview

This Bash script automates the exploitation of CVE-2024-0044 by pushing a malicious APK to the target device, extracting the necessary UID, generating a payload, and guiding the user through executing the required commands in an adb shell.

Features

  • APK Push: The script pushes a specified APK to the target device.
  • UID Extraction: It extracts the UID of the target application.
  • Payload Generation: Generates a payload designed to exploit the vulnerability.
  • Interactive Execution: Prompts the user for input at key steps to guide them through the exploitation process.

Prerequisites

  • ADB (Android Debug Bridge): Ensure that adb is installed and properly configured on your system.
  • Rooted Android Device: The target device must be rooted to allow access to the /data/local/tmp directory and execution of the run-as command.

Execution

  1. Save the Script: Save the Bash script as exploit_cve_2024_0044.sh.
  2. Make the Script Executable: Run the following command to make the script executable:
    root@kitploit:~
    chmod +x exploit_cve_2024_0044.sh
    
  3. Usage:
    root@kitploit:~
    ./exploit_cve_2024_0044.sh -P <package_name> -A <apk_file_path>
    
    • -P: The package name of the target application.
    • -A: The path to the malicious APK file.
Download Tool