Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 55b23e7

Browse files
committed
Fixes #1809
1 parent a9526bd commit 55b23e7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from lib.core.revision import getRevisionNumber
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.0.4.15"
23+
VERSION = "1.0.4.16"
2424
REVISION = getRevisionNumber()
2525
STABLE = VERSION.count('.') <= 2
2626
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/utils/hash.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
from lib.core.common import getFileItems
4646
from lib.core.common import getPublicTypeMembers
4747
from lib.core.common import getSafeExString
48+
from lib.core.common import getUnicode
4849
from lib.core.common import hashDBRetrieve
4950
from lib.core.common import hashDBWrite
5051
from lib.core.common import normalizeUnicode
@@ -490,7 +491,7 @@ def attackDumpedTable():
490491

491492
for (_, hash_, password) in results:
492493
if hash_:
493-
lut[hash_.lower()] = password
494+
lut[hash_.lower()] = getUnicode(password)
494495

495496
infoMsg = "postprocessing table dump"
496497
logger.info(infoMsg)

0 commit comments

Comments
 (0)