1---2name: mobile-pentest3description: Use when pentesting an Android/iOS app — Frida 17 instrumentation, SSL-pinning & root/jailbreak bypass, Android 14/15 CA injection, exported-component/content-provider abuse, deep-link/WebView chains, biometric bypass, Flutter/React-Native RE4---56# Mobile Application Penetration Testing78## When to Activate910- Android/iOS application security assessment, bug-bounty mobile triage, or app-store reconnaissance11- Need to intercept TLS traffic (SSL/cert pinning, Android 14/15 Conscrypt-APEX trust store, Flutter/RN stacks)12- Bypass root/jailbreak or biometric-gating controls during dynamic analysis13- Enumerate and exploit exported components, content providers, deep links, and WebViews14- Extract secrets from insecure storage (SharedPrefs, SQLite, Keychain, Keystore) and reverse hybrid apps1516## Technique Map1718| Technique | ATT&CK | CWE | Reference | Script |19|-----------|--------|-----|-----------|--------|20| Lab build + Frida 17 server/gadget | T1635 | CWE-1188 | references/environment-interception.md | - |21| Android 14/15 Conscrypt-APEX CA injection | T1521.001 | CWE-295 | references/environment-interception.md | scripts/android_ca_inject.sh |22| SSL/cert-pinning bypass (Java TM/OkHttp/native) | T1521.001 | CWE-295 | references/environment-interception.md | scripts/universal_unpin.js |23| Root detection bypass (RootBeer/native stat) | T1633.001 | CWE-693 | references/environment-interception.md | scripts/universal_unpin.js |24| Exported activity/service/receiver abuse | T1626.001 | CWE-926 | references/android-component-attacks.md | scripts/manifest_attack_surface.py |25| Content-provider SQLi / path traversal (CVE-2025-48609) | T1409 | CWE-22, CWE-89 | references/android-component-attacks.md | scripts/component_fuzz.sh |26| Task hijacking / StrandHogg / TapTrap (USENIX '25) | T1517 | CWE-1021 | references/android-component-attacks.md | scripts/manifest_attack_surface.py |27| Deep-link / intent-redirect / scheme hijack | T1635, T1577 | CWE-939 | references/webview-deeplink-exploitation.md | scripts/component_fuzz.sh |28| WebView JS-interface RCE + file:// theft | T1577 | CWE-749 | references/webview-deeplink-exploitation.md | scripts/component_fuzz.sh |29| OAuth custom-scheme callback interception | T1635 | CWE-940 | references/webview-deeplink-exploitation.md | - |30| Insecure storage (SharedPrefs/SQLite/external) | T1409 | CWE-312 | references/insecure-storage-crypto.md | scripts/manifest_attack_surface.py |31| Keystore/Keychain misuse + dumping | T1634 | CWE-522 | references/insecure-storage-crypto.md | scripts/ios_bypass_suite.js |32| Biometric bypass (BiometricPrompt/LAContext) | T1634 | CWE-287 | references/insecure-storage-crypto.md | scripts/ios_bypass_suite.js |33| iOS jailbreak + JB-detection bypass | T1635 | CWE-693 | references/ios-offensive.md | scripts/ios_bypass_suite.js |34| IPA decrypt / class-dump / URL-scheme abuse | T1409, T1635 | CWE-200 | references/ios-offensive.md | scripts/ios_bypass_suite.js |35| Flutter RE / reFlutter pinning bypass | T1521.001 | CWE-295 | references/crossplatform-re-instrumentation.md | scripts/hermes_triage.py |36| React Native Hermes bytecode decompile | T1640 | CWE-656 | references/crossplatform-re-instrumentation.md | scripts/hermes_triage.py |3738## Quick Start3940```bash41# ---- ANDROID ----42# 0. Pull + statically triage the APK (manifest, secrets, exported surface, framework ID)43adb shell pm path com.target.app # locate split APKs44adb pull /data/app/.../base.apk .45python3 scripts/manifest_attack_surface.py base.apk -o surface.json46jadx -d src base.apk & apktool d base.apk -o decoded4748# 1. Frida 17: match server to host tools; push + run49frida --version # e.g. 17.x -> use matching server50adb push frida-server-17.x-android-arm64 /data/local/tmp/frida-server51adb shell "su -c 'chmod 755 /data/local/tmp/frida-server && /data/local/tmp/frida-server &'"5253# 2. Trust Burp CA on Android 14/15 (APEX is immutable -> Zygote namespace bind-mount)54bash scripts/android_ca_inject.sh 9a5ba575.0 cacert.pem # see reference for cert hashing5556# 3. Spawn target with universal unpinning + root-detection bypass57frida -U -f com.target.app -l scripts/universal_unpin.js --no-pause5859# 4. Hit the exported attack surface from surface.json60bash scripts/component_fuzz.sh com.target.app surface.json6162# ---- iOS ----63frida-ios-dump -o app.ipa com.target.app # decrypt + pull (jailbroken)64frida -U -f com.target.app -l scripts/ios_bypass_suite.js --no-pause # JB + pinning + biometric + keychain6566# ---- HYBRID ----67file decoded/assets/index.android.bundle # "Hermes JavaScript bytecode" => RN68python3 scripts/hermes_triage.py base.apk # detect Flutter/RN, drive reFlutter/hermes-dec69```7071## OPSEC & Detection (summary)7273| Technique | Telemetry / IOC | Detection (Sigma / app-side) | OPSEC note |74|-----------|-----------------|------------------------------|------------|75| Frida instrumentation | `frida-server`/`gadget` ports (27042), `re.frida.server`, suspicious maps regions, named pipes `linjector` | App scans `/proc/self/maps` for `frida`, checks D-Bus port, thread `gum-js-loop`; Play Integrity | Use `frida-gadget` renamed lib, custom port `frida-server -l 0.0.0.0:1337`, magisk-hide / Shamiko |76| CA injection (APEX) | New trust anchor in process trust store; cert CN mismatch on pinned hosts | Network Security Config `<trust-anchors>` excludes user store; pinning catches it | Mount lives only in Zygote ns, vanishes on Zygote crash — re-inject; nothing written to /system |77| SSL-pinning bypass | TLS handshake to proxy IP; cert chain not app-pinned cert | App-side pin failure callbacks fire (if logged); telemetry SDK sees proxy cert | Hook before first request; for Flutter prefer reFlutter patch over runtime to avoid crash loops |78| Root/JB bypass | `getprop ro.debuggable`, su binaries, magisk paths queried | RootBeer/iXGuard SDK reports; SafetyNet/Play Integrity attestation server-side | Bypass client checks only; server-side attestation (Play Integrity / DeviceCheck) is unaffected |79| Exported component abuse | `am start`/`startservice`/`broadcast` from adb; foreign UID intent | App logs unexpected caller UID; `Binder.getCallingUid()` checks | Use on-device malicious app for realism; adb leaves shell history |80| Content-provider traversal | `content query` with `../`; openFile on out-of-dir path | FileProvider canonical-path check; CVE-2025-48609 patched Mar 2026 SPL | URL-encode `..%2f` to dodge naive filters; read-only first |81| TapTrap / task hijack | Transparent activity transition, taskAffinity overlap, animationScale abuse | TapTrap fixed Dec 2025 SPL; check `targetSdk`, taskAffinity="" | Zero-permission; works <Dec-2025 patch; user study: 100% missed at least one variant |82| Keychain/Keystore dump | `keychain_dumper`, frida memory scrape, SecItemCopyMatching hooks | Keychain items with `.biometryCurrentSet` resist hooking; SE-backed keys unextractable | JB device dumps keychain plaintext regardless of ACL; flag SE vs SW keys in report |83| Biometric bypass | LAContext `evaluatePolicy` / BiometricPrompt callback hook | Only works on boolean-result pattern, NOT `SecAccessControl`-gated crypto | Report root cause: auth result not bound to a crypto/keychain operation |8485## Deep Dives8687- **references/environment-interception.md** — Rooted/jailbroken lab, Genymotion/AVD, Magisk+Shamiko, Frida 17 breaking changes (bridge removal, frida-pm, frida-compile), gadget mode for non-root, Android 14/15 Conscrypt-APEX CA injection via Zygote namespace bind-mount, universal SSL-pinning bypass (Java TrustManager/OkHttp/Network Security Config/native BoringSSL), root-detection bypass.88- **references/android-component-attacks.md** — Manifest attack-surface enumeration, exported activity/service/broadcast/provider exploitation, content-provider SQLi & path traversal (CVE-2025-48609 MmsProvider), `intent://` redirection to non-exported components, task hijacking (StrandHogg 1.0/2.0 CVE-2020-0096) and TapTrap animation-driven tapjacking (USENIX Security '25), drozer + adb workflows.89- **references/webview-deeplink-exploitation.md** — `addJavascriptInterface` RCE, `setAllowUniversalAccessFromFileURLs`/`file://` local-file theft, deep-link → WebView open-redirect/XSS chains, `intent://` browsable-activity pivots, OAuth custom-scheme callback hijack (RFC 8252), iOS URL-scheme & Universal Link abuse, one-click browser-to-WebView exploitation.90- **references/insecure-storage-crypto.md** — Android SharedPreferences/SQLite/internal+external storage, Android Keystore misuse (non-hardware-backed keys, no `setUserAuthenticationRequired`), iOS Keychain ACLs & `keychain_dumper`, NSUserDefaults/plist leaks, biometric bypass (BiometricPrompt CryptoObject vs result-only, LAContext `evaluatePolicy`), hardcoded secrets & Firebase/S3 misconfig, MASVS-STORAGE mapping.91- **references/ios-offensive.md** — Jailbreak tooling matrix (palera1n checkm8 A8–A11/T2 iOS 15–18.x, Dopamine A8–A16 iOS 15–16.6.1, Dopamine HideJailbreak), JB-detection bypass (Frida stat/fopen/dlopen hooks + Shadow), IPA decryption (frida-ios-dump/bagbak), class-dump/Swift demangling, entitlements & URL-scheme analysis, Frida-version pinning gotchas.92- **references/crossplatform-re-instrumentation.md** — Flutter Dart-stack interception (reFlutter `libflutter.so` patch of `ssl_crypto_x509_session_verify_cert_chain`, iptables/proxydroid fallback), React Native Hermes bytecode RE (hermes-dec, hbctool patch/reassemble, hermes-decomp, `CatalystInstanceImpl.loadScriptFromAssets` Frida hook), native `.so` JNI/`JNI_OnLoad` analysis in Ghidra/IDA.