-
Notifications
You must be signed in to change notification settings - Fork 1
Function Triage
김성주 edited this page Apr 22, 2026
·
2 revisions
When analyzing an unknown binary, a reliable first pass is:
./target/release/fission_cli info <binary>
./target/release/fission_cli list <binary>Use list --json if you want machine-readable selection:
./target/release/fission_cli list <binary> --json./target/release/fission_cli disasm <binary> --addr <ADDR> --function./target/release/fission_cli decomp <binary> --addr <ADDR>If you are comparing against the current benchmark / reference surfaces, try the compatibility mode:
./target/release/fission_cli decomp <binary> --addr <ADDR> --ghidra-compat- If you need whole-binary machine-readable artifacts, use
inventory(seedocs/CLI.md). - If you need corpus-scale comparisons and reports, use
benchmark/full_benchmark/.