mirror of
https://github.com/reactos/wine.git
synced 2025-02-14 01:31:43 +00:00
secur32: Mask away NTLMv2 and key exchange flags so we never negotiate it for now.
This commit is contained in:
parent
602e0df9f6
commit
92a86a03e2
@ -516,6 +516,10 @@ static SECURITY_STATUS SEC_ENTRY ntlm_InitializeSecurityContextW(
|
||||
max_len-1, &bin_len)) != SEC_E_OK)
|
||||
goto isc_end;
|
||||
|
||||
/* Mask away the NTLMv2 flag, as well as the key exchange flag */
|
||||
bin[14] &= ~0x08;
|
||||
bin[15] &= ~0x40;
|
||||
|
||||
/* put the decoded client blob into the out buffer */
|
||||
|
||||
ret = SEC_I_CONTINUE_NEEDED;
|
||||
|
Loading…
x
Reference in New Issue
Block a user