Anonymous Scanning

https://miloserdov.org/?p=131

torsocks

How to install and run Tor in Kali Linux

Install necessary packages:

sudo apt-get install torsocks tor

#Then open the /etc/tor/torrc file:

sudo gedit /etc/tor/torrc

#And append lines:

AutomapHostsOnResolve  1
DNSPort                53530
TransPort              9040

#Start and add tor service in autorun:
sudo systemctl start tor
sudo systemctl enable tor

ProxyChains-NG

Sqlmap anonymous

Sqlmap anonymous scanning through Tor, Sqlmap has the –proxy option,

therefore you just need to append –proxy socks5://127.0.0.1:9050 to you command:

WPScan anonymous

WPScan anonymous scanning through Tor WPScan has the similar –proxy flag,

so just append –proxy socks5://127.0.0.1:9050 to you normal command:

I recommend you consider usage of –request-timeout 500 –connect-timeout 120 options, because scanning through Tor leads to significant delays.

Example:

NMAP anonymous

Last updated

Was this helpful?