11-24-2010, 06:35 AM
(This post was last modified: 11-24-2010, 06:37 AM by mastercracker.)
The NTLM algorithm is slightly different since it use unicode. As a result, the length limit for both left and right argument is 7 chars. In your case, any word in the dictionary that is longer than 7 will be skipped. The following might work if OclHashcat applies the rules to the word before discarding it:
oclHashcat.exe -m 1000 -j cx17 example.hash example.dict ?l?d?d?d?d
Explanation of the rules:
c --> capitalize
x17 --> Extract substring starting at 1 and of length 7
then, in the right section, we make the total length to 12 using lowercase and the last 4 digits.
oclHashcat.exe -m 1000 -j cx17 example.hash example.dict ?l?d?d?d?d
Explanation of the rules:
c --> capitalize
x17 --> Extract substring starting at 1 and of length 7
then, in the right section, we make the total length to 12 using lowercase and the last 4 digits.