how to read wordlist with separator : - 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: how to read wordlist with separator : (/thread-8507.html) |
how to read wordlist with separator : - zigcoding - 07-23-2019 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 RE: how to read wordlist with separator : - hops - 07-23-2019 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. RE: how to read wordlist with separator : - zigcoding - 07-23-2019 Sorry, I thought that would make it better. Is there any way to do what I want to do differently? RE: how to read wordlist with separator : - philsmd - 07-23-2019 Code: sed 's/^[^:]*://' user_word.txt > word.txt RE: how to read wordlist with separator : - undeath - 07-23-2019 more like Code: sed 's/^\([^:]*\):\(.*\)$/\1\n\2/' user_word.txt > all.txt RE: how to read wordlist with separator : - philsmd - 07-23-2019 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 |