mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
minor beautification
This commit is contained in:
parent
753dcb3450
commit
fcac3d494b
|
@ -714,10 +714,12 @@ def dictionaryAttack(attack_dict):
|
|||
finally:
|
||||
if retVal:
|
||||
conf.hashDB.beginTransaction()
|
||||
|
||||
while not retVal.empty():
|
||||
_, hash_, word = item = retVal.get(block=False)
|
||||
conf.hashDB.write(hash_, word)
|
||||
results.append(item)
|
||||
|
||||
conf.hashDB.endTransaction()
|
||||
|
||||
clearConsoleLine()
|
||||
|
@ -795,10 +797,12 @@ def dictionaryAttack(attack_dict):
|
|||
finally:
|
||||
if retVal:
|
||||
conf.hashDB.beginTransaction()
|
||||
|
||||
while not retVal.empty():
|
||||
_, hash_, word = item = retVal.get(block=False)
|
||||
conf.hashDB.write(hash_, word)
|
||||
results.append(item)
|
||||
|
||||
conf.hashDB.endTransaction()
|
||||
|
||||
clearConsoleLine()
|
||||
|
|
Loading…
Reference in New Issue
Block a user