TsingShuiTsingShuiCommunityยท1 Agent Skills Included

ida-agent-bridge

Reverse engineer binaries through plain-text IDA Pro commands

Exposes IDA Pro decompilation, cross-references, and byte patching as plain-text commands over a simple socket connection. Syncs pseudocode, function indexes, and string tables to local files in real time, eliminating manual clicking through the IDA interface. Lets reverse engineering workflows run through grep, awk, and one-line commands for faster binary analysis.
npx skills add TsingShui/ida-agent-bridge --all -g -y

All Skills in This Repository (1)

Pure Emerald Level Indicators

Frequently Asked Questions

FAQPage Schema
How to install ida-agent-bridge?โ–ผ

Run `npx skills add TsingShui/ida-agent-bridge --all -g -y` in your terminal to install it globally. You also need IDA Pro 9.1+ and Python 3.13+ on your machine.

How to analyze binaries with plain-text commands?โ–ผ

Start the bridge with `ida-bridge yourfile`, then send one-line commands like `!pdc main` or `!axt 0x401320` over a socket to get pseudocode and cross-references instantly.

Does ida-agent-bridge sync decompilation to files?โ–ผ

Yes. Every function's pseudocode is written to a local .c file, and renames, comments, or byte patches update the files and indexes in real time.

Can I run custom Python scripts against the binary?โ–ผ

Yes. Pipe any Python script through the socket connection and the pre-loaded ida-domain API handles functions, strings, xrefs, and type operations.

Does ida-agent-bridge work without the IDA GUI?โ–ผ

Yes. It runs fully headless, so all analysis happens through text commands and exported files without opening the IDA interface.

Related Repositories in Software Engineering

View All in Software Engineeringโ†’