mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor bug fix
This commit is contained in:
parent
66d37112d1
commit
9c3c9a9315
|
@ -913,7 +913,7 @@ def dictionaryAttack(attack_dict):
|
||||||
item = [(user, hash_), {"salt": hash_.split('$')[2], "magic": "$%s$" % hash_.split('$')[1]}]
|
item = [(user, hash_), {"salt": hash_.split('$')[2], "magic": "$%s$" % hash_.split('$')[1]}]
|
||||||
elif hash_regex in (HASH.JOOMLA, HASH.VBULLETIN, HASH.VBULLETIN_OLD):
|
elif hash_regex in (HASH.JOOMLA, HASH.VBULLETIN, HASH.VBULLETIN_OLD):
|
||||||
item = [(user, hash_), {"salt": hash_.split(':')[-1]}]
|
item = [(user, hash_), {"salt": hash_.split(':')[-1]}]
|
||||||
elif hash_regex in (HASH.DJANGO_MD5, DJANGO_SHA1):
|
elif hash_regex in (HASH.DJANGO_MD5, HASH.DJANGO_SHA1):
|
||||||
item = [(user, hash_), {"salt": hash_.split('$')[1]}]
|
item = [(user, hash_), {"salt": hash_.split('$')[1]}]
|
||||||
elif hash_regex in (HASH.WORDPRESS,):
|
elif hash_regex in (HASH.WORDPRESS,):
|
||||||
if ITOA64.index(hash_[3]) < 32:
|
if ITOA64.index(hash_[3]) < 32:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user