This is an old revision of this page, as edited by 86.73.150.126 (talk) at 21:34, 23 November 2010 (→External links). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 21:34, 23 November 2010 by 86.73.150.126 (talk) (→External links)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff) "Lanman" redirects here. For other uses, see Lanman (disambiguation).LM hash, LanMan, or LAN Manager hash is the primary hash that Microsoft LAN Manager and Microsoft Windows versions prior to Windows NT used to store user passwords. Support for the legacy protocol continued in later versions of Windows for backward compatibility, but was recommended by Microsoft to be turned off by administrators; as of Windows Vista, the protocol is disabled by default, but continues to be used by some non-Microsoft CIFS implementations.
Algorithm
The LM hash is computed as follows:
- The user’s ASCII password is converted to uppercase.
- This password is null-padded to 14 bytes.
- The “fixed-length” password is split into two 7-byte halves.
- These values are used to create two DES keys, one from each 7-byte half, by converting the seven bytes into a bit stream, and inserting a null bit after every seven bits (so 1010100 becomes 01010100). This generates the 64 bits needed for the DES key.
- Each of these keys is used to DES-encrypt the constant ASCII string “
KGS!@#$%
”, resulting in two 8-byte ciphertext values. The DES CipherMode should Set to ECB, and PaddingMode should set to NONE. - These two ciphertext values are concatenated to form a 16-byte value, which is the LM hash.
Security weaknesses
Although it is based on DES, a well-studied block cipher, the LM hash is not a true one-way function as the password can easily be determined from the hash because of several weaknesses in its implementation. Firstly, the password characters are restricted to the ANSI character set. Secondly, passwords longer than 7 characters are divided into two pieces and each piece is hashed separately. Thirdly, all lower case letters in the password are changed to upper case before the password is hashed. The second weakness allows each half of the password to be attacked separately. While there are different passwords made of up to 14 printable ASCII characters, there would be only different 7 character password pieces using the same character set. Lowercase characters are converted to uppercase to further reduce the key space for each half to . By mounting a brute force attack on each half separately, modern desktop machines can crack alphanumeric LM hashes in a few hours.
LM hash does not include salt, therefore a time-memory trade-off cryptanalysis attack, such as rainbow tables, is also feasible. In 2003, Ophcrack, an implementation of the rainbow table technique, was published. It specifically targets the weaknesses of LM encryption, and includes pre-computed data sufficient to crack virtually all alphanumeric LM hashes in a few seconds. Many cracking tools, e.g. RainbowCrack, L0phtCrack and Cain, now incorporate similar attacks and make cracking of LM hashes trivial. However, because LM hashing is not used for passwords of 15 characters or longer, these are relatively strong.
Workarounds
To address the security weaknesses inherent in LM encryption, Microsoft introduced the NTLM algorithm with Windows NT 3.1. NTLM added Unicode support, the RC4 cipher (which does not require any padding or truncating that would simplify the key). On the negative side, the same DES algorithm is used with only 56-bit encryption. Furthermore, many Windows clients were configured by default to send both the LMHash and the NTLM hash, so the use of the NTLM hash provided no additional security while the weaker hash was still present.
While LAN Manager is considered obsolete and current Windows operating systems use the stronger NTLMv2 or Kerberos hashing methods, Windows systems before Windows Vista/Windows Server 2008 still compute and store the LAN Manager hash by default for compatibility with LAN Manager and Windows Me or earlier clients, as well as some 16-bit applications that are still in use on the most current versions of Windows. It is considered good security practice to disable this feature where it isn't needed. Microsoft claimed that support for LM would be completely eliminated in the Windows Vista operating system. However Windows Vista and Windows Server 2008 still include support for the LM hash, although it is now disabled by default; the feature can be enabled for local accounts via a security policy setting, and for Active Directory accounts by applying the same setting to domain controllers. The same method can be used to turn the feature off in Windows 2000, Windows XP and NT. Users can also prevent a LM hash from being generated for their password by using a password at least 15 characters in length.
Reasons for continued use
Many legacy third party CIFS implementations have taken considerable time to add support for the stronger protocols that Microsoft has replaced LM Hashing with because the open source communities supporting these libraries first had to reverse engineer the newer protocols—Samba took 5 years to add NTLMv2 support, while JCIFS took 10 years.
Product | NTLMv1 support | NTLMv2 support |
---|---|---|
Windows NT 3.1 | RTM (1993) | Not supported |
Windows NT 3.5 | RTM (1994) | Not supported |
Windows NT 3.51 | RTM (1995) | Not supported |
Windows NT 4 | RTM (1996) | Service Pack 4 (25 October 1998) |
Windows 95 | Not supported | Directory services client (released with Windows 2000 Server, 17 February 2000) |
Windows 98 | RTM | Directory services client (released with Windows 2000 Server, 17 February 2000) |
Windows 2000 | RTM (17 February 2000) | RTM (17 February 2000) |
Windows ME | RTM (14 September 2000) | Directory services client (released with Windows 2000 Server, 17 February 2000) |
Samba | ? | Version 3.0 (24 September 2003) |
JCIFS | Not supported | Version 1.3.0 (25 October 2008) |
Poor patching regimes subsequent to software releases supporting the feature becoming available have contributed to some organisations continuing to use LM Hashing in their environments, even though the protocol is easily disabled in Active Directory itself.
Lastly, prior to the release of Windows Vista, many unattended build processes still used a DOS boot disk (instead of Windows PE) to start the installation of Windows using WINNT.EXE, something that requires LM hashing to be enabled for the legacy LAN Manager networking stack to work.
See also
Notes
- If the password is more than 14 characters long, the LMHash cannot be computed.
References
- "Chapter 3 - Operating System Installation: The LMHash". Microsoft. Retrieved 2009-06-21.
- Glass, Eric (2003). "The NTLM Authentication Protocol". Retrieved 2006-06-05.
{{cite web}}
: Unknown parameter|curly=
ignored (help) - ^ "Cluster service account password must be set to 15 or more characters if the NoLMHash policy is enabled". Microsoft. 2006-10-30. Retrieved 2009-06-21.
- "How to prevent Windows from storing a LAN manager hash of your password in Active Directory and local SAM databases". Microsoft Knowledge Base. Retrieved 2006-06-05.
{{cite web}}
: Unknown parameter|curly=
ignored (help) - Johansson, Jesper (2006). "The Most Misunderstood Windows Security Setting of All Time". TechNet Magazine. Retrieved 2007-01-08.
{{cite journal}}
: Unknown parameter|month=
ignored (help) - How to prevent Windows from storing a LAN manager hash of your password in Active Directory and local SAM databases
- "Windows NT 4.0 Service Pack 4 Readme.txt File (40-bit)". Microsoft. 1998-10-25. Retrieved 2010-05-27.
- "The Samba Team announces the first official release of Samba 3.0". samba.org. 2003-09-24. Retrieved 2010-05-27.
- "The JCIFS library: News". Retrieved 2010-05-27.
External links
- Making a Faster Cryptanalytic Time-Memory Trade-Off, Philippe Oechslin, Advances in Cryptology - CRYPTO 2003
- Ophcrack, the time-memory-trade-off-cracker
- The Shmoo Group offers pre-computed rainbow tables which are downloadable via BitTorrent
- Cain and Abel
- Online LM/NTLM crack using Rainbow tables
- Plain-Text organization is available for cracking LM hashes
- A Java applet for computing the LM Hash and NT Hash
- Java code for LM Hash
- Mastering Windows Network Forensics