Problem on password cracking

i just do something wrong on Offensive Security 3.2 Lab . Password Cracking


this is the error i have been found since i didnt some thing wrong.

Acutally the hash-id.py code has been change (my mistake) can u guys provide me the code? pls

Hey there - it looks like you skipped Step 4, then missed some spaces in Step 5 - specifically on either side of the |. The command for Step 5 is cat hash.txt | python3 hash-id.py

thank you mate… but thats didnt work for me … actaully i just misplaced the python code. So can you provide me hash.py code??

I’m actually not sure what you’re referring to. Running cat hash.txt | python3 hash-id.py will simply run the hash-id.py program, which analyzes the contents of hash.txt and outputs the hash algorithm used. As you can see from the screenshot, that hash algorithm is md5, which we use in the next step to crack the hashed password.

To complete the lab, you just need to run john-the-ripper --format=raw-md5 hash.txt --wordlist=darkweb2017-top10000.txt at Step 6, then use the result to answer the question on the Tasks tab.