Advertisement
r3v3l

Untitled

Jan 10th, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.04 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "deb http://deb.torproject.org/torproject.org wheezy main" >> /etc/apt/sources.list
  4. clear scr
  5. echo "[*] Installing the keys...."
  6. gpg --keyserver keys.gnupg.net --recv 886DDD89
  7. gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
  8. echo "Ready!!"
  9. clear scr
  10. echo "[*] Updating Repositories...."
  11. apt-get update
  12. clear scr
  13. echo "[*] Installing TOR"
  14. apt-get install deb.torproject.org-keyring
  15. apt-get install tor
  16. echo "Ready!!"
  17. echo "[*] Installing Vidalia"
  18. apt-get install vidalia
  19. echo "Ready!!"
  20. clear scr
  21. echo "[*] Installing Privoxy"
  22. apt-get install privoxy
  23. echo "[*] Configuring privoxy"
  24. echo "forward-socks5 / 127.0.0.1:9050 ." >> /etc/privoxy/config
  25. echo "Ready!!"
  26. sudo systemctl start tor.service
  27. service privoxy restart
  28. echo "Tor has been installed successfully."
  29.  
  30. echo "[*] Installing ProxyChains"
  31. apt-get install privoxy
  32. echo "[*] Configuring proxychains"
  33. echo socks5 127.0.0.1 9050 >> /etc/proxychains.conf
  34. echo "Ready!!"
  35.  
  36. echo "[*] Installing sqlmap"
  37. apt-get install sqlmap
  38. echo "Ready"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement