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
apkprobe — APK decompiler & secrets scanner for Android security research! Extract leaked API keys, hardcoded credentials, endpoints from APK files. apk2url, apk leaks detection. Bug bounty & pentesting tool. Alternative to apkleaks, MobSF! | Kitploit
Tools/GitHubGitHub/wadingporque/apkprobe
Android SecurityStatic AnalysisVulnerability AnalysisReverse EngineeringInformation GatheringPenetration TestingMobile SecuritySecret Detection
GitHubwadingporque/apkprobe

apkprobe

APK decompiler & secrets scanner for Android security research! Extract leaked API keys, hardcoded credentials, endpoints from APK files. apk2url, apk leaks detection. Bug bounty & pentesting tool. Alternative to apkleaks, MobSF!

4149 months 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
View Repository

APKprobe

Android Python License

APK decompiler and secrets scanner for Android security research. Automatically extract API keys, endpoints, tokens, and other leaked credentials from Android applications.

Works with .apk, .xapk, .dex, .jar, .class, .smali, .zip, .aar, .arsc, .aab files.

Perfect for apk2url extraction, apk leaks detection, and Android reverse engineering. Used by security researchers, penetration testers, and bug bounty hunters.


Table of Contents

  • Why APKprobe?
  • Features
  • Installation
  • Quick Start
  • Usage Examples
  • Supported Decompilers
  • Custom Rules
  • Performance
  • Alternatives
  • Contributing
  • FAQ
  • License

Why APKprobe?

Extract Leaked API Keys & Secrets

Most Android apps contain hardcoded secrets. Developers often hide AWS keys, Firebase tokens, API credentials directly in the code, thinking obfuscation will protect them. It won't.

APKprobe decompiles the APK, runs deobfuscation, and scans everything with regex patterns to find:

  • Cloud credentials (AWS, GCP, Azure)
  • API keys (Stripe, Twilio, SendGrid, etc.)
  • OAuth tokens & secrets
  • Database connection strings
  • Private keys & certificates

Find Hidden Endpoints (apk2url)

Extract all URLs, API endpoints, and backend routes from any Android app. Perfect for:

  • Bug bounty recon
  • Penetration testing
  • Attack surface mapping

Discover forgotten dev/staging endpoints, internal APIs, and admin panels that shouldn’t be public.


Reverse Engineering Made Easy

Quickly locate security-critical code:

  • SSL pinning implementations
  • Root detection functions
  • Anti-tampering checks
  • Encryption routines

Speed up your Frida scripts by knowing exactly where to hook.


Features

  • Multi-decompiler support — JADX, APKTool, CFR, Procyon, Krakatau, Fernflower
  • Automatic deobfuscation — better results on protected apps
  • 250+ built-in patterns — AWS, GCP, Azure, generic API keys, URLs
  • Custom rules — JSON, YAML, TOML, gitleaks format
  • Batch processing — scan hundreds of APKs at once
  • Fast — parallel decompilation and scanning
  • Multiple output formats — JSON, YAML, text

Installation

root@kitploit:~
git clone https://github.com/wadingporque/apkprobe.git
cd apkprobe
python setup.py install

Or install in development mode:

root@kitploit:~
pip install -e .

Quick Start

Scan an APK for secrets:

root@kitploit:~
apkprobe target.apk

Extract URLs and endpoints:

root@kitploit:~
apkprobe target.apk -r endpoints

Scan for AWS/cloud credentials:

root@kitploit:~
apkprobe target.apk -r aws gcp azure

Usage Examples

Basic scan

root@kitploit:~
apkprobe app.apk

Scan multiple files

root@kitploit:~
apkprobe app1.apk app2.apk app3.xapk

Use multiple decompilers for better coverage

root@kitploit:~
apkprobe --jadx --apktool --cfr app.apk

Output to JSON

root@kitploit:~
apkprobe app.apk -o results.json -f json

Custom rules

root@kitploit:~
apkprobe app.apk -r /path/to/rules.json

Batch scan with cleanup

root@kitploit:~
apkprobe -r aws endpoints -o output.yaml -f yaml -c *.apk
All CLI options
root@kitploit:~
apkprobe [OPTIONS] FILES...

Options:
  -r, --rules FILES       Rule files or built-in sets (aws, gcp, azure, endpoints, etc.)
  -o, --output FILE       Output file path
  -f, --format FORMAT     Output format: json, yaml, text
  -g, --groupby TYPE      Group by: file, locator, both
  -c, --cleanup           Remove decompiled files after scan
  -q, --quiet             Suppress output

Decompilers:
  --jadx, -J              Use JADX (default)
  --apktool, -A           Use APKTool
  --cfr, -C               Use CFR
  --procyon, -P           Use Procyon
  --krakatau, -K          Use Krakatau
  --fernflower, -F        Use Fernflower

Advanced:
  -d, --deobfuscate       Enable deobfuscation
  -w, --working-dir DIR   Working directory
  --timeout SECONDS       Scan timeout

Supported Decompilers

Use multiple decompilers together for maximum coverage — different tools handle obfuscation differently.


Custom Rules

APKprobe supports multiple rule formats. Create your own or use existing pattern databases.

Supported formats

FormatExtension
APKprobe JSON.json
Gitleaks.toml
secret-patterns-db.yaml

Example rule (JSON)

root@kitploit:~
{
    "id": "stripe-api-key",
    "name": "Stripe API Key",
    "pattern": "sk_live_[a-zA-Z0-9]{24}",
    "confidence": "high"
}

Built-in rule sets

  • aws — AWS credentials, S3 buckets, ARNs
  • gcp — Google Cloud API keys, service accounts
  • azure — Azure connection strings, keys
  • endpoints — URLs, API routes, webhooks
  • generic — Common API key patterns
  • gitleaks — Full gitleaks ruleset

Performance

APKprobe uses parallel processing for both decompilation and scanning.

root@kitploit:~
# Use 8 workers for scanning
apkprobe app.apk -smw 8

# Use multiprocessing instead of threading
apkprobe app.apk -sct process

Tips:

  • Decompilation is RAM-heavy — limit workers on low-memory systems
  • Scanning is CPU-bound — more workers = faster results
  • Use --cleanup to save disk space on batch jobs

Alternatives

APKprobe is similar to these tools:

  • apkleaks — Python, regex-based
  • jadx — Java decompiler (no scanning)
  • apktool — Smali disassembler
  • MobSF — Full mobile security framework

APKprobe combines decompilation + scanning in one tool with support for multiple decompilers.


Contributing

Found a bug? Have an idea? PRs welcome.

root@kitploit:~
git clone https://github.com/wadingporque/apkprobe.git
cd apkprobe
python setup.py install

FAQ

How do I extract URLs from an APK file?

Use APKprobe with the endpoints ruleset to extract all URLs, API endpoints, and backend routes:

root@kitploit:~
apkprobe app.apk -r endpoints -o urls.json

This performs apk2url extraction automatically after decompilation.

How do I find leaked API keys in Android apps?

APKprobe scans decompiled code for hardcoded secrets using 250+ regex patterns:

root@kitploit:~
apkprobe app.apk -r aws gcp azure

It detects AWS keys, Firebase tokens, Stripe keys, and other leaked credentials.

What's the best APK decompiler for security research?

APKprobe supports multiple decompilers — use them together for best results:

root@kitploit:~
apkprobe --jadx --apktool --cfr app.apk

Different decompilers handle obfuscation differently, so combining them increases coverage.

Is APKprobe good for bug bounty?

Yes. APKprobe is designed for Android penetration testing and bug bounty recon. It quickly maps the attack surface by extracting endpoints, API keys, and hardcoded secrets from target apps.


Resources

  • OWASP Mobile Security Testing Guide — comprehensive mobile app security testing
  • Android Security Documentation — official security best practices
  • HackerOne Android Bug Bounty Programs — find Android targets

Author

wadingporque


License

MIT License. See LICENSE for details.

Download Tool
DecompilerTypeNotes
JADXJavaDefault, best for most APKs
APKToolSmaliResources + manifest
CFRJavaGood for obfuscated code
ProcyonJavaAlternative decompiler
KrakatauJavaHandles edge cases
FernflowerJavaIntelliJ's decompiler
Simple key-value
.json