Skip to content

Instantly share code, notes, and snippets.

@AliRn76
Last active April 8, 2023 09:41
Show Gist options
  • Save AliRn76/68e92c3cf09bca027c12438a5e860866 to your computer and use it in GitHub Desktop.
Save AliRn76/68e92c3cf09bca027c12438a5e860866 to your computer and use it in GitHub Desktop.
Installing ProxyChains
#!/bin/sh
set -eu
version=4.16
wget https://github.com/rofl0r/proxychains-ng/archive/v$version.tar.gz
tar xf v$version.tar.gz
(cd proxychains-ng-$version
./configure
make
make install
[[ -f /etc/proxychains.conf ]] || cp src/proxychains.conf /etc/proxychains.conf
)
rm -rf v$version.tar.gz proxychains-ng-$version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment