mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-13 20:04:36 +01:00
minor fix
This commit is contained in:
parent
8d668b1833
commit
d467b40ff6
1 changed files with 1 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ def __bruteProcessVariantA(attack_info, hash_regex, wordlist, suffix, retVal, pr
|
|||
try:
|
||||
current = __functions__[hash_regex](password = word, uppercase = False)
|
||||
|
||||
for item in attack_info:
|
||||
for item in list(attack_info):
|
||||
((user, hash_), _) = item
|
||||
|
||||
count += 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue