Page cover
githubEdit

house-crackStatic Binaries

Detect the right Architecture
arch=$(uname -m)
[ "$arch" = "x86_64" ] && suffix="amd64" || suffix="386"
chevron-rightpspyhashtag
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"
chevron-rightlinpeashashtag
chevron-rightnmaphashtag
chevron-rightchiselhashtag
chevron-rightsocathashtag
chevron-rightngrokhashtag
chevron-rightbusyboxhashtag
chevron-rightPythonhashtag

Last updated