Last active
May 8, 2018 13:24
-
-
Save lemajes/bd8d9cd973f965c7779d1f0b49225888 to your computer and use it in GitHub Desktop.
[MultiTor] Run 4 instances of Tor with Docker #linux #tor #docker #pentest
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
#!/bin/bash | |
docker run --rm -d --name tor_instance1 -p 127.0.1.1:9150:9150 nagev/tor | |
docker run --rm -d --name tor_instance2 -p 127.0.1.1:9151:9151 nagev/tor | |
docker run --rm -d --name tor_instance3 -p 127.0.1.1:9152:9152 nagev/tor | |
docker run --rm -d --name tor_instance4 -p 127.0.1.1:9153:9153 nagev/tor | |
cat << EOF > /etc/proxychains.conf | |
random_chain | |
proxy_dns | |
tcp_read_time_out 15000 | |
tcp_connect_time_out 8000 | |
[ProxyList] | |
socks5 127.0.1.1 9150 | |
socks5 127.0.1.1 9151 | |
socks5 127.0.1.1 9152 | |
socks5 127.0.1.1 9153 | |
EOF | |
echo -e "\nReady to rumble !!" | |
lsof -i :9150,9151,9152,9153 | |
echo -e "Use like this: proxychains nmap -v -n -sT -PN <target> -oX /tmp/report" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment