The following labs will require the installation of a couple of tools.
For that reason, feel free to snapshot your Kali and:
-
Put a NAT adapter
-
Remove everything in
/etc/network/interfacesand keep only:
auto lo
iface lo inet loopback
-
Restart it
-
Verify internet connectivity:
ip a
ping 1.1.1.1
Install GEF
sudo apt update
sudo apt install -y gdb git python3-pip python3-venv
bash -c "$(curl -fsSL https://gef.blah.cat/sh)"
## Verify GEF loads
gdb -q -ex "quit"
Install Pwntools
pwntools: CTF framework and exploit development library
sudo pip3 install pwntools --break-system-packages
Ideally, if you successfully installed both tools, you should see something like this:
![[Chapter II - Local/1. Applications/Setup.png]]