PDA

View Full Version : Running Traffic Through Tor



smokeface
07-04-2017, 07:17 AM
Today I am going to teach you how to run your traffic through tor on Windows.
I might do a Linux tutorial covering proxychains & how to configure it.
THIS IS NOT A VPN. Just chained socks5 proxies you can use for free.
There is a high chance your proxy will DNS Leak, I will teach you how to fix this.
I will also be covering WebRTC & how to prevent it.

NOTE: You can still use a VPN over the socks5 and it will increase your opsec/anonymity all around.

1 - Downloads
Proxifier - https://www.proxifier.com/download.htm
Tor - https://www.torproject.org/download/download.html

2 - Setting up Proxy
Open Proxifier, go into Proxification Rules.
Click Add, then fill in the following.

Code:
Address: 127.0.0.1
Port: 9150
Protocol: Socks5

Click Ok then head over to Proxification Rules.

Add a new rule called Localhost

Enable the rule and leave everything else blank except Target Hosts. In Target Hosts, fill in the following:

Code:
localhost; 127.0.0.1; %ComputerName%

Change the action to Direct at the bottom and make sure the rule is checked.
------------
You have now configured Proxifier to Handle your connections through Tor's use of Socks5 Proxies. To use it, Open Proxifier and open Tor and Proxifier should start handling the connections. If you are having trouble, PM Me and I will help you set it up.
----------

3 - Disabling WebRTC
Download the following .bat file and run it as admin to disable WebRTC via Chrome on Windows.


IF NOT EXIST "%ProgramFiles%\Google\Chrome\Application\" (
NETSH advfirewall firewall add rule name="WebRTC-block" dir="out" program="%ProgramFiles% (x86)\Google\Chrome\Application\chrome.exe" protocol="UDP" action="block" enable="yes"
start chrome "https://diafygi.github.io/webrtc-ips/"
) ELSE (
NETSH advfirewall firewall add rule name="WebRTC-block" dir="out" program="%ProgramFiles%\Google\Chrome\Application\chrome.ex e" protocol="UDP" action="block" enable="yes"
start chrome "https://diafygi.github.io/webrtc-ips/"
)