[SOLVED] Specify wordlist file format - 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: [SOLVED] Specify wordlist file format (/thread-10559.html) |
[SOLVED] Specify wordlist file format - guanicoa - 12-27-2021 Hi, Hope this has not been asked before, at least I could not find an answer. I have some wordlists from different leaks in the format "SHA1 Hash : PWD". The files are quite large, so using a simple python script to extract the pwd into a file is very slow. Is there a way to tell hashcat the format of the wordlist and to only look at the characters after the ":"? thanks RE: Specify wordlist file format - kevtheskin - 12-27-2021 Just do a cut -d: -f2 founds.txt > cutfounds.txt RE: Specify wordlist file format - guanicoa - 12-28-2021 Great, this is so much faster. I guess I should have looked into bash tools |