mobile-pentest

Featured

Mobile app pentest for bug bounty (Android APK + iOS IPA) — runtime-first workflow: install app, proxy through Burp/mitmproxy, drive the UI, capture packets, then test the API exactly like a web target; escalate to decompile (apktool/jadx) and Frida/objection only when traffic is SSL-pinned, encrypted, or absent. Covers APK/IPA decompile for hardcoded secrets + hidden API endpoints + base URLs the web app never exposes, exported-activity and deeplink intent injection, WebView addJavascriptInterface bridge abuse, SSL pinning bypass (objection patchapk / Frida CertificatePinner + checkServerTrusted hooks), OkHttp interceptor chain to recover request signing, JNI native-lib triage, and the quick apktool/grep secret + endpoint sweep. Use when the program scope includes a mobile app, when web recon dries up and you need a fresh attack surface, or when traffic is pinned and you must MitM it.

Testing & QA 4,056 stars 722 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MOBILE APP PENTEST (ANDROID / iOS) Mobile apps talk to the same backend as the web app — but they ship a **different, less-hunted attack surface**: base URLs, API endpoints, header schemes, and hardcoded secrets that web recon never sees. Most hunters skip mobile. That's the edge. > **The whole point:** the APK/IPA is a copy of the client. Decompile it once and you get every endpoint the web JS never references, every staging/internal base URL, and often a live API key sitting in `strings.xml`. Then you attack the backend like any web target. --- ## RUNTIME-FIRST — THE ONE RULE THAT MATTERS **Do NOT start by decompiling.** Decompiling first burns hours recovering crypto you may never need. Default order: ``` 1. Install the app on a device/emulator (in scope confirmed via /scope) 2. Point it at Burp / mitmproxy 3. Drive the real business flows by hand (login, pay, edit profile, share) 4. After each action, check the proxy: are requests visible and replayable? 5. Traffic visible + replayable → STOP. Test the API like a web target. 6. Traffic pinned / encrypted / absent → THEN escalate to apktool/jadx/Frida. ``` Most of your paid mobile bugs (IDOR, auth bypass, business logic) come from step 5 — plain HTTP traffic you replay in Burp. Reversing (apktool/jadx/Frida) is a **support step** to get traffic flowing or to recover a request signer, not the goal. > If Burp already has a stable, replayable request, you are done reversing. Switch to server-side testing. --- ## ...

Details

Author
shuvonsec
Repository
shuvonsec/claude-bug-bounty
Created
4 months ago
Last Updated
2 days ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

mobile-app-security

Metodología de pentest de apps móviles (Android APK / iOS IPA) mapeada a OWASP Mobile Top 10 2024, MASVS 2.x y MASTG v2 (MASWE) — análisis estático (decompile, manifiesto, secretos, IPC), extracción del backend hacia la vertical de API, almacenamiento/cripto (M9/M10), IPC/deep-links (M4), auth/credenciales (M1/M3), comunicación (M5), e instrumentación dinámica operator-assisted (Frida/objection). Úsala cuando el activo en scope sea una app móvil. La usan mobile-recon (estático) y mobile-exploit (confirmación + guía dinámica).

3 Updated yesterday
devPruebaDataunix
Testing & QA Solid

mobile-application-security

Android and iOS application security testing — static and dynamic analysis, APK/IPA inspection, OWASP MASVS/MASTG verification, secure-storage and transport review, and mobile malware triage for authorized assessments

204 Updated 1 weeks ago
Masriyan
Data & Documents Solid

apk-redteam-pipeline

End-to-end Android APK red-team pipeline — automated APK acquisition (Play Store + apkpure + apkmirror fallback), jadx decompilation, secret/URL/JWT/Firebase grep, pinned-cert extraction, exported-component enumeration, Frida runtime instrumentation templates, intent-injection probes. Built from an authorized external red-team engagement where 7 APKs were pulled manually, 4 download attempts truncated, and a hardcoded JWT + 30 internal API endpoints were recovered from one of the apps. Use when target has a mobile app catalogue (Play Store developer page), when you find an APK URL hosted on a web server, or when post-recon mentions "mobile app" in scope.

3,176 Updated 4 days ago
elementalsouls