| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
It was off by a factor of 10
|
|
|
|
|
|
|
|
|
|
|
| |
The init context function was improperly initializing the ctx variable (too
late) when some early error conditions can happen. Therefore passing to the
delete context function a random memory address it would then try to free.
This wuld cause a SEGFAULT in most cases.
Additionally unfortunately iconv_close() does not follow good practices and
blindignly dereferences data, even if the passed in pointer is NULL.
So add a check before calling.
|
|
|
|
| |
Including tests to verify conformance to MS-NLMP
|
|
|
|
| |
For now works only for satndalone server with access to a password file.
|
| |
|
|
|
|
|
| |
The size of the AV filed itself was missing for each field resulting in a
shorter than needed buffer size.
|
| |
|
|
|
|
| |
Adds crypto function helpers needed by NTLM authentication
|
|
Implements functions to encode/decode NTLMSSP packets
|