mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 19:55:47 +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
|
count = 0
|
||||||
|
|
||||||
for suffix in suffix_list:
|
for suffix in suffix_list:
|
||||||
|
if not attack_info:
|
||||||
|
break
|
||||||
|
|
||||||
for word in kb.wordlist:
|
for word in kb.wordlist:
|
||||||
|
if not attack_info:
|
||||||
|
break
|
||||||
|
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
if suffix:
|
if suffix:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user