Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Quick Disassembly

Need an address of a function? Open the binary in gdb using:

gdb ./vuln

To find the section of interest use the disas command:

disas main

gdb output

Note the address of the function at the top. Here we see main() starting at 0x08049372.

To quit gdb, simply quit.