Wordlist word spacing
#2
"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


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