Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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?

like image 479
user3282744 Avatar asked Feb 11 '26 22:02

user3282744


1 Answers

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

like image 59
vivex Avatar answered Feb 15 '26 11:02

vivex