John The Ripper

Room Link: https://tryhackme.com/room/johntheripper0

Hash ID

Great tool that the room provides, use it to identify the hash type when John can't identify the hash by itself.

wget https://gitlab.com/kalilinux/packages/hash-identifier/-/raw/kali/master/hash-id.py

Walkthrough

Cracking Basic Hashes

What type of hash is hash1.txt?

According to hash-id MD5 is the most likely format.

cat hash1.txt
python3 hash-id.py 2e728dd31fb5949bc39cac5a9f066498

What is the cracked value of hash1.txt?

What type of hash is hash2.txt?

SHA-1 is the most likely possible hash.

What is the cracked value of hash2.txt

What type of hash is hash3.txt?

What is the cracked value of hash3.txt

What type of hash is hash4.txt?

What is the cracked value of hash4.txt

SHA-512 didn't work.

Hash was Whirlpool which hash-id also thought it could be.

Cracking Windows Authentication Hashes

What do we need to set the "format" flag to, in order to crack this?

Flag should be set to NT

What is the cracked value of this password?

Cracking /etc/shadow Hashes

What is the root password?

Single Crack Mode

Identified the hash as MD5 and added Jokers username to the file.

Cracking Password Protected Zip Files

Cracking Password Protected RAR Archives

Cracking SSH Keys with John

Last updated