mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
minor fix
This commit is contained in:
parent
f7bf1fbe94
commit
11af0b1bbc
|
@ -981,6 +981,9 @@ def checkConnection(suppressOutput=False):
|
|||
logger.critical(errMsg)
|
||||
|
||||
if any(code in kb.httpErrorCodes for code in (httplib.NOT_FOUND, )):
|
||||
if conf.multipleTargets:
|
||||
return False
|
||||
|
||||
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 readInput(msg, default="Y") not in ("n", "N"):
|
||||
raise sqlmapSilentQuitException
|
||||
|
|
|
@ -960,8 +960,6 @@ def readInput(message, default=None, checkBatch=True):
|
|||
elif message[-1] == ']':
|
||||
message += " "
|
||||
|
||||
message = "\r%s" % message
|
||||
|
||||
if checkBatch and conf.batch:
|
||||
if isinstance(default, (list, tuple, set)):
|
||||
options = ",".join(getUnicode(opt, UNICODE_ENCODING) for opt in default)
|
||||
|
@ -979,7 +977,7 @@ def readInput(message, default=None, checkBatch=True):
|
|||
data = default
|
||||
else:
|
||||
logging._acquireLock()
|
||||
dataToStdout(message, True)
|
||||
dataToStdout("\r%s" % message, True)
|
||||
data = raw_input()
|
||||
#data = raw_input(message.encode(sys.stdout.encoding or UNICODE_ENCODING))
|
||||
logging._releaseLock()
|
||||
|
|
Loading…
Reference in New Issue
Block a user