1---2name: mobile3description: Mobile Operator Skill Catalog4---56# Mobile Operator Skill Catalog78Mobile is 40% of modern bug-bounty programs and is conspicuously absent9from Strix and XBOW commercial. This catalog covers both platforms with10shared Frida tooling for runtime work.1112## Playbooks — Android1314> **Inline technique reference — not separately loadable skills.** The entries below15> are summarized here for direct use; there is no separate `SKILL.md` to open for16> each. Do NOT call the skill loader on them — apply the technique with your tools17> using this summary and the Workflow in this file.181920| Technique | Use for |21|---|---|22| **apk-triage** | apktool decode + jadx -d for source recovery |23| **manifest-analysis** | exported components, permissions, deeplinks |24| **insecure-storage** | SharedPreferences / SQLite / external storage scans |25| **intent-redirection** | Intent forwarding / pendingIntent abuse |26| **webview-flaws** | JavaScriptInterface, file:// access, mixed content |27| **frida-ssl-pin-bypass** | OkHttp / TrustKit / Cordova pin-bypass scripts |28| **root-detect-bypass** | Common root-detection libraries and their bypasses |2930## Playbooks — iOS3132| Technique | Use for |33|---|---|34| **ipa-triage** | class-dump-z + Hopper; Mach-O headers; entitlements |35| **keychain-acl** | Keychain ACL misconfigurations; `kSecAccessControl` flags |36| **url-scheme-abuse** | Universal links + URL scheme handler attacks |37| **xpc-services** | XPC interface enumeration; unauthenticated XPC services |38| **frida-trust-killer** | SSL Kill Switch + Frida pin-bypass for iOS apps |39| **jailbreak-detect-bypass** | DTAppJailbreakDetectorSwift, Liberty Lite, common patterns |4041## Cross-platform4243| Technique | Use for |44|---|---|45| **frida-bridge** | frida-server install on emulator / jailbroken device; basic scripts |46| **objection-walkthrough** | Objection cheatsheet (env, memory, sqlite, classes) |47| **firebase-misconfig** | Firebase /Firestore RLS / Storage / Auth bypasses |48| **mobile-api-testing** | Burp / Caido proxy → mobile API endpoint enumeration |4950## Workflow51521. **Triage**: jadx for Android, class-dump for iOS. Search strings for53 API endpoints, Firebase config, AWS keys.542. **Static**: AndroidManifest.xml exported components; iOS Info.plist55 URL schemes + entitlements.563. **Dynamic setup**: Frida server on a rooted emulator (Android) or57 jailbroken physical device (iOS); Objection for quick inspection.584. **SSL pin bypass**: Frida script; verify HTTPS now visible in Burp.595. **API enumeration**: re-route the app through the proxy; spider60 reachable endpoints; export to Burp project for later web-recon-style61 testing.626. **Insecure storage**: pull `/data/data/<pkg>/` (Android) or app63 container (iOS); grep for credentials, tokens, PII.647. **Component-level attacks**: send crafted Intents (`adb shell am65 start ...`) or URL-scheme payloads (`xcrun simctl openurl ...`).6667## Tools sandbox6869- adb + emulator / physical device.70- jadx, apktool, dex2jar, jd-gui.71- class-dump, Hopper Disassembler, IDA Free (host-side).72- Frida-server (per device), frida (host), objection.73- mitmproxy / Burp Suite Community / Caido (PR #304 lands the LangChain74 Caido tool bundle).75- MobSF (`mobsf` Docker image) for automated triage when speed matters.