mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
cosmeticados ;)
This commit is contained in:
parent
64fcc88be5
commit
5b21352656
|
@ -468,7 +468,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
Backend.flushForcedDbms()
|
Backend.flushForcedDbms()
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
warnMsg = "Ctrl+C detected in detection phase"
|
warnMsg = "user aborted during detection phase"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
message = "How do you want to proceed? [(S)kip current test/(e)nd detection phase/(n)ext parameter/(q)uit]"
|
message = "How do you want to proceed? [(S)kip current test/(e)nd detection phase/(n)ext parameter/(q)uit]"
|
||||||
|
|
|
@ -448,7 +448,7 @@ def start():
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
if conf.multipleTargets:
|
if conf.multipleTargets:
|
||||||
warnMsg = "Ctrl+C detected in multiple target mode"
|
warnMsg = "user aborted in multiple target mode"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
message = "do you want to skip to the next target in list? [Y/n/q]"
|
message = "do you want to skip to the next target in list? [Y/n/q]"
|
||||||
|
|
|
@ -306,7 +306,7 @@ def __goInferenceProxy(expression, fromUser=False, expected=None, batch=False, r
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print
|
print
|
||||||
warnMsg = "Ctrl+C detected in dumping phase"
|
warnMsg = "user aborted during dumping phase"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return outputs
|
return outputs
|
||||||
|
|
|
@ -129,7 +129,7 @@ def tableExists(tableFile, regex=None):
|
||||||
print
|
print
|
||||||
logger.debug("waiting for threads to finish")
|
logger.debug("waiting for threads to finish")
|
||||||
|
|
||||||
warnMsg = "Ctrl+C detected during common table existence check. "
|
warnMsg = "user aborted during common table existence check. "
|
||||||
warnMsg += "sqlmap will display some tables only"
|
warnMsg += "sqlmap will display some tables only"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
@ -245,7 +245,7 @@ def columnExists(columnFile, regex=None):
|
||||||
print
|
print
|
||||||
logger.debug("waiting for threads to finish")
|
logger.debug("waiting for threads to finish")
|
||||||
|
|
||||||
warnMsg = "Ctrl+C detected during common column existence check. "
|
warnMsg = "user aborted during common column existence check. "
|
||||||
warnMsg += "sqlmap will display some columns only"
|
warnMsg += "sqlmap will display some columns only"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
|
|
@ -433,7 +433,7 @@ def dictionaryAttack(attack_dict):
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print
|
print
|
||||||
warnMsg = "Ctrl+C detected in dictionary attack phase"
|
warnMsg = "user aborted during dictionary attack phase"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
@ -486,7 +486,7 @@ def dictionaryAttack(attack_dict):
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print
|
print
|
||||||
warnMsg = "Ctrl+C detected in dictionary attack phase"
|
warnMsg = "user aborted during dictionary attack phase"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user