08-16-2017, 07:11 PM
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?
How to save all generated hashes to file?
|
08-16-2017, 07:11 PM
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?
08-16-2017, 07:24 PM
hashcat does not provide an interface for such a thing.
08-17-2017, 09:22 AM
Bash one liner for the win:
Code: while read -r line; do echo "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
08-17-2017, 10:41 AM
08-17-2017, 12:17 PM
Thank you!
|
« Next Oldest | Next Newest »
|