mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 11:45:46 +03:00
minor fix (break if all found)
This commit is contained in:
parent
0fcca671bd
commit
99a3a3b89c
|
@ -357,7 +357,13 @@ def dictionaryAttack(attack_dict):
|
|||
count = 0
|
||||
|
||||
for suffix in suffix_list:
|
||||
if not attack_info:
|
||||
break
|
||||
|
||||
for word in kb.wordlist:
|
||||
if not attack_info:
|
||||
break
|
||||
|
||||
count += 1
|
||||
|
||||
if suffix:
|
||||
|
|
Loading…
Reference in New Issue
Block a user