Plz help for MD5(sal1.PASSWORD.salt2)
#2
Maybe using the combinator attack:
https://hashcat.net/wiki/doku.php?id=combinator_attack

Using the combinator attack you should be able to use the hash-mode 20, set "salt2" in another dictionary, and salt1 in your hash file.


Code:
echo "salt2" > dic2.txt
hashcat -m 20 -a 1 -j yourBigRules.rule hash.txt yourDic.txt dic2.txt

It should parse yourDic.txt, apply rules on it, then append salt2 at the end and process the hash function after appending salt1 at the beginning.

Does it work?
Please keep us posted.


Messages In This Thread
Plz help for MD5(sal1.PASSWORD.salt2) - by hemiad - 10-26-2017, 06:26 PM
RE: Plz help for MD5(sal1.PASSWORD.salt2) - by id417 - 10-26-2017, 07:11 PM