Cracking dumped Windows hashes

Resources:

Quick briefing about the different types of Windows hashes:

https://medium.com/@petergombos/lm-ntlm-net-ntlmv2-oh-my-a9b235c58ed4

LM Hashes

Dumped Windows hashes are typically in an LM:NT format. If the LM hash is aad3b435b51404ee, then that's just a NULL/empty hash, which means the password is hashed using NT.

If you have a non-null LM hash, Rainbow Tables can be used to crack them due to the technical limitations with LANMAN. For example, LM can only be 14 characters at a maximum with a character set of 46.

NT Hashes

You might often find NT be referenced as NTLM. NT/NTLM can be used interchangeably for the sake of this writing. NT hashes are much stronger than LM (and are the default in modern Windows systems).

Example: 7d3f11711c610f013c06959a5e98f2fd

hashcat -a 0 -m 1000 hashes.txt rockyou.txt

DCC2/MsCashv2

MsCashv2 is the hash for cached Active Directory credentials. This allows users to login to a domain joined machine even if the Domain Controller is down, preventing lookups.

Example: $DCC2$10240#username#hash

hashcat -a 0 -m 2100 hashes.txt rockyou.txt

Last updated