hashcat Forum

Full Version: How to save all generated hashes to file?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I have txt file with 5 billion words. I need generate sha256 hashes for each of them. How can I do this with hashcat?
hashcat does not provide an interface for such a thing.
Bash one liner for the win:
Code:
while read -r line; do echo "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
ftfy

(08-17-2017, 09:22 AM)MrMeeseeks Wrote: [ -> ]Bash one liner for the win:
Code:
while read -r line; do echo -n "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
Thank you!