- tor,
- proxychains,
- nmap.
Proxychains is a proxifier supporting HTTP, SOCKS4 and SOCKS5 proxies. It is shipped with BackTrack Linux by default and already configured to use tor. You can verify this by looking up /etc/proxychain.conf, last line should be like this:
We are ready to fire up nmap:
Now, let me explain what happened there. We run nmap thru proxychains with the following options:
- -sT - full TCP connection scan
- -PN - do not perform host discovery
- -n - never perform DNS resolution (to prevent DNS leaks from tor)
- -sV - determine service version/info
- -p - ports to scan (for testing purposes i only gave 3 ports to scan, proxying a portscan thru tor makes it really slow, so perhaphs --top-ports option should be taken in consideration)
- self explanatory
That's all for tonight, hope somebody will find this information useful.