NTLM vs NTLMv2 Hashes + CrackMapExec
Cracking NTLM and NTLMv2 Hashes with John the Ripper & Testing with CrackMapExec
Introduction
In this guide, we will cover the process of cracking NTLM and NTLMv2 hashes using John the Ripper (John), passing these hashes to CrackMapExec (CME) for testing, and how to differentiate between NTLM and NTLMv2 hashes.
What is NTLM and NTLMv2?
NTLM (NT LAN Manager): This is an older authentication protocol used by Windows systems for network authentication. NTLM hashes are typically used in the Windows authentication process.
NTLMv2: This is an enhanced version of NTLM, designed to provide stronger security against brute-force and rainbow table attacks. NTLMv2 hashes are more resistant to certain types of attacks compared to the older NTLM hashes.
The main difference between NTLM and NTLMv2 is the authentication process. NTLMv2 provides stronger encryption, and the hash format used is different, making it more secure.
Cracking NTLM and NTLMv2 Hashes with John the Ripper
Step 1: Obtain NTLM/NTLMv2 Hashes
First, you need to obtain the NTLM or NTLMv2 hashes. These hashes can often be extracted from various sources, such as:
Windows SAM files (from
/etc/passwd
or/etc/shadow
)SMB shares and network authentication logs
Captured hashes from network traffic, particularly through tools like Responder, CrackMapExec, or SMBv1 enumeration tools.
Step 2: Prepare the Hash File
John the Ripper requires a specific format to crack NTLM or NTLMv2 hashes. If you already have hashes, they need to be formatted properly. NTLM hashes typically look like this:
username::domain:HASH
NTLMv2 hashes, on the other hand, are slightly different and have an extra layer of security. The format for NTLMv2 hashes looks like:
username::domain:HASH
Step 3: Use John to Crack NTLM and NTLMv2 Hashes:
This is what you use to crack NTLM hashes:
For cracking NTLMv2, use:
John will attempt to crack the hash using its built-in dictionary and other cracking algorithms (e.g., brute force, mask attack).
Step 4: Monitor Cracking Process
Once the process is initiated, John will begin to attempt to crack the hash. You can monitor its progress by checking the status with:
If you want to stop cracking and resume later, you can use:
Step 5: Crack Hashes with a Wordlist
If the default attack doesn't yield a result, you can use a custom wordlist to increase the likelihood of success:
Step 6: Crack NTLMv2 with Additional Options
If you're dealing with NTLMv2 hashes, cracking them may require additional rules or mask-based attacks to account for the stronger encryption. Here's an example using a mask attack:
This would try lowercase letters followed by two digits as the password pattern.
Testing Cracked Hashes with CrackMapExec
Once you have successfully cracked the NTLM or NTLMv2 hash, you can use CrackMapExec (CME) to test whether the hash works for authentication on a target system.
Step 1: Install CrackMapExec
If you don’t have CrackMapExec installed, you can install it using the following:
Step 2: Pass the Cracked Hash to CrackMapExec
Once you have the cracked hash, you can pass it to CME by specifying the target IP, username, and the cracked password or hash. For example, to test an NTLM hash on a target SMB service, use the following CME command:
For example:
If you’re working with NTLMv2, the process is the same:
If the hash is valid, CrackMapExec will show a successful authentication message.
Step 3: Using Other Services
You can also test NTLM/NTLMv2 hashes on other services such as RDP or SMB using CME. The command structure remains the same:
For RDP:
For SMB:
Identifying the Difference Between NTLM and NTLMv2 Hashes
To differentiate between NTLM and NTLMv2 hashes:
NTLM Hash Format: Typically shorter and less complex, usually 32 characters (hexadecimal).
Example:
NTLMv2 Hash Format: Longer and more complex, with 128 characters (hexadecimal).
Example:
CrackMapExec Testing: When using CrackMapExec, if the authentication succeeds with an NTLMv2 hash, the output will confirm the authentication method as NTLMv2. If you use an NTLM hash, the output will show the older NTLM authentication method.
Conclusion
By following the steps outlined in this guide, you can effectively crack NTLM and NTLMv2 hashes using John the Ripper, pass them to CrackMapExec for testing, and identify the differences between NTLM and NTLMv2 hashes. This process is valuable for penetration testing and security assessments, as cracking these hashes can provide unauthorized access to network services such as SMB, RDP, and more.
Last updated