hashcat Forum
input 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: input format (/thread-6990.html)



input format - tgbrsrot - 11-03-2017

i have a file with the format username:md5hash:email
how can i make hashcat read this format? any output format is fine
my current command line is

hashcat64.exe -m 0 -a 0 -o cracked.txt -r rules/dive.rule input.txt passwordlist.txt


RE: input format - atom - 11-06-2017

You can not, you need to preprocess your hashlist. Something like

cut -d: -f2 < input.txt > input_chopped.txt