Skip to content

Instantly share code, notes, and snippets.

@Jimmy-Xu
Forked from ifduyue/install-proxychains-ng.sh
Created April 21, 2018 05:38
Show Gist options
  • Save Jimmy-Xu/ee46e35d3a5bf39b38460f2a793a2589 to your computer and use it in GitHub Desktop.
Save Jimmy-Xu/ee46e35d3a5bf39b38460f2a793a2589 to your computer and use it in GitHub Desktop.
Install proxychains-ng on Centos
#!/bin/sh
# Usage:
# wget -O- https://gist.githubusercontent.com/ifduyue/dea03b4e139c5758ca114770027cf65c/raw/install-proxychains-ng.sh | sudo bash -s
set -eu
version=4.12
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