GDB(GNU Debugger) Commands
start
gdb-peda$ start
gdb-peda$ start arg
next(next line)
gdb-peda$ next
gdb-peda$ n
gdb-peda$ n 2
step(into function)
gdb-peda$ step
gdb-peda$ s
gdb-peda$ s 2
continue(to next breakpoint)
gdb-peda$ continue
gdb-peda$ c
set breakpoint
gdb-peda$ break
gdb-peda$ b
gdb-peda$ b *main
gdb-peda$ b *0x401306
list breakpoint
gdb-peda$ info breakpoints
remove breakpoint
gdb-peda$ delete
gdb-peda$ delete 11
gdb-peda$ del
show information
gdb-peda$ info functions
gdb-peda$ info main
gdb-peda$ context
show sassemble code
gdb-peda$ disassemble
gdb-peda$ disas
gdb-peda$ context code
show memory
gdb-peda$ x/1x $rip+0xcc9