OSX 10.10 hash
#8
(04-17-2016, 12:26 AM)undeath Wrote: no, it would throw a syntax error because you're missing a dash in front of "output-file". After you fix that it will run 4-5 length because that's where your mask ends.

Thanks for that. I misunderstood the "?l?d"before the mask as being part of it.  So this would do it?

Code:
hashcat-cli64.exe -m 7100 -a 3 --increment --increment-min 4 --increment-max 10 --output-file=cracked.txt --remove hash.txt -1 ?l?d ?1?1?1?1?1?1?1?1?1?1

The more I read the wiki the more questions I have. In this part for example.

Quote:Here is a single example. We want to crack the password: Julia1984
In traditional Brute-Force attack we require a charset that contains all upper-case letters, all lower-case letters and all digits (aka “mixalpha-numeric”). The Password length is 9, so we have to iterate through 62^9 (13.537.086.546.263.552) combinations. Lets say we crack with a rate of 100M/s, this requires more than 4 years to complete.
In Mask attack we know about humans and how they design passwords. The above password matches a simple but common pattern. A name and year appended to it. We can also configure the attack to try the upper-case letters only on the first position. It is very uncommon to see an upper-case letter only in the second or the third position. To make it short, with Mask attack we can reduce the keyspace to 52*26*26*26*26*10*10*10*10 (237.627.520.000) combinations. With the same cracking rate of 100M/s, this requires just 40 minutes to complete.

Is that 40 minutes with a specific type of command like 
Code:
-a 3 -1 ?l?u ?1?l?l?l?l?l19?d?d

or just something like 
Code:
-a 3 ?a?a?a?a?a?a?a?a


Messages In This Thread
OSX 10.10 hash - by roggerx - 04-15-2016, 08:18 PM
RE: OSX 10.10 hash - by epixoip - 04-15-2016, 08:25 PM
RE: OSX 10.10 hash - by roggerx - 04-16-2016, 09:50 AM
RE: OSX 10.10 hash - by roggerx - 04-16-2016, 04:14 PM
RE: OSX 10.10 hash - by epixoip - 04-16-2016, 06:41 PM
RE: OSX 10.10 hash - by roggerx - 04-17-2016, 12:07 AM
RE: OSX 10.10 hash - by undeath - 04-17-2016, 12:26 AM
RE: OSX 10.10 hash - by roggerx - 04-17-2016, 11:17 AM