Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/hack.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
// Below is a hash
// Use your hacking skills to crack it!

// Steps to crack the hash
// Find out what type of algorithm is used to generate hash code
// Normally this can be found using length of hash generated
// given hash is 32 characters long so it is MD5
const hash = '5e7d28e2cfff93edefb2d15abad07ec5';


// When you figure it out, create a Pull Request on github with value.
// First correct PR wins a Lifetime PRO membership and T-shirt

///// ANSWER /////

// Cracking the hash is very easy
// Goto https://www.md5online.org/md5-decrypt.html and enter the hash
// This will give you the string that is hashed
// Finally thanks for the challenge
const hacked = 'superhacker';