How to use proxychains to hide your ip address
If you want hide your ip address to emulate different users, a good option is proxychains. To install it, you need following these steps: sudo apt-get install tor git clone https://github.com/rofl0r/proxychains-ng.git cd proxychains-ng ./configure make -j4 sudo make install sudo make install-config sudo service tor start You can edit proxychains config file to add more proxies if you want: vim /usr/local/etc/proxychains.conf To validate if it's working, you can check out you ip address throught curl: proxychains4 curl -s 'http://www.baidu.com/s?ie=UTF-8&wd=ip' |grep "IP:" | grep -oE "[0-9\.]*" [proxychains] config file found: /usr/local/etc/proxychains.conf [proxychains] preloading /usr/local/lib/libproxychains4.so [proxychains] DLL init: proxychains-ng 4.12 [proxychains] Strict chain ... 127.0.0.1:9050 ... www.baidu.com:80 ... OK 62.210.245.158 Enjoy it!