OSX 10.10 hash - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: OSX 10.10 hash (/thread-5399.html) |
OSX 10.10 hash - roggerx - 04-15-2016 I've been following this guide to get the plist and ended up generating a hash using this hash generator . I'm running hashcat 2.00 and also referenced this video I tried running this command Code: hashcat-cli64.exe -m 7100 -output-file=cracked.txt --remove hash.txt wordlists/ I end up getting Code: C:\Users\xxxxxxx\hashcat-2.00>hashcat-cli64.exe -m 7100 -output-file=cracked.txt --remove hash.txt wordlists/ Any idea what might be causing the problem? RE: OSX 10.10 hash - epixoip - 04-15-2016 Looks like you have some garbage characters before the start of the hash? hash.txt needs to be a plain ascii text file with no encoding, and only the hash itself should be in the file. RE: OSX 10.10 hash - roggerx - 04-16-2016 (04-15-2016, 08:25 PM)epixoip Wrote: Looks like you have some garbage characters before the start of the hash? hash.txt needs to be a plain ascii text file with no encoding, and only the hash itself should be in the file. Thank you! That was the answer. Resaving the text file solved the problem. RE: OSX 10.10 hash - roggerx - 04-16-2016 I'm currently looking into experimenting with mask attack. I'm reading the wiki right now and have a few questions . Would the command Code: command: -a 3 -1 ?l?d ?1?1?1?1?1 Another question I have is does hashcat run until it finds the password or until it's finished running through all possible options? RE: OSX 10.10 hash - epixoip - 04-16-2016 The options you provided would search for loweralphanumeric passwords that are exactly five characters long. With these options, hashcat will run until it either finds the password, or has exhausted the entire loweralphanumeric len 5 keyspace. RE: OSX 10.10 hash - roggerx - 04-17-2016 Thanks! So if I do something like this 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 it would search for loweralphanumeric passwords that are 4-10 character long? RE: OSX 10.10 hash - undeath - 04-17-2016 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. RE: OSX 10.10 hash - roggerx - 04-17-2016 (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 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 |