Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/ dcipher Public

Decipher hashes using online rainbow & lookup table attack services.

License

Notifications You must be signed in to change notification settings

k4m4/dcipher

Repository files navigation

dcipher Build Status

Decipher hashes using online rainbow & lookup table attack services.

Install

~ ❯❯❯ npm install dcipher

Usage

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'
});

API

dcipher(hash, [options])

Returns the plaintext value of a hash.

hash

Type: string

Hash to decipher.

options

timeout

Type: number

Timeout in milliseconds after which a request is considered failed. Default: 5000.

Supported Hashes

Supported Encodings

Credits

  • dcipher depends on the following online rainbow table services:
    • Hash Toolkit - Hash Toolkit Hash Decrypter enables you to decrypt/reverse a hash in various formats into their original text. Hashes are often used to store passwords securely in a database.
    • GromWeb - MD5 & SHA conversion and reverse lookup service.
    • MD5Hashing - Yet another hash conversion and reverse lookup service.

Related

License

MIT © Nikolaos Kamarinakis

About

Decipher hashes using online rainbow & lookup table attack services.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

AltStyle によって変換されたページ (->オリジナル) /