入门
Small session in radare2 debugger
r2 -d /bin/ls
: Opens radare2 with file/bin/ls
in debugger mode using the radare2 native debugger, but does not run the program. You’ll see a prompt (radare2) - all examples are from this prompt.db flag
: place a breakpoint at flag, where flag can be either an address or a function namedb - flag
: remove the breakpoint at flag, where flag can be either an address or a function namedb
: show list of breakpointdc
: run the programdr
: Show registers statedrr
: Show registers references (telescoping) (like peda)ds
: Step into instructiondso
: Step over instructiondbt
: Display backtracedm
: Show memory mapsdk <signal>
: Send KILL signal to childood
: reopen in debug modeood arg1 arg2
: reopen in debug mode with arg1 and arg2
最后更新于
这有帮助吗?