Long base passwords
#5
The technical reason behind is that NTLM is unicode version of MD4. After the convert, each input doubles in size. For example the word "password" becomes the size 16.

A single MD4 transformation is limited to the size 64 (block) - 8 (64 bit length) - 1 (stopbit) = 55. Now this explains why you can have only 27 chars in NTLM -> 27 * 2 = 54. but 28 * 2 = 56 which is to long.


Messages In This Thread
Long base passwords - by pragmatic - 11-04-2012, 01:53 AM
RE: Long base passwords - by epixoip - 11-04-2012, 03:33 AM
RE: Long base passwords - by pragmatic - 11-04-2012, 08:19 AM
RE: Long base passwords - by epixoip - 11-04-2012, 01:58 PM
RE: Long base passwords - by atom - 11-05-2012, 11:45 AM
RE: Long base passwords - by pragmatic - 11-05-2012, 01:15 PM
RE: Long base passwords - by atom - 11-05-2012, 02:27 PM
RE: Long base passwords - by pragmatic - 11-21-2012, 06:50 PM
RE: Long base passwords - by atom - 11-22-2012, 10:44 AM