ToCode exports a binary, IDA database, or Android APK into a source-like project tree: raw recovered C (or Java for APKs), matching assembly, function summaries, section data, optional IDA database, and metadata that coding agents can read directly.
AI models are strong at coding, especially when they can traverse large codebases and accumulate context with subagents and other strategies. When we use these agents to assist with reverse engineering, we usually provide tools through MCP or other means so the coding agent can learn and build strategies around tools such as IDA and r2. This approach adds limitations and constraints to how the agent behaves, and it increases the need for deep, complex reasoning.
There should be a better way to improve this scenario so that even smaller models can perform well on this kind of work.
The idea behind ToCode is simple: use a disassembler such as IDA to create a source-code-like project for a given binary, with a pre-built AGENTS.md so most coding agents start with precomputed context. ToCode also produces rich .json files with important metadata.
With this approach, even tiny models can perform well without being connected to MCP-like tool calls, because ToCode provides exactly what coding agents are good at working with: code.
The exported project contains the following structure:
sample_decompiler/
AGENTS.md
CLAUDE.md
src/raw/**/*.c
src/raw/**/*.asm
src/raw/**/*.summary
src/raw/<package>/**/*.java # Only for APK files (replaces the .c/.asm/.summary tree)
include/*.h
include/*.types.h
data/*.bin
data/variables.json
data/variables_interesting.json
data/apk/<apk>/** # Only for APK files: every non-code APK entry, verbatim
data/res/<apk>/**/*.xml # Only for APK files: binary XML resources decoded to text
data/resources.json # Only for APK files: decoded resources.arsc
lib/<abi>/*.so # Only for APK files: extracted native libraries
native/<abi>/<lib>/ # Only for APK files: full nested ToCode export per .so
AndroidManifest.xml # Only for APK files
manifest.json # Only for APK files
classes.json # Only for APK files
package-graph.json # Only for APK files (replaces cluster-graph.json)
native-libs.json # Only for APK files
function-index.json
functions.json
types.json
sections.json
strings.json
imports.json
exports.json
relocations.json
reachable.json
cluster-graph.json
triage.json
project.json
export-manifest.json
tocode.log
| Path | Description |
|---|---|
src/raw |
Decompiled C-like output, assembly, and summaries. Grouped by call-graph cluster, or by the original source file/directory when the binary has debug info (DWARF). |
src/raw/<package>/**/*.java |
Only for APK files. Decompiled Java (ASC + androguard DAD), one file per class, folders follow Java packages; inner classes are Outer$Inner.java. No clustering, no .summary files. |
include |
Generated headers, including *.types.h with the structs/enums/typedefs recovered from the binary. Not written for APK files. |
data |
Raw section dumps and variable metadata. |
data/apk, data/res, data/resources.json |
Only for APK files. Every non-code entry of each APK in the set verbatim, res/**/*.xml decoded from binary XML, and the decoded resources.arsc tables. |
lib/<abi>/*.so |
Only for APK files. Every native library found in the APK set (all ABIs), always extracted. |
native/<abi>/<lib>/ |
Only for APK files. A complete nested ToCode export for each native library (own AGENTS.md with an Origin section naming the APK, src/raw/*.c, functions.json, exports.json, ...). Skipped with --no-native. |
AndroidManifest.xml / manifest.json |
Only for APK files. Decoded manifest and its parsed form: package, versions, SDKs, permissions, components with intent filters and exported state, application attributes, split manifests. |
classes.json |
Only for APK files. Every class with superclass, interfaces, access flags, fields, methods, source file, and Java file/line ranges. |
package-graph.json |
Only for APK files. Inter-package call graph (the APK counterpart of cluster-graph.json). |
native-libs.json |
Only for APK files. ABI, hash, source APK, export directory, and decompilation status of every native library. |
types.json |
Catalog of types recovered from the binary's debug info or type library, with C declarations. |
*.json |
Functions (with recovered types and original source decl file/line), sections, strings, imports, exports, relocations, reachability, clusters, triage, project metadata, and export manifest. For APK files the same documents describe DEX methods, strings, framework imports, exported components/JNI methods, and reachability from manifest components; relocations.json, cluster-graph.json, and types.json are not written. |
tocode.log |
Export log with checkpoint, resume, and per-function render history. For APK files it also carries the native library export status. |
AGENTS.md / CLAUDE.md |
Instructions for agents analyzing the exported binary. |
src/tree |
Optional scanner-friendly C output when --tree is used. |
Three backends are supported, selected with --backend (default auto, which prefers them in this order):
-
IDA – uses the ida-domain/idapro Python libraries (best decompilation quality).
-
radare2 – uses r2pipe with the r2ghidra decompiler.
-
angr – a pure-Python fallback with no external tooling, so ToCode still runs when neither IDA nor radare2 is available. It is an optional extra (it is large: ~450 MB of native dependencies), so it is not installed by default. Get it in any of these ways:
bash ./install.sh --all # recommended: installs every backend pip install tocode-cli[angr] # or, with pip directly uv tool install --force --editable '.[angr]' # or, from a local checkout
The angr export is structurally identical to the others (same files and metadata); its pseudo-C is lower quality than Hex-Rays or r2ghidra.
-
Binary Ninja, is opt-in (
--backend binja) and never chosen byauto, because it drives a running Binary Ninja instead of reading a file. See Binary Ninja below.
Other disassemblers may be added in the future.
tocode app.apk (also .apks/.xapk bundles) uses ASC (droidasc, a core dependency) for the DEX side and the regular native backends for every shared object in the package:
src/raw/<package>/<Class>.java: one decompiled Java file per class, folders follow Java packages (no clustering, no summaries).AndroidManifest.xml+manifest.json: decoded and parsed manifest (permissions, components with intent filters and exported state, application attributes, split manifests).classes.json,functions.json,function-index.json,strings.json,imports.json,exports.json(exported components + JNI methods),reachable.json(from manifest components),package-graph.json,sections.json,triage.json.lib/<abi>/*.so: every native library extracted;native/<abi>/<lib>/: a complete nested ToCode export per library (all ABIs), produced on a background thread while the DEX side decompiles.native-libs.jsonrecords the status of each (each library runs in its own process; one failing or being OOM-killed never fails the APK export, and the native thread waits forTOCODE_APK_NATIVE_MIN_FREE_MB, default 1024 MB, of free memory before each library). Pass--no-nativeto skip the native decompilation (libraries are still extracted).--backendpicks the native backend (auto/ida/r2/angr;binjais not supported for APKs).data/apk/**: every other APK entry verbatim;data/res/**/*.xmlanddata/resources.json: decoded binary XML andresources.arsc.
base.apk automatically merges sibling split_*.apk files (config and ABI splits) into the same project; --no-splits exports it alone. The default output directory is <manifest package>_decompiler.
tocode base.apk # DEX + all splits + native libs (IDA/r2/angr)
tocode app.apks --no-native -j 4 # bundle, DEX/Android side onlyToCode supports Windows, Linux, and macOS with Python 3.10 or newer.
On Windows PowerShell:
powershell -ExecutionPolicy Bypass -File .\install.ps1On Linux or macOS:
bash ./install.shAdd --all or --full (PowerShell: -Full) to also install the angr fallback backend, so ToCode works out-of-the-box even without IDA or radare2:
bash ./install.sh --allManual setup (requires uv):
git clone https://github.com/buzzer-re/ToCode
cd ToCode
uv sync --locked
uv tool install --force --editable .tocode firmwareX.bin -o firmwareX_decompiled/
cd firmwareX_decompiled/
codex
# Inside your agent shell, type your goals, e.g.: "Give me a brief overview of the boot process of this firmware."
Interrupted exports save progress automatically. Rerun the same command to resume from cached function renders, or add `--restart` to ignore the saved checkpoint and start over.
tocode firmwareX.bin.i64 -o firmwareX_decompiled/
...
The Binary Ninja backend exports the binary you already have open in Binary Ninja, emitting its Pseudo C. It does not need a Binary Ninja headless license: ToCode connects to the running GUI over a small RPC bridge.
Since I don't have access to Binary Ninja headless, run this script once in Binary Ninja's Python console to open an RPC server ToCode can connect to:
import threading, rpyc, binaryninja
from rpyc.utils.server import ThreadedServer
class ToCodeService(rpyc.Service):
exposed_binaryninja = binaryninja
def exposed_bv(self):
return bv # the currently focused view
def exposed_eval(self, cmd):
return eval(cmd)
server = ThreadedServer(
ToCodeService,
hostname="127.0.0.1",
port=18812,
protocol_config={"allow_all_attrs": True},
)
threading.Thread(target=server.start, daemon=True).start()
print("ToCode RPC server listening on 127.0.0.1:18812")It exposes the whole Binary Ninja Python VM with no authentication, so keep it bound to 127.0.0.1. The binja-headless plugin exposes the same interface if you prefer a packaged option.
Then drive it from ToCode:
tocode --backend binja --list-binja # list open views with an index
tocode --backend binja -o out/ # export the focused view
tocode --backend binja --binja-view 1 -o out/ # export a specific view by index
tocode --backend binja --all-views -o out/ # export every open view, one folder eachUse --binja-host / --binja-port (or TOCODE_BINJA_HOST / TOCODE_BINJA_PORT; default 127.0.0.1:18812) to reach Binary Ninja on another machine.
Already scripting inside Binary Ninja? Skip the server and export the live view directly:
import sys; sys.path.insert(0, "/path/to/ToCode/src")
from tocode import export_from_binaryview
export_from_binaryview(bv, "out/")This tool was built using agentic coding, so if you plan to help, I strongly advise doing the same.
Before changing ToCode, have Python, uv, ruff, mypy, pytest, and compileall available. For backend work, also have IDA or radare2 installed, depending on what you are touching.
The main instructions for agents are in AGENTS.md. Read it before starting, and make sure the local quality gate passes before proceeding.
Run the local CI gate before opening a PR:
./ci-local.shOn Windows PowerShell:
powershell -ExecutionPolicy Bypass -File .\ci-local.ps1