Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Process to get string from hash #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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';