Wordlist word spacing
#3
(08-10-2013, 02:11 PM)philsmd Wrote: "wordswithoutspaces" ?
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
Thanks!

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


Messages In This Thread
Wordlist word spacing - by funtrustboi33 - 08-10-2013, 02:02 PM
RE: Wordlist word spacing - by philsmd - 08-10-2013, 02:11 PM
RE: Wordlist word spacing - by funtrustboi33 - 08-10-2013, 02:20 PM
RE: Wordlist word spacing - by philsmd - 08-10-2013, 02:30 PM
RE: Wordlist word spacing - by funtrustboi33 - 08-10-2013, 02:40 PM