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
curl
curl -sL https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh -o linpeas.sh
wget
wget https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh -O linpeas.sh
nmap
curl
curl -sL https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/nmap -o nmap
wget
wget https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/nmap -O nmap
chisel
curl
curl -sL https://github.com/jpillora/chisel/releases/latest/download/chisel_linux_amd64 -o chisel
wget
wget https://github.com/jpillora/chisel/releases/latest/download/chisel_linux_amd64 -O chisel
socat
curl
curl -sL https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/socat -o socat
wget
wget https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/socat -O socat
ngrok
curl
curl -sL https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip -o ngrok.zip
wget
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip -O ngrok.zip
Last updated