312-50V10 · Question #345
A company is using Windows Server 2003 for its Active Directory (AD). What is the most efficient way to crack the passwords for the AD users?
The correct answer is C. Perform an attack with a rainbow table.. Windows Server 2003 stores passwords using weak LM hashes by default, making precomputed rainbow table attacks the most efficient cracking method.
Question
A company is using Windows Server 2003 for its Active Directory (AD). What is the most efficient way to crack the passwords for the AD users?
Options
- APerform a dictionary attack.
- BPerform a brute force attack.
- CPerform an attack with a rainbow table.
- DPerform a hybrid attack.
How the community answered
(34 responses)- A6% (2)
- B3% (1)
- C88% (30)
- D3% (1)
Why each option
Windows Server 2003 stores passwords using weak LM hashes by default, making precomputed rainbow table attacks the most efficient cracking method.
A dictionary attack tests candidate words one at a time and must compute each hash at runtime, making it slower than using precomputed rainbow tables.
A brute force attack exhaustively tries all character combinations and is the slowest method, impractical against most passwords even with weak LM hashing.
Windows Server 2003 AD uses the LAN Manager (LM) hash by default, which converts passwords to uppercase and splits them into two independent 7-character halves before hashing. Rainbow tables contain precomputed hash-to-plaintext mappings for LM hashes, enabling near-instant lookups without computing hashes at runtime - far faster than any on-the-fly attack method against this specific hash type.
A hybrid attack combines dictionary words with character mutations and is more efficient than pure brute force, but still slower than precomputed rainbow table lookups against LM hashes.
Concept tested: Rainbow table attack against LAN Manager password hashes
Source: https://learn.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/network-security-do-not-store-lan-manager-hash-value-on-next-password-change
Topics
Community Discussion
No community discussion yet for this question.