- Official Website : https://www.torproject.org/
- Download : https://www.torproject.org/download/download-easy.html.en
- Documents : https://www.torproject.org/docs/documentation.html.en
- Reference : http://en.wikipedia.org/wiki/Tor_(anonymity_network)
Tor is free software and an open network that helps you defend against a form of network surveillance that threatens personal freedom and privacy, confidential business activities and relationships, and state security known as traffic analysis.
Installation:
- [Comment] Add a repository to apt-get
- root@kali:~# echo "deb http://deb.torproject.org/torproject.org wheezy main" >> /etc/apt/sources.list.d/tor.list
- [Comment] Install the key
- root@kali:~# gpg --keyserver keys.gnupg.net --recv 886DDD89
- root@kali:~# gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
- [Comment] Refresh
- root@kali:~# apt-get update
- [Comment] Install tor and privoxy
- root@kali:~# apt-get install deb.torproject.org-keyring
- root@kali:~# apt-get install tor
- root@kali:~# apt-get install privoxy
- [Comment] Modify the configuration of privoxy
- root@kali:~# vim /etc/privoxy/config
- [Comment] Uncomment the following line
775 #
776 listen-address 127.0.0.1:8118
777 #1291 #
1292 forward-socks5 / 127.0.0.1:9050 .
1293 # - root@kali:~# service tor restart
- root@kali:~# service privoxy restart
- root@kali:~# update-rc.d tor enable
- root@kali:~# update-rc.d privoxy enable
- [Comment] Modify the settings of Iceweasel
- [Comment] Test Tor : Visit https://check.torproject.org
This comment has been removed by the author.
ReplyDeleteThank you
ReplyDelete