Sqlmap not working on Tor Vidalia on WindowsXP

D:\Python27>python sqlmap\sqlmap.py -u www.mail.ru --tor

    sqlmap/1.0-dev - automatic SQL injection and database takeover tool
    http://sqlmap.org

[!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual
 consent is illegal. It is the end user responsibility to obey all applicable
local, state and federal laws. Developers assume no liability and are not respon
sible for any misuse or damage caused by this program

[*] starting at 22:28:49

[22:28:49] [WARNING] increasing default value for option '--time-sec' to 10 beca
use switch '--tor' was provided
[22:28:49] [INFO] setting Tor HTTP proxy settings
[22:28:52] [CRITICAL] can't establish connection with the Tor proxy. Please make
 sure that you have Vidalia, Privoxy or Polipo bundle installed for you to be ab
le to successfully use switch '--tor' (e.g. https://www.torproject.org/projects/
vidalia.html.en)

[*] shutting down at 22:28:52

[CRITICAL] cannot connect to Tor proxy. Vidalia Tor already installed and ran.

How to use tor with sqlmap ?

+5
source share
3 answers

Always provide everything: --tor --check-tor --tor-type=SOCKS5 --tor-port=9150
If you use vidalia, then it is --check-tornot needed, but just make sure that you use tor.
May the rule of a good way

+6
source

You forgot to add quotes " "for the url.
Try usingD:\path_to\sqlmap>sqlmap.py -u "www.mail.ru" --tor

This post may be useful for visitors, if not for you! @Dmitrij Holkin

+1
source

Which port is listening? I think sqlmap uses 9050 by default. If you have something other than you can use --tor-port = TORPORT.

0
source

All Articles