Skip to content

Instantly share code, notes, and snippets.

@xmeng1
Forked from tpai/instructions.md
Created August 3, 2017 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xmeng1/32a9fc5f917f98cd49f1e6665524d5b8 to your computer and use it in GitHub Desktop.
Save xmeng1/32a9fc5f917f98cd49f1e6665524d5b8 to your computer and use it in GitHub Desktop.
use both Tor and Privoxy with Mac OSX

1. install

brew install tor
brew install privoxy

2. copy and modify config file

cp /usr/local/Cellar/config /usr/local/opt/privoxy/sbin/
// add this following line into config file, it means forward filtered data to Tor.
forward-socks4a / 127.0.0.1:9050 .

3. launch

./usr/local/opt/tor/sbin/tor
./usr/local/opt/privoxy/sbin/privoxy

4. check if listen

netstat -an | grep 9050
127.0.0.1:9050 LISTEN

netstat -an | grep 8118
127.0.0.1:8118 LISTEN

5. web browser settings

Manually set your proxy configuration, fill HTTP and SSL Proxy column up with "127.0.0.1:8118".

6. try

Ref: Use both Tor and Privoxy

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