mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixing #4768
This commit is contained in:
parent
06cd97f097
commit
b3bc401f2e
3 changed files with 6 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue