mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-08 09:24:01 +01:00
Minor patch
This commit is contained in:
parent
e383df8e29
commit
4f602daa5b
1 changed files with 2 additions and 2 deletions
|
|
@ -769,9 +769,9 @@ def dictionaryAttack(attack_dict):
|
||||||
|
|
||||||
kb.wordlists = dictPaths
|
kb.wordlists = dictPaths
|
||||||
|
|
||||||
except SqlmapFilePathException, msg:
|
except Exception, ex:
|
||||||
warnMsg = "there was a problem while loading dictionaries"
|
warnMsg = "there was a problem while loading dictionaries"
|
||||||
warnMsg += " ('%s')" % msg
|
warnMsg += " ('%s')" % ex
|
||||||
logger.critical(warnMsg)
|
logger.critical(warnMsg)
|
||||||
|
|
||||||
message = "do you want to use common password suffixes? (slow!) [y/N] "
|
message = "do you want to use common password suffixes? (slow!) [y/N] "
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue