mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor layout adjustments
This commit is contained in:
parent
60afd80460
commit
3948cd9e77
|
@ -102,7 +102,7 @@ def tableExists(tableFile, regex=None):
|
|||
conf.threads = int(choice)
|
||||
|
||||
if conf.threads == 1:
|
||||
warnMsg = "running in a single-thread mode. this could take a while."
|
||||
warnMsg = "running in a single-thread mode. This could take a while."
|
||||
logger.warn(warnMsg)
|
||||
|
||||
# Start the threads
|
||||
|
@ -214,7 +214,7 @@ def columnExists(columnFile, regex=None):
|
|||
conf.threads = int(choice)
|
||||
|
||||
if conf.threads == 1:
|
||||
warnMsg = "running in a single-thread mode. this could take a while."
|
||||
warnMsg = "running in a single-thread mode. This could take a while."
|
||||
logger.warn(warnMsg)
|
||||
|
||||
# Start the threads
|
||||
|
|
|
@ -295,7 +295,8 @@ def errorUse(expression, expected=None, resumeValue=True, dump=False):
|
|||
|
||||
except KeyboardInterrupt:
|
||||
print
|
||||
warnMsg = "Ctrl+C detected in dumping phase"
|
||||
warnMsg = "Ctrl+C detected during enumeration. sqlmap "
|
||||
warnMsg += "will display partial output"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
if not outputs:
|
||||
|
|
|
@ -262,7 +262,8 @@ def unionUse(expression, unpack=True, dump=False):
|
|||
|
||||
except KeyboardInterrupt:
|
||||
print
|
||||
warnMsg = "Ctrl+C detected in dumping phase"
|
||||
warnMsg = "Ctrl+C detected during enumeration. sqlmap "
|
||||
warnMsg += "will display partial output"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
if not value:
|
||||
|
|
Loading…
Reference in New Issue
Block a user