Part 1: Password

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/25019a41-a976-4b4a-ad13-fe09c549beb1/password.png

This first stage of the challenge provides us with hash.txt which contains the following hash:

$ cat hash.txt
aad3b435b51404eeaad3b435b51404ee:b269f3bb4933d8aa6597cfd2de75397e

Looking at this hash the 1st part is a LM hash and the 2nd part is the NTLM hash that we need to crack. Save the NTLM hash to ntlm.txt.

The description for this stage leads me to believe that the hash can be cracked with a Mask attack using hashcat.

$ hashcat -a 3 -m 1000 ntlm.txt -1 ?u?l?d -i --increment-min=5 ?1?1?1?1?1?1?1

The above command has several parameters;

$ hashcat --show ntlm.txt
b269f3bb4933d8aa6597cfd2de75397e:H4cky21

Fantastic we have the flag for part 1: H4cky21

Part 2: Scorching