mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 13:03:50 +03:00
minor update
This commit is contained in:
parent
563c0c1066
commit
27d244b326
|
@ -972,10 +972,13 @@ def checkConnection(suppressOutput=False):
|
||||||
errMsg = getUnicode(errMsg)
|
errMsg = getUnicode(errMsg)
|
||||||
logger.critical(errMsg)
|
logger.critical(errMsg)
|
||||||
|
|
||||||
msg = "it is not recommended to continue in this kind of cases. Do you want to quit and make sure that everything is set up properly? [Y/n] "
|
if any(code in kb.httpErrorCodes for code in (404, )):
|
||||||
if readInput(msg, default="Y") not in ("n", "N"):
|
msg = "it is not recommended to continue in this kind of cases. Do you want to quit and make sure that everything is set up properly? [Y/n] "
|
||||||
raise sqlmapSilentQuitException
|
if readInput(msg, default="Y") not in ("n", "N"):
|
||||||
|
raise sqlmapSilentQuitException
|
||||||
|
else:
|
||||||
|
kb.ignoreNotFound = True
|
||||||
else:
|
else:
|
||||||
kb.ignoreNotFound = True
|
raise
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue
Block a user