LM to NTLM Converting - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: LM to NTLM Converting (/thread-4686.html) |
LM to NTLM Converting - bismark - 09-17-2015 So with our new rig I did some testing and oclHashcat beat ophcrack/rcracki_mt/john for cracking LM hashes (was surprised about the rainbow tables times being higher). The problem is oclHashcast only returns the LM version of the password, not the proper case version. Now with JtR I could do something like the following: Code: $ john --format=LM hashes.pwdump Not the most elegant but it does work. Is there something similar that could be done with oclHashcat? RE: LM to NTLM Converting - coolbry95 - 09-17-2015 (09-17-2015, 03:43 AM)bismark Wrote: So with our new rig I did some testing and oclHashcat beat ophcrack/rcracki_mt/john for cracking LM hashes (was surprised about the rainbow tables times being higher). something like this may need to do combinator to join the LM halves back together. I don't remember if oclhashcat does that for you. Code: oclhashcat --show -m 3000 hashes.pwdump > LM.wordlist |