Office 2013 Hash only 2000 H/s
#1
Wink 
Hello,

I would like to crack an Office 2013 Hash type. It`s a simple password than only consists of letters and numbers and is not more than 6 characters long.

I have tried the following command: >hashcat -m 9600 -a 3 hash.txt ?a?a?a?a?a?a - O
I have tried this on my notebook with a GeForce GTX 1050. In the status, I could see that only 2000 H/s being calculated and the progress takes about 10 years.

Have i done something wrong or is it simply due to the hardware of the notebook?
I wolud appreciate an answer.

Best regards, Mankut
Reply
#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
#3
Thank you.
I made a mistake. I have changed it and indicated that the password only has 6 digits.
>hashcat -m 9600 -a 3 hash.txt -1 ?l?u?d --ingrement --increment-min=6 ?1?1?1?1?1?1
However, it still takes 91 days, if I read correctly, the hash type 9600 is also much harder to hash, which I think is the reason for this.
Perhaps I will try to further narrow down the possibilities. ( -1 eruiopasdfghlcbnmERUIOPASDFGHLCBNM0123456789 ) But that's not much faster.

Or does anyone else have another idea?
Reply