mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 21:21:33 +00:00
Added one more warning message to show what's going on with ctrl+c
This commit is contained in:
@@ -129,6 +129,10 @@ 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 existance check. "
|
||||||
|
warnMsg += "sqlmap will display some tables only"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
while (threading.activeCount() > 1):
|
while (threading.activeCount() > 1):
|
||||||
pass
|
pass
|
||||||
@@ -241,6 +245,10 @@ 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 existance check. "
|
||||||
|
warnMsg += "sqlmap will display some columns only"
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
while (threading.activeCount() > 1):
|
while (threading.activeCount() > 1):
|
||||||
pass
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user