File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020from 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 "
2424REVISION = getRevisionNumber ()
2525STABLE = VERSION .count ('.' ) <= 2
2626VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change 4545from lib .core .common import getFileItems
4646from lib .core .common import getPublicTypeMembers
4747from lib .core .common import getSafeExString
48+ from lib .core .common import getUnicode
4849from lib .core .common import hashDBRetrieve
4950from lib .core .common import hashDBWrite
5051from 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 )
You can’t perform that action at this time.
0 commit comments