Hello guys , I have a simple homework , to decode an MD5 hash using bruteforce: d04988522ddfed3133cc24fb6924eae9 knowing that the length of the code is 6 ( I do not know what characters) and knowing that it is md5(md5(md5 ... md5)) =10.000 times. So basically, it should take each value of 6 elements and compute md5 of md5 of dm5.... 10.000 times. I have to use just digits :0123456789
I am using windows and this is the first time when I am trying to do this but I am not sure about how to translate what I want into the code. I have created 2 txt files: cracked.txt ( I want to save here the found code) and hash.txt( here I have put my md5 that I want to decode: d04988522ddfed3133cc24fb6924eae9) in the hashcat-6.1.1 folder and I want to use brute force.
Could you guys please help me to do this? What code do I have to run?
in the cmd , in the hashcat-6.1.1 folder I have run this: hashcat.exe -m2600 -a3 --increment --increment-min 6 --increment-max 6 -o cracked.txt hash.txt
I am using windows and this is the first time when I am trying to do this but I am not sure about how to translate what I want into the code. I have created 2 txt files: cracked.txt ( I want to save here the found code) and hash.txt( here I have put my md5 that I want to decode: d04988522ddfed3133cc24fb6924eae9) in the hashcat-6.1.1 folder and I want to use brute force.
Could you guys please help me to do this? What code do I have to run?
in the cmd , in the hashcat-6.1.1 folder I have run this: hashcat.exe -m2600 -a3 --increment --increment-min 6 --increment-max 6 -o cracked.txt hash.txt