mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Fixes #3664
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user