First Debug Session
Create a session, load a binary, stop at
main, and inspect state.Attach to a Running Process
Join an existing PID with either the MCP attach tool or the local attach helper API.
Interactive Exploit Loop
Start a
pwncli driver, send input, read output, and collect events.Multi-Session Workflows
Keep several debugger or exploit flows active without state collisions.
Build and Helper Processes
Use helper commands, background services, Python helpers, and repo fetches safely.
Recommended order
- Start with First Debug Session.
- Move to Attach to a Running Process when the target is already alive.
- Use Interactive Exploit Loop when you need session-scoped exploit I/O.
- Add Multi-Session Workflows and Build and Helper Processes as your workflow gets more complex.
If you already know the workflow and just need exact tool arguments or return fields, jump to the Reference section instead.