Can you run hashcat backwards? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Can you run hashcat backwards? (/thread-6149.html) |
Can you run hashcat backwards? - cityscab - 12-24-2016 Can you use hashcat to generate hashes from a wordlist? RE: Can you run hashcat backwards? - Xanadrel - 12-24-2016 No. RE: Can you run hashcat backwards? - cityscab - 12-24-2016 I kind of figured. Was a shot in the dark. RE: Can you run hashcat backwards? - cityscab - 12-24-2016 don't suppose you could help me with my other question? RE: Can you run hashcat backwards? - Waffle - 12-24-2016 For what it is worth, you can use mdxfind for that. For example, to generate MD5's from a list call "words.txt": echo | mdxfind -z words.txt >words.md5 The -z causes it to "match" all of the hashes; the echo | gives it a null hash list. You can do the same with -f /dev/null You can also generate more than one type of hash at the same time: echo | mdxfind -z -h ^md5$,^sha1$,^sha256$,^sha512$ words.txt >words.many will generate md5, sha1, sha256 and sha512 hashes for every word. RE: Can you run hashcat backwards? - atom - 12-25-2016 You can also use hashcats tools/test.pl in passthrough mode to generate them |