10-26-2017, 07:11 PM
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.
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.
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.