Static Binaries

Detect the right Architecture
arch=$(uname -m)
[ "$arch" = "x86_64" ] && suffix="amd64" || suffix="386"
pspy
curl
curl -sL https://github.com/DominicBreuker/pspy/releases/latest/download/pspy32 -o pspy64
wget
wget https://github.com/DominicBreuker/pspy/releases/latest/download/pspy64 -O pspy64
Detect the right architecture
[ "$(uname -m)" = "x86_64" ] && pspy="pspy64" || pspy="pspy32" && curl -sL "https://github.com/DominicBreuker/pspy/releases/latest/download/$pspy" -o "$pspy" && chmod +x "$pspy"
linpeas
nmap
chisel
socat
ngrok
busybox
Python

Last updated