Use for authorized macOS and Mach-O reverse engineering including codesign, Objective-C/Swift recovery, endpoint security surfaces, and Apple platform malware analysis.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add xAmirHamza77/ReverseOps-Skill --skill macos-reverse --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Macos Reverse?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/xamirhamza77-macos-reverse)More formats (shields.io, HTML) on the badges page.
---
name: macos-reverse
description: Use for authorized macOS and Mach-O reverse engineering including codesign, Objective-C/Swift recovery, endpoint security surfaces, and Apple platform malware analysis.
---
# macOS / Mach-O Reverse Engineering
## ACTION REQUIRED (execute immediately after reading)
1. `NOW`: Read `../field-journal/precedent-reverse.md`
2. `NOW`: Confirm the target is macOS/Mach-O/App bundle (iOS IPA → `mobile-reverse/`)
3. `NEXT`: tool-index; jtool2/lldb, etc.
4. `ACT`: Signature and load information → static → dynamic (lldb/Frida)
## Applicable scenarios
- Mach-O executables / dylibs / frameworks
- .app bundles, LaunchAgent/Daemon
- Objective-C / Swift symbols and runtime
- Notarization/signing, Hardened Runtime, TCC-related behavior analysis
- macOS malware static/dynamic analysis (jointly with malware-analysis)
## Workflow
### 1. Package and signature
```bash
file target
codesign -dv --verbose=4 target
spctl -a -vv target 2>&1
otool -L target
```
### 2. Static
```text
□ class-dump / swift-demangle / Hopper / Ghidra / IDA
□ Strings and XPC service names, TCC-sensitive APIs
□ LC_LOAD_dylib dependencies and rpaths
```
### 3. Dynamic
```text
□ lldb / Frida
□ Observe with fs_usage / log stream
□ Network: jointly with protocol-reverse or a proxy
```
## Toolchain
| Tool | Purpose |
|------|------|
| otool / nm / codesign | Built into the system |
| Hopper / Ghidra / IDA | Decompilation |
| class-dump / dsdump | ObjC |
| Frida / lldb | Dynamic |
| jtool2 | Mach-O |
## References
- `references/macho-triage.md`
- `../mobile-reverse/` (iOS) `../ghidra-reverse/` `../malware-analysis/`
## Routing context
**Upstream**: MASTER R31
**Downstream**: iOS → mobile-reverse; general samples → malware-analysis
## Task completion self-check
- [ ] Did I record the signature/Hardened Runtime status?
- [ ] Are there address-level/symbol-level conclusions?
- [ ] Checklist?
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!