Office 2013 Hash only 2000 H/s
#2
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
Reply


Messages In This Thread
Office 2013 Hash only 2000 H/s - by Mankut - 04-29-2023, 06:20 PM
RE: Office 2013 Hash only 2000 H/s - by slyexe - 04-30-2023, 05:23 AM
RE: Office 2013 Hash only 2000 H/s - by Mankut - 04-30-2023, 08:51 AM