dcipher is a JavaScript-based online hash cracking tool to decipher hashes using online rainbow & lookup table attack services.
The capacity to programmatically crack passwords is also a function of the number of possible passwords per second which can be checked. If a hash of the target password is available to the attacker, this number can be in the billions or trillions per second, since an offline attack is possible.
In this case dcipher uses online hash checking services, which have extremely large Rainbow Table sets of pre-computed hashes, to rapidly find hash collisions.
Usage for dcipher Online Hash Cracking Tool
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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' }); |
Supported Hashes for dcipher online hash cracking
- Base64
- MD5
- SHA1
- SHA224
- SHA256
- SHA384
- SHA512
- RIPEMD320
Of course there’s plenty of options when it comes to hash cracking:
– hashcat Download – Password Hash Cracking Tool
– IGHASHGPU – GPU Based Hash Cracking – SHA1, MD5 & MD4
– crack.pl – SHA1 & MD5 Hash Cracking Tool
You can download dcipher here:
Or read more here.