
Decipher hashes using online rainbow & lookup table attack services.
Decipher hashes using online rainbow & lookup table attack services.
~ ❯❯❯ npm install dcipher
const dcipher = require('dcipher');
dcipher('21232f297a57a5a743894a0e4a801fc3').then(plaintext => {
console.log(plaintext);
//=> 'admin'
});
dcipher('8843d7f92416211de9ebb963ff4ce28125932878').then(plaintext => {
console.log(plaintext);
//=> 'foobar'
});
dcipher('dW5pY29ybg==').then(plaintext => {
console.log(plaintext);
//=> 'unicorn'
});
Returns the plaintext value of a hash.
Type: string
Hash to decipher.
Type: number
Timeout in milliseconds after which a request is considered failed. Default: 5000.
dcipher depends on the following online rainbow table services:
MIT © Nikolaos Kamarinakis