Skill60 estrellas del repoactualizado 1mo ago
ipsw
Use this skill when reverse-engineering Apple platforms with the ipsw CLI — analyzing iOS/macOS Mach-O binaries, disassembling functions inside dyld_shared_cache (DSC), dumping Objective-C/Swift headers from private frameworks, extracting kernelcaches, KEXTs, SEP, iBoot, or DeviceTree from IPSWs/OTAs, decompiling/querying sandbox profiles (SBPL), querying entitlements, symbolicating crashes/panics, diffing two firmware versions, mounting IPSW DMGs, or downloading Apple firmware. Triggers on iOS/macOS internals, kernel research, dyld_shared_cache, KEXT diffing, sandbox/Seatbelt profile analysis (SBPL/SBASM/sandboxd), capability/IOKit queries, entitlement lookup, class-dump, IMG4/AEA handling, or vulnerability research on Apple platforms.
Instalar en Claude Code
Copiargit clone --depth 1 https://github.com/blacktop/ipsw-skill /tmp/ipsw && cp -r /tmp/ipsw/ipsw ~/.claude/skills/ipswDespués abre una sesión nueva de Claude Code; el skill carga automáticamente.
Definición
SKILL.md
# IPSW - Apple Reverse Engineering Toolkit **Install:** `brew install blacktop/tap/ipsw` (Linux: see https://github.com/blacktop/ipsw#install) ## Choose Your Workflow | Goal | Start Here | |------|------------| | Download/extract firmware | [Firmware Acquisition](#firmware-acquisition) | | Reverse engineer userspace | [Userspace RE](#userspace-re-dyld_shared_cache) | | Analyze kernel/KEXTs | [Kernel Analysis](#kernel-analysis) | | Research entitlements | [Entitlements](#entitlements) | | Dump private API headers | [Class Dump](#class-dump) | | Analyze standalone binary | [Mach-O Analysis](#mach-o-analysis) | | Diff two IPSWs/OTAs | [Firmware Diffing](#firmware-diffing) | | Symbolicate a crash / panic | [Symbolication](#symbolication) | | Parse IMG4/AEA/iBoot/SEP | [Firmware Components](#firmware-components-img4-aea-iboot-sep) | | Decompile / query sandbox profiles | [Sandbox Profile Analysis](#sandbox-profile-analysis-sb) | | Inspect / mount an IPSW | [IPSW Inspection](#ipsw-inspection) | --- ## Firmware Acquisition ```bash # Download latest IPSW for device ipsw download ipsw --device iPhone16,1 --latest # Download with automatic kernel/DSC extraction ipsw download ipsw --device iPhone16,1 --latest --kernel --dyld # Extract components from local IPSW ipsw extract --kernel iPhone16,1_18.0_Restore.ipsw ipsw extract --dyld --dyld-arch arm64e iPhone16,1_18.0_Restore.ipsw # Remote extraction (no full download) ipsw extract --kernel --remote <IPSW_URL> ``` See [references/download.md](references/download.md) for device identifiers and advanced options. --- ## Userspace RE (dyld_shared_cache) **macOS DSC location:** - macOS 14+: `/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_arm64e` - macOS 13 and earlier: `/System/Library/dyld/dyld_shared_cache_arm64e` Examples below assume: ```bash export DSC=/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_arm64e ``` ### Essential Commands | Command | Purpose | |---------|---------| | `dyld a2s <DSC> <ADDR>` | Address → symbol (triage crash LR/PC) | | `dyld symaddr <DSC> <SYM> --image <DYLIB>` | Symbol → address | | `dyld disass <DSC> --vaddr <ADDR>` | Disassemble at address | | `dyld disass <DSC> --symbol <SYM> --image <DYLIB>` | Disassemble by symbol | | `dyld xref <DSC> <ADDR> --all` | Find all references to address | | `dyld dump <DSC> <ADDR> --size 256` | Dump raw bytes at address | | `dyld str <DSC> "pattern" --image <DYLIB>` | Search strings | | `dyld objc --class <DSC> --image <DYLIB>` | List ObjC classes | | `dyld extract <DSC> <DYLIB> -o ./out/` | Extract dylib for external tools | ### Common Workflow ```bash # 1. Resolve address from crash/trace ipsw dyld a2s $DSC 0x1bc39e1e0 # → -[SomeClass someMethod:] + 0x40 # 2. Disassemble around that address ipsw dyld disass $DSC --vaddr 0x1bc39e1e0 # 3. Find who calls this function ipsw dyld xref $DSC 0x1bc39e1a0 --all # 4. Extract string/data referenced in disassembly ipsw dyld dump $DSC 0x1bc39e200 --size 64 ``` See [references/dyld.md](references/dyld.md) for complete DSC commands. --- ## Kernel Analysis ```bash # List all KEXTs ipsw kernel kexts kernelcache.release.iPhone16,1 # Extract specific KEXT ipsw kernel extract kernelcache sandbox --output ./kexts/ # Dump syscalls ipsw kernel syscall kernelcache # Diff KEXTs between versions ipsw kernel kexts --diff kernelcache_17.0 kernelcache_18.0 ``` See [references/kernel.md](references/kernel.md) for KEXT extraction and kernel analysis. --- ## Entitlements ```bash # Single binary entitlements ipsw macho info --ent /path/to/binary # Build searchable database from IPSW ipsw ent --sqlite ent.db --ipsw iOS18.ipsw # Query database ipsw ent --sqlite ent.db --key "com.apple.private.security.no-sandbox" ipsw ent --sqlite ent.db --key "platform-application" ipsw ent --sqlite ent.db --key "com.apple.private.tcc.manager" ``` See [references/entitlements.md](references/entitlements.md) for common entitlements and query patterns. --- ## Class Dump Dump Objective-C headers from binaries or dyld_shared_cache: ```bash # Dump all headers from framework in DSC ipsw class-dump $DSC SpringBoardServices --headers -o ./headers/ # Dump specific class ipsw class-dump $DSC Security --class SecKey # Filter by pattern ipsw class-dump $DSC UIKit --class 'UIApplication.*' --headers -o ./headers/ # Include runtime addresses (for hooking) ipsw class-dump $DSC Security --re # Swift class-dump (separate command, same shape) ipsw swift-dump $DSC SwiftUI --headers -o ./headers/ ``` See [references/class-dump.md](references/class-dump.md) for filtering and output options. --- ## Mach-O Analysis ```bash # Full binary info ipsw macho info /path/to/binary # Disassemble function ipsw macho disass /path/to/binary --symbol _main # Get entitlements and signature ipsw macho info --ent /path/to/binary ipsw macho info --sig /path/to/binary ``` See [references/macho.md](references/macho.md) for complete Mach-O commands. --- ## Firmware Diffing Compare two IPSWs, OTAs, or patched OTA directories — surfaces added/removed binaries, entitlement changes, function-starts deltas, and KEXT diffs. ```bash # Diff two IPSWs (markdown report) ipsw diff old.ipsw new.ipsw --output ./diff/ --markdown # Include firmware components (iBoot, SEP, etc.) and launchd configs ipsw diff old.ipsw new.ipsw --fw --launchd --output ./diff/ --markdown # Diff with KDKs for kernel symbol resolution ipsw diff old.ipsw new.ipsw --output ./diff/ --markdown \ --kdk <OLD_KDK>/System/Library/Kernels/kernel.release.t6031 \ --kdk <NEW_KDK>/System/Library/Kernels/kernel.release.t6031 # Entitlement-only diff ipsw diff old.ipsw new.ipsw --ent --output ./diff/ # Diff two OTAs (macOS 14+ AEA-encrypted; supply key DB) ipsw diff old.ota new.ota --key-db keys.json --output ./diff/ --markdown ``` --- ## Symbolication ```bash # Symbolicate a panic / crash log against an IPSW ipsw symbolicate panic-full-2024-03-21.ips iPhone16,1_18.0