Menu

I built a CLI tool that lets AI agents exploit binaries
📰
0

I built a CLI tool that lets AI agents exploit binaries

Reddit r/rust·u/Nabeen0x01·5 months ago
#SfYRghfM
#built#exploit#binary#strategy#libc#photo
Reading 0:00
15s threshold

Got tired of copy-pasting readelf, checksec, objdump, and strings output into LLMs and hoping for the best.

So I built seg — one command to analyze an ELF binary and generate a structured JSON/Markdown report. Feed it to any LLM, get an actual exploit strategy back.

What it extracts: - Protections (NX, PIE, canary, RELRO) - Dangerous functions (gets, strcpy, system, etc.) - Symbols, GOT/PLT entries - Disassembly + entry point analysis - Libc identification via libc.rip - Exploitation hints + suggested strategy

Written in Rust.

GitHub: https://github.com/pwnwriter/seg

Would love feedback from anyone doing CTFs or binary exploitation.

Read More