mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Fixing #4768
This commit is contained in:
@@ -636,7 +636,10 @@ def storeHashesToFile(attack_dict):
|
||||
|
||||
with openFile(filename, "w+") as f:
|
||||
for item in items:
|
||||
f.write(item)
|
||||
try:
|
||||
f.write(item)
|
||||
except (UnicodeError, TypeError):
|
||||
pass
|
||||
|
||||
def attackCachedUsersPasswords():
|
||||
if kb.data.cachedUsersPasswords:
|
||||
|
||||
Reference in New Issue
Block a user