CTF Support
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Debuggers

gdb

The GNU Debugger is used to debug *NIX applications.

Installation on Debian based systems apt install gdb

Usage

To attach gdb to a running process, the following command can be used.

gdb -p `pidof <name of program>`

pwndbg

To make gdb more usable, pwndbg can be used.

To install pwndbg run the following.

git clone https://github.com/pwndbg/pwndbg
cd pwndbg
./setup.sh

radare2

Radare2 is a free re toolchain.

To install radare2, run the following.

git clone https://github.com/radareorg/radare2
cd radare2 ; sys/install.sh

x64dbg

x64dbg is an open-source x64/x32 debugger for Windows.

Immunity Debugger

Immunity Debugger is a Windows debugger.

OllyDbg

OllyDbg is a 32bit Windows debugger.