Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
dcipher — Decipher hashes using online rainbow & lookup table attack services. | Kitploit
Tools/GitHubGitHub/k4m4/dcipher
Password CrackingHash AnalysisCryptographyCTF
GitHubk4m4/dcipher

dcipher

Decipher hashes using online rainbow & lookup table attack services.

View Repository
153233 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

dcipher Build Status

Decipher hashes using online rainbow & lookup table attack services.

Install

root@kitploit:~
~ ❯❯❯ npm install dcipher

Usage

root@kitploit:~
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

  • MD5
  • SHA1
  • SHA224
  • SHA256
  • SHA384
  • SHA512
  • RIPEMD320

Supported Encodings

  • Base64

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

  • dcipher-cli - CLI for this module

License

MIT © Nikolaos Kamarinakis

Download Tool