dcipher – 使用彩虹和查找表的在线哈希破解
dcipher是一个基于JavaScript的在线哈希破解工具,可以使用在线彩虹和查找表攻击服务来破译哈希。
以编程方式破解密码的能力也是可以检查的每秒可能密码数量的函数。如果攻击者可以获得目标密码的哈希值,则此数字可以是数十亿或每秒数万亿,因为可以进行脱机攻击。
在这种情况下,dcipher使用在线哈希检查服务,它具有非常大的Rainbow Table预先计算的哈希集,以快速破解哈希值。
用于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'
});
Base64编码支持加密用于dcipher在线哈希破解
MD5
SHA1
SHA224
SHA256
SHA384
SHA512
RIPEMD320
当然,在哈希破解方面有很多选择:
- hashcat下载 - 密码哈希破解工具
- IGHASHGPU - 基于GPU的哈希破解 - SHA1,MD5和MD4
- crack.pl - SHA1和MD5哈希破解工具
你可以在这里下载dcipher:
https://www.77169.net/go?url=https://github.com/k4m4/dcipher/archive/master.zip
congtou