11-06-2021, 10:07 AM
(11-06-2021, 03:11 AM)slyexe Wrote: You're not far off, but your using hashcats predefined character set rather than using your custom character set.
So you've already defined -1 as your charset1.hcchr file so that will be what you will need to put into your hcmask file rather than ?b
my1.hcmask
Code:?1
?1?1
?1?1?1
etc..
You can also accomplish this by using increments (-i) and defining minimum and maximum attack lengths.
Code:hashcat.exe -m 16200 -w 3 -a 3 -i --increment-min 1 --increment-max 12 -1 abdehimnoz123 .\hash.txt ?1?1?1?1?1?1?1?1?1?1?1?1
This will attempt your custom character set from 1 character long to 12 characters long.
Hey Slyexe
Thanks for your reply
I've replaced the mask with ?1 but now it doesnt seem to get the Custom-charset.
When I try to run this:
Code:
.\hashcat.exe -m 16200 -a 3 -w 3 -1 abdehimnoz123 .\hash.txt .\masks\my1.hcmask
I get te following errors:
Code:
Custom-charset 1 is undefined.
I've also tried to put the charset in a file like this:
Code:
.\hashcat.exe -m 16200 -a 3 -w 3 -1 .\charsets\charset1.hcchr .\hash.txt .\masks\my1.hcmask
Do you have any idea how I can get rid of the error?
Kind Regards,
Degus22