hashcat Forum

Full Version: Separating words in combinator attack with space
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
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)
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
It worked like I needed it to. Thanks..