mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
Added one more warning message to show what's going on with ctrl+c
This commit is contained in:
parent
3948cd9e77
commit
fed57282fc
|
@ -129,6 +129,10 @@ def tableExists(tableFile, regex=None):
|
|||
print
|
||||
logger.debug("waiting for threads to finish")
|
||||
|
||||
warnMsg = "Ctrl+C detected during common table existance check. "
|
||||
warnMsg += "sqlmap will display some tables only"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
try:
|
||||
while (threading.activeCount() > 1):
|
||||
pass
|
||||
|
@ -241,6 +245,10 @@ def columnExists(columnFile, regex=None):
|
|||
print
|
||||
logger.debug("waiting for threads to finish")
|
||||
|
||||
warnMsg = "Ctrl+C detected during common column existance check. "
|
||||
warnMsg += "sqlmap will display some columns only"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
try:
|
||||
while (threading.activeCount() > 1):
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue
Block a user