
온라인 레인보우 테이블 및 조회 테이블 공격 서비스를 사용하여 해시를 해독합니다.
온라인 레인보우 테이블 및 조회 테이블 공격 서비스를 사용하여 해시를 복호화합니다.
~ ❯❯❯ 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