mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
minor update
This commit is contained in:
@@ -599,7 +599,7 @@ def dictionaryAttack(attack_dict):
|
|||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print
|
print
|
||||||
processException = True
|
processException = True
|
||||||
warnMsg = "user aborted during dictionary-based attack phase"
|
warnMsg = "user aborted during dictionary-based attack phase (Ctrl+C was pressed)"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
while not retVal.empty():
|
while not retVal.empty():
|
||||||
@@ -609,6 +609,9 @@ def dictionaryAttack(attack_dict):
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
for ((user, hash_), kwargs) in attack_info:
|
for ((user, hash_), kwargs) in attack_info:
|
||||||
|
if processException:
|
||||||
|
break
|
||||||
|
|
||||||
count = 0
|
count = 0
|
||||||
found = False
|
found = False
|
||||||
|
|
||||||
@@ -666,7 +669,7 @@ def dictionaryAttack(attack_dict):
|
|||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print
|
print
|
||||||
processException = True
|
processException = True
|
||||||
warnMsg = "user aborted during dictionary-based attack phase"
|
warnMsg = "user aborted during dictionary-based attack phase (Ctrl+C was pressed)"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
while not retVal.empty():
|
while not retVal.empty():
|
||||||
|
|||||||
Reference in New Issue
Block a user