Posts: 6
Threads: 3
Joined: Jul 2016
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.
Posts: 2,267
Threads: 16
Joined: Feb 2013
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)
Posts: 930
Threads: 4
Joined: Jan 2015
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
~
Posts: 6
Threads: 3
Joined: Jul 2016
It worked like I needed it to. Thanks..