
オンラインのレインボー&ルックアップテーブル攻撃サービスを使用してハッシュを解読します。
~ ❯❯❯ 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