Password Cracking Challenge 1 - Hashed

Prompt

Create hashes for these potential passwords.


Answers

Q1 (10 pts) - Create the MD5 hash of this password: hashbrowns3105
bc8293cbbc9f1271fa85b850c12c07da

Q2 (10 pts) - Create the SHA1 hash of this password: 01vegetables459
983f29946a7a17a4f5dc5f055a7e6f271c313e9f

Q3 (10 pts) - Create the SHA256 hash of this password: Dk3J-fishhash-4144
3d7dc0e5417698cb699dec551bdfbf685cd175e7f5e80420fef337fa8230ea5a


Steps I Took

Used CLI for this

Q1 — echo -n “hashbrowns3105” md5sum
Q2 — echo -n “01vegetables459” sha1sum
Q3 — echo -n “Dk3J-fishhash-4144” sha256sum

Screenshot