使用在线彩虹表和查找表攻击服务解密哈希。
~ ❯❯❯ 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'
});
返回哈希的明文值。
类型:string
要解密的哈希。
类型:number
超时时间(毫秒),超过此时间请求被视为失败。默认值:5000。
dcipher 依赖以下在线彩虹表服务:
MIT © Nikolaos Kamarinakis