04-30-2023, 05:23 AM
Code:
hashcat -m 9600 -a 3 hash.txt ?a?a?a?a?a?a
?a uses all possible characters and not only letters & numbers. So if you're only wanting both uppercase and lowercase letters & digits you will need to limit your keyspace to only select those options. See the wiki
https://hashcat.net/wiki/doku.php?id=hashcat
? | Charset
===+=========
l | abcdefghijklmnopqrstuvwxyz [a-z]
u | ABCDEFGHIJKLMNOPQRSTUVWXYZ [A-Z]
d | 0123456789 [0-9]
h | 0123456789abcdef [0-9a-f]
H | 0123456789ABCDEF [0-9A-F]
s | !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
a | ?l?u?d?s
b | 0x00 - 0xff