Key features
Cross-platform
Runs on macOS, Windows, and Linux. A single JAR file covers all platforms with no platform-specific builds required.
IPA and App Bundle support
Open
.ipa files and .app bundles directly. Malimite unpacks, locates the Mach-O executable, and sends it through the analysis pipeline automatically.Swift class reconstruction
Reconstructs Swift class hierarchies by demangling mangled symbols, giving you a navigable class and function tree instead of raw symbol names.
Resource decoding
Automatically decodes iOS and macOS resources including Info.plist files, assets, and provisioning profiles so you can inspect them alongside decompiled code.
Built-in LLM translation
Send decompiled methods directly to OpenAI or a locally hosted model. Translate obfuscated code into readable summaries, find potential vulnerabilities, or get a plain-English description — without leaving the tool.
Library filtering
Automatically skips decompilation of known Apple framework namespaces so results focus on app-specific logic. Customize the filter list to add or remove libraries.
How it works
Malimite uses Ghidra’s headless analyzer (analyzeHeadless) as its decompilation backend. When you open a file, Malimite:
- Extracts the binary — unpacks the IPA or App Bundle and locates the Mach-O executable inside.
- Invokes Ghidra headlessly — launches
analyzeHeadlessas a subprocess, passing the binary and a custom Ghidra script (DumpClassData.java) that runs inside the Ghidra process. - Streams results via socket — the Ghidra script connects back to Malimite over a local socket and sends class data, Mach-O segment data, decompiled function code, and extracted strings as JSON.
- Stores results in SQLite — all analysis output is written to a local SQLite database (a
_malimite/project.json-anchored project directory next to the original file), so subsequent opens are instant without re-running Ghidra. - Presents a navigable UI — the class tree, decompiled code viewer, resource panel, and LLM integration are all populated from the stored project data.
Supported platforms
Malimite runs on the following operating systems:| Platform | Supported |
|---|---|
| macOS | Yes |
| Windows | Yes |
| Linux | Yes |
Next steps
Installation
Install Malimite via Homebrew or as a precompiled JAR, and configure the Ghidra path.
Analyzing apps
Open an IPA file or App Bundle and navigate the decompiled output.