mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-31 12:53:08 +01:00
Minor fix for an Issue #230
This commit is contained in:
parent
5b61e9ce12
commit
0664e72bea
1 changed files with 1 additions and 1 deletions
|
|
@ -672,7 +672,7 @@ def dictionaryAttack(attack_dict):
|
|||
|
||||
if hash_regex in (HASH.MYSQL, HASH.MYSQL_OLD, HASH.MD5_GENERIC, HASH.SHA1_GENERIC):
|
||||
for suffix in suffix_list:
|
||||
if len(attack_info) <= len(results) or processException:
|
||||
if not attack_info or processException:
|
||||
break
|
||||
|
||||
if suffix:
|
||||
|
|
|
|||
Loading…
Reference in a new issue