Skip to content

Instantly share code, notes, and snippets.

@rahman541
Last active August 31, 2021 02:04
Show Gist options
  • Save rahman541/65760f3c7818f22a3b5c7298950d37a8 to your computer and use it in GitHub Desktop.
Save rahman541/65760f3c7818f22a3b5c7298950d37a8 to your computer and use it in GitHub Desktop.
Install ProxyChain4 on CentOs

Install ProxyChain4 on CentOs

yum install git
cd ~
git clone https://github.com/rofl0r/proxychains-ng.git 
cd proxychains-ng 
./configure && make && make install  
make install-config

The proxy ip and port must be set before you are using proxychains. Edit proxychains configuration file

vim /usr/local/etc/proxychains.conf

Go to last line, replace this line

socks4  127.0.0.1 9050

to this

socks5 10.0.18.88 12345

Hit Esc, type :WQ & hit Enter.

Usage

proxychains4 wget http://www.google.com

REF

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment