what's the hash type of $99$ - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: what's the hash type of $99$ (/thread-1418.html) |
what's the hash type of $99$ - perlish - 07-29-2012 chapcrack for ms-chapV2 https://github.com/moxie0/chapcrack so anybody know the hash type of $99$ ? Can I use plus or lite instead of Cloudcracker ? thank you ! ./chapcrack.py parse -i tests/pptp.cap Got completed handshake [] Cracking K3............. User = moxie C1 = 1c93abce81540068 C2 = 6baeca315f348469 C3 = 256420598a73ad49 P = 6d0e1c056cd94d5f K3 = c3d40000000000 CloudCracker Submission = $99$<removed> RE: what's the hash type of $99$ - perlish - 07-29-2012 (07-29-2012, 11:32 AM)box Wrote: salted wordpress? I dont think so,because the cloudcracker said they can crack it in 1 day. RE: what's the hash type of $99$ - box - 07-29-2012 Ok so I'm tired and accidently deleted my post when I ment to edit it... I looked over this again and I'm almost positive the "cloudcracker submission" isn't even a hash It's base64 I'm not sure what the $99 is though... And...... looking at this.... https://github.com/moxie0/chapcrack/blob/master/chapcrack/commands/ParseCommand.py just confirmed that it's base64.... ok time for sleep.... RE: what's the hash type of $99$ - ava1ar - 08-19-2012 (07-29-2012, 07:35 PM)box Wrote: Ok so I'm tired and accidently deleted my post when I ment to edit it... I looked over this again and I'm almost positive the "cloudcracker submission" isn't even a hash It's base64 I'm not sure what the $99 is though... Your are absolutely correct, this is line from the sources: print "CloudCracker Submission = $99$%s" % base64.b64encode("%s%s%s%s" % (plaintext, c1, c2, k3[0:2])) Looks like $99$ is just a unique id for CloudCracker to identify hashed data for decription produced by chapcrack. |