[SOLVED] Specify wordlist file format
#1
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
Reply
#2
Just do a cut -d: -f2 founds.txt > cutfounds.txt
Reply
#3
Great, this is so much faster. I guess I should have looked into bash tools
Reply