user3282744
user3282744

Reputation: 31

Getting 'connection time out' error each time on the same step in sqlmap

On running sqlmap, I always get an error on following step and then connection gets timed out.

[11:44:14] [INFO] testing 'AND boolean-based blind - WHERE or HAVING clause'

[11:46:15] [CRITICAL] connection timed out to the target url or proxy, sqlmap is going to retry the request

I also increased the timeout, but no use. Can I skip this particular Test Case(testing 'AND boolean-based blind - WHERE or HAVING clause' ) of sqlmap or Is der any other solution for this?

Upvotes: 3

Views: 24418

Answers (2)

vivex
vivex

Reputation: 2515

you can increase the for example

python sqlmap.py -u 'http://wyousite.com/any.php?page_id=2' --timeout 100

OR

some time it happens due to agent related issue so also try this --random-agent

python sqlmap.py -u 'http://www.chellosit.com/node.php?page_id=2' --random-agent

Upvotes: 2

Eagle0nymoUs_AL
Eagle0nymoUs_AL

Reputation: 36

i have this issue all the time, but it got fixed once by adding --tamper="between.py". Also try other tamper scripts as your queries might be filtered by firewall

Upvotes: 1

Related Questions