What is it? @.@

Here is the place where I record some tactics about wargame, systems, and other security issues.

2013-04-24

Anonymity Online - Install TOR + Privoxy on Kali Linux

Introduction:


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:
  1. [Comment] Add a repository to apt-get
  2. root@kali:~# echo "deb http://deb.torproject.org/torproject.org wheezy main" >> /etc/apt/sources.list.d/tor.list
  3. [Comment] Install the key
  4. root@kali:~# gpg --keyserver keys.gnupg.net --recv 886DDD89
  5. root@kali:~# gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
  6. [Comment] Refresh
  7. root@kali:~# apt-get update
  8. [Comment] Install tor and privoxy
  9. root@kali:~# apt-get install deb.torproject.org-keyring
  10. root@kali:~# apt-get install tor
  11. root@kali:~# apt-get install privoxy
  12. [Comment] Modify the configuration of privoxy
  13. root@kali:~# vim /etc/privoxy/config
  14. [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 #
  15. root@kali:~# service tor restart 
  16. root@kali:~# service privoxy restart 
  17. root@kali:~# update-rc.d tor enable
  18. root@kali:~# update-rc.d privoxy enable
  19. [Comment] Modify the settings of Iceweasel

  20. [Comment] Test Tor : Visit https://check.torproject.org

2 comments: