mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-02 20:54:13 +03:00
Switching proxies when Google detects unusual traffic
This commit is contained in:
parent
01d24cbb42
commit
14676bdffb
|
@ -104,7 +104,11 @@ def _search(dork):
|
||||||
if not retVal and "detected unusual traffic" in page:
|
if not retVal and "detected unusual traffic" in page:
|
||||||
warnMsg = "Google has detected 'unusual' traffic from "
|
warnMsg = "Google has detected 'unusual' traffic from "
|
||||||
warnMsg += "used IP address disabling further searches"
|
warnMsg += "used IP address disabling further searches"
|
||||||
logger.warn(warnMsg)
|
|
||||||
|
if conf.proxyList:
|
||||||
|
raise SqlmapBaseException(warnMsg)
|
||||||
|
else:
|
||||||
|
logger.critical(warnMsg)
|
||||||
|
|
||||||
if not retVal:
|
if not retVal:
|
||||||
message = "no usable links found. What do you want to do?"
|
message = "no usable links found. What do you want to do?"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user