Posts: 2
Threads: 1
Joined: Jul 2019
07-23-2019, 08:48 AM
(This post was last modified: 07-23-2019, 08:54 AM by zigcoding.)
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
Posts: 17
Threads: 2
Joined: Jun 2010
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.
Posts: 2
Threads: 1
Joined: Jul 2019
07-23-2019, 10:42 AM
(This post was last modified: 07-23-2019, 10:42 AM by zigcoding.)
Sorry, I thought that would make it better.
Is there any way to do what I want to do differently?
Posts: 2,267
Threads: 16
Joined: Feb 2013
Code:
sed 's/^[^:]*://' user_word.txt > word.txt
Posts: 2,301
Threads: 11
Joined: Jul 2010
07-23-2019, 03:00 PM
(This post was last modified: 07-23-2019, 03:03 PM by undeath.)
more like
Code:
sed 's/^\([^:]*\):\(.*\)$/\1\n\2/' user_word.txt > all.txt
Posts: 2,267
Threads: 16
Joined: Feb 2013
07-23-2019, 08:07 PM
(This post was last modified: 07-24-2019, 12:37 AM by undeath.)
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