dcipher

dcipher是一个基于JavaScript的在线哈希破解工具,可以使用在线彩虹和查找表攻击服务来破译哈希。

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

以编程方式破解密码的能力也是可以检查的每秒可能密码数量的函数。如果攻击者可以获得目标密码的哈希值,则此数字可以是数十亿或每秒数万亿,因为可以进行脱机攻击。

在这种情况下,dcipher使用在线哈希检查服务,它具有非常大的Rainbow Table预先计算的哈希集,以快速找到哈希冲突。

用于dcipher在线哈希破解工具

 1 const dcipher = require('dcipher');
 2  
 3 dcipher('21232f297a57a5a743894a0e4a801fc3').then(plaintext => {
 4     console.log(plaintext);
 5     //=> 'admin'
 6 });
 7  
 8 dcipher('8843d7f92416211de9ebb963ff4ce28125932878').then(plaintext => {
 9     console.log(plaintext);
10     //=> 'foobar'
11 });
12  
13 dcipher('dW5pY29ybg==').then(plaintext => {
14     console.log(plaintext);
15     //=> 'unicorn'
16 });

支持加密用于dcipher在线哈希破解

  • Base64编码
  • MD5
  • SHA1
  • SHA224
  • SHA256
  • SHA3​​84
  • SHA512
  • RIPEMD320

当然,在哈希破解方面有很多选择:

- IGHASHGPU - 基于GPU的哈希破解 - SHA1,MD5和MD4

你可以在这里下载dcipher:

dcipher-master.zip

或者在这里阅读更多。

原文地址:https://www.cnblogs.com/youyouii/p/10014045.html