08-10-2013, 02:20 PM
(08-10-2013, 02:11 PM)philsmd Wrote: "wordswithoutspaces" ?Thanks!
yes, *hashcat reads line by line, regardless if there are spaces in some lines of your wordlist.
If you meant "wordswithspaces", yes they are tested as 1 plain and not split
If you instead want to split by space you can use a simple sed command etc:
sed 's! !\n!g' wordswithspaces_orig.txt > wordswithspaces_dict.txt
sort -u wordswithspaces_dict.txt > wordswithspaces_dict_sorted.txt
I have downloaded a bunch of wordlist .txt files and most of them are all one long word, I was wondering if there is a way to take those giant words and space them out (other then manually doing it). Im using windows btw