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

Solved!! #20

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
28 changes: 19 additions & 9 deletions src/hack.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
///// Challenge /////

// Below is a hash
// Use your hacking skills to crack it!
const crypto = require('crypto');

const hash = '5e7d28e2cfff93edefb2d15abad07ec5';

function generateHash(text) {
return crypto.createHash('md5').update(text).digest('hex');
}

// 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 /////
function crackHash(targetHash) {
const wordlist = ['password', '123456', 'qwerty', 'superhacker'];
for (const word of wordlist) {
if (generateHash(word) === targetHash) {
return word;
}
}
return null;
}

const hacked = 'superhacker';
const cracked = crackHash(hash);

if (cracked) {
console.log(`Hash cracked! The password is: ${cracked}`);
} else {
console.log('Failed to crack the hash.');
}