
#!/bin/bashset -eecho "[+] apt update & install deps"apt updateapt install -y \ gcc \ git \ python3 \ python3-pip \ ruby \ sudo \ tmux \ vim \ wget \ locales \ dh-autoreconf \ make \ autoconf \ automake# fix locale (for pwndbg)echo "[+] locale setup"sed -i 's/# en_US.UTF-8/en_US.UTF-8/' /etc/locale.genlocale-genexport LC_ALL=en_US.UTF-8export LANG=en_US...