Skip to main content
This is the canonical first-run debugger workflow for pwno-mcp.
1

Create a named debug session

2

Load the target binary

3

Set a breakpoint at main

4

Run the program

5

Inspect the current state

6

Step once

At this point you should have a stable named session you can continue using for more breakpoints, raw execute commands, or an interactive pwncli flow.

Useful follow-ups

  • use finish to run out of the current function
  • use until to run until a location or next source line
  • use gdb_interrupt if the inferior is still running and you need to regain control
See Debug Sessions Reference for the full command set.