
ऑनलाइन रेनबो और लुकअप टेबल अटैक सेवाओं का उपयोग करके हैश को डिकोड करें।
ऑनलाइन रेनबो और लुकअप टेबल अटैक सेवाओं का उपयोग करके हैश को डिसाइफर करें।
~ ❯❯❯ 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'
});
हैश का प्लेनटेक्स्ट मान लौटाता है।
Type: string
डिसाइफर करने के लिए हैश।
Type: number
मिलीसेकंड में टाइमआउट जिसके बाद अनुरोध विफल माना जाता है। डिफ़ॉल्ट: 5000।
dcipher निम्नलिखित ऑनलाइन रेनबो टेबल सेवाओं पर निर्भर करता है:
MIT © Nikolaos Kamarinakis