Separating words in combinator attack with space
#1
I trying to find a way to put a space between words in a combinator attack with two or three dictionaries. I thought about appending or prepending the dictionaries with a rule for a space character. I have searched previous threads but can’t find anything that works when I try it. 
Any suggestions on how to do this would be greatly appreciated.
Reply
#2
Code:
hashcat -m 0 -a 1 -w 3 -j '$ ' hash.txt dict1.txt dict2.txt

note: on windows you might need to use "$ " instead (difference between the shells interpreting quotes and escaping dollar which sometimes would refer to variables)
Reply
#3
And if it needs to be more than two words wide, you can do something crude like this:

https://gist.github.com/roycewilliams/18...45692bccc2
~
Reply
#4
It worked like I needed it to. Thanks..
Reply