how to read wordlist with separator :
#1
Information 
I would like a support.



How can I make the wordlist be read user:pass



And let her check both possibilities.



I tryed this >


Code:
hashcat64.exe -w 3 -m 0 --username --force ComboEncrypted.txt -p : wordlist -O




but no worked
Reply
#2
I would like you to not use a big font. I do need glasses to see properly but luckily it's not as bad.

To answer your question: It's not supported and most likely never will.
Reply
#3
Sorry, I thought that would make it better.
Is there any way to do what I want to do differently?
Reply
#4
Code:
sed 's/^[^:]*://' user_word.txt > word.txt
Reply
#5
more like
Code:
sed 's/^\([^:]*\):\(.*\)$/\1\n\2/' user_word.txt > all.txt
Reply
#6
if you really need both, you could just replace the : with new lines:
Code:
sed 's/:/\n/' user_word.txt > all.txt

undeath edit: ok, you win
Reply