You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gdb is a debugger which allows you to see what's going on inside of a program while it executes and control the execution of the program through various commands such as nexti, stepi, continue, etc. You can also inspect and modify the program's memory and registers and walk through the program's source code if it's available.
gdb will be an essential tool throughout this project and is an essential tool in vulnerability research broadly. Through gdb, we are able to diagnose errors in our OS as well as perform root-cause-analysis for any vulnerabilities or issues.