![]() |
How to use dictionary input but first convert to sha256 - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: How to use dictionary input but first convert to sha256 (/thread-3743.html) |
How to use dictionary input but first convert to sha256 - dubmaniac - 10-15-2014 Hi, I would like to know how to use passphased sha256 as dictionary input. So i have a txt files with passphrases which need to be converted to sha256sum, this output is then used in hashcat. I could convert the whole txt file to sha256 first but I want to use the rule files as well.. Any ideas? RE: How to use dictionary input but first convert to sha256 - undeath - 10-15-2014 what the fuck did i just read? edit: try Code: xargs -I_ sh -c 'echo -n "_" | sha256sum' <<(cat wordlist) | cut -d\ -f1 |