mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 08:52:20 +01:00
adding user names to the attack dictionary
This commit is contained in:
parent
93838fb155
commit
79e97824ef
1 changed files with 4 additions and 0 deletions
|
|
@ -324,6 +324,10 @@ def dictionaryAttack(attack_dict):
|
|||
infoMsg = "starting dictionary attack (%s)" % __functions__[hash_regex].func_name
|
||||
logger.info(infoMsg)
|
||||
|
||||
for item in attack_info:
|
||||
((user, _), _) = item
|
||||
kb.wordlist.append(user)
|
||||
|
||||
if hash_regex in (HASH.MYSQL, HASH.MYSQL_OLD, HASH.MD5_GENERIC, HASH.SHA1_GENERIC):
|
||||
count = 0
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue