hashcat mask file with specific letters at each placeholder
#2
You could always create part of it into a dictionary using maskprocessor https://hashcat.net/wiki/doku.php?id=maskprocessor
e.g.: mp64.exe -1 1234 -2 ABC -3 "$%&(" -4 NOP ?1?2?3?4 -o left.dict
then run that through a left hybrid attack, which is attack mode 6.
e.g.: hashcat64.exe -w3 -m 3200 bcrypt.hash -1 mno -a 6 c:\hashcat360\left.dict ?1

I used a random bcrypt hash, but you would replace it with the hash file you have and the correct hash mode ###.

Or you could create a dict with the right portion of it and use a custom mask for the left using a right hybrid attack.
Or you could create two dicts with maskprocessor and then combine them with the combinator hashcat-util, then run a normal dict attack.

There is probably a more efficient ways of doing this, but this is how I would go about it.


Messages In This Thread
RE: hashcat mask file with specific letters at each placeholder - by MrMeeseeks - 07-08-2017, 12:47 AM