hashcat Forum
Separating words in combinator attack with space - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: Separating words in combinator attack with space (/thread-8627.html)



Separating words in combinator attack with space - Labbr8 - 09-04-2019

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.


RE: Separating words in combinator attack with space - philsmd - 09-04-2019

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)


RE: Separating words in combinator attack with space - royce - 09-04-2019

And if it needs to be more than two words wide, you can do something crude like this:

https://gist.github.com/roycewilliams/18e3fb14b97cc05eb95a5645692bccc2


RE: Separating words in combinator attack with space - Labbr8 - 09-05-2019

It worked like I needed it to. Thanks..