mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #3664
This commit is contained in:
parent
c03d6d71f8
commit
b3cbb4d921
2 changed files with 3 additions and 3 deletions
|
|
@ -578,9 +578,9 @@ def storeHashesToFile(attack_dict):
|
|||
if hash_ and hash_ != NULL and hashRecognition(hash_):
|
||||
item = None
|
||||
if user and not user.startswith(DUMMY_USER_PREFIX):
|
||||
item = "%s:%s\n" % (user.encode(UNICODE_ENCODING), hash_.encode(UNICODE_ENCODING))
|
||||
item = "%s:%s\n" % (user, hash_)
|
||||
else:
|
||||
item = "%s\n" % hash_.encode(UNICODE_ENCODING)
|
||||
item = "%s\n" % hash_
|
||||
|
||||
if item and item not in items:
|
||||
items.add(item)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue