mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
minor minor fix
This commit is contained in:
parent
4f73feec2f
commit
21d083272e
|
@ -192,8 +192,6 @@ __functions__ = {
|
||||||
|
|
||||||
def dictionaryAttack():
|
def dictionaryAttack():
|
||||||
hash_regexes = []
|
hash_regexes = []
|
||||||
attack_info = []
|
|
||||||
results = []
|
|
||||||
wordlist = []
|
wordlist = []
|
||||||
|
|
||||||
for (_, hashes) in kb.data.cachedUsersPasswords.items():
|
for (_, hashes) in kb.data.cachedUsersPasswords.items():
|
||||||
|
@ -219,6 +217,9 @@ def dictionaryAttack():
|
||||||
|
|
||||||
|
|
||||||
for hash_regex in hash_regexes:
|
for hash_regex in hash_regexes:
|
||||||
|
attack_info = []
|
||||||
|
results = []
|
||||||
|
|
||||||
for (user, hashes) in kb.data.cachedUsersPasswords.items():
|
for (user, hashes) in kb.data.cachedUsersPasswords.items():
|
||||||
for hash_ in hashes:
|
for hash_ in hashes:
|
||||||
if not hash_:
|
if not hash_:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user