Last active
September 6, 2024 04:29
-
-
Save marcinwol/b8e502eede230cc33c43 to your computer and use it in GitHub Desktop.
Setup and test proxychains-ng on Ubuntu 14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# if you havent done it yet, please download the tor-browser and start it | |
# https://www.torproject.org/download/download-easy.html.en | |
wget https://www.torproject.org/dist/torbrowser/5.0/tor-browser-linux64-5.0_en-US.tar.xz | |
tar xf tor-browser-linux64-5.0_en-US.tar.xz | |
# download the source of proxychains-ng | |
git clone https://github.com/rofl0r/proxychains-ng.git | |
cd proxychains-ng | |
# configure and install | |
./configure --prefix=/usr --sysconfdir=/etc | |
make | |
sudo make install | |
sudo make install-config # installs /etc/proxychains.conf | |
# I've noticed that is better to change one default line | |
# in /etc/proxychains.conf to what tor browser (i.e. firefox) | |
# is using as can be seen here: http://i.imgur.com/pKuqHPU.jpg | |
sudo gedit /etc/proxychains.conf | |
Chanege last line in the file: | |
from “socks4 127.0.0.1 9050” to “socks5 127.0.0.1 9150” | |
# to test if proxychains4 goes through tor | |
# we can do two simple tests. For this we need elinks and iftop | |
sudo apt-get install elinks iftop | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment