01-28-2020, 12:17 AM
For your mask, if you're wanting to do uppercase + digits you will need to create a custom mask using the prebuilt commands of -1 to -4. So instead of interleaving your mask with ?u and ?d we need to define that we want UPPERCASE & DIGIT characters to be searched in all positions of our attack. So create a custom mask using -1 and define ?u?d.
So for example:
hashcat64.exe -m 2500 -a 3 -1 ?u?d hash.hccapx ?1?1?1?1?1?1?1?1?1?1
This attack would do all uppercase & digits on every character (10 length). However, this attack isn't very smart as itll take forever to do, your trying a 36^10 keyspace or 3,656,158,440,062,976 guesses. Dependent on your hardware, it'll probably take more than a lifetime to attempt this. With my hardware it's only 386 years, better get started now!
So for example:
hashcat64.exe -m 2500 -a 3 -1 ?u?d hash.hccapx ?1?1?1?1?1?1?1?1?1?1
This attack would do all uppercase & digits on every character (10 length). However, this attack isn't very smart as itll take forever to do, your trying a 36^10 keyspace or 3,656,158,440,062,976 guesses. Dependent on your hardware, it'll probably take more than a lifetime to attempt this. With my hardware it's only 386 years, better get started now!