Hello,
I stuck with the question to use hashcat for the sha1 hash at “Cracking Passwords with Hashcat”, “Working with Rules”.
What I did is creating a rulefile that included:
$2 $0 $2 $0
then
hashcat -r rule.txt rockyou.txt --stdout rockyou_mod.txt
Then I used hashcat with the hash (2020_training_sha.txt).
hashcat -a 0 -m 100 2020_training_sha.txt rockyou_mod.txt
I was not able to find the password.
I also used the following command:
hashcat -a 0 -m 100 2020_training_sha.txt rockyou.txt -r rule.txt
I was not able to find the password.
I assumed that I had to use the rockyou list and append “2020” to every password, this is what I did. Or do I missinterpret the requirements ?
BR