mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #1320
This commit is contained in:
parent
301aca57e6
commit
bcb25823e6
7 changed files with 11 additions and 10 deletions
|
|
@ -44,6 +44,7 @@ from lib.core.common import clearConsoleLine
|
|||
from lib.core.common import dataToStdout
|
||||
from lib.core.common import getFileItems
|
||||
from lib.core.common import getPublicTypeMembers
|
||||
from lib.core.common import getUnicode
|
||||
from lib.core.common import hashDBRetrieve
|
||||
from lib.core.common import hashDBWrite
|
||||
from lib.core.common import normalizeUnicode
|
||||
|
|
@ -769,7 +770,7 @@ def dictionaryAttack(attack_dict):
|
|||
|
||||
except Exception, ex:
|
||||
warnMsg = "there was a problem while loading dictionaries"
|
||||
warnMsg += " ('%s')" % ex
|
||||
warnMsg += " ('%s')" % getUnicode(ex)
|
||||
logger.critical(warnMsg)
|
||||
|
||||
message = "do you want to use common password suffixes? (slow!) [y/N] "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue