diff options
author | Jeremy Allison <jra@samba.org> | 2010-05-18 16:32:13 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-05-18 16:34:14 -0700 |
commit | 6a903078cb133a1f46c9d6f24f50d863e31b743c (patch) | |
tree | 0a62b310219f5f1e519c50bfa26e53c918d6e679 /source3/libsmb/ntlmssp.c | |
parent | 829c87634b2aca87789371ad33231e9d4bc518a8 (diff) | |
download | samba-6a903078cb133a1f46c9d6f24f50d863e31b743c.tar.gz samba-6a903078cb133a1f46c9d6f24f50d863e31b743c.tar.xz samba-6a903078cb133a1f46c9d6f24f50d863e31b743c.zip |
Fix our NTLMSSP implementation against the Microsoft torture tester.
We need to return a version blob if we negotiate version info.
Jeremy.
Diffstat (limited to 'source3/libsmb/ntlmssp.c')
-rw-r--r-- | source3/libsmb/ntlmssp.c | 50 |
1 files changed, 37 insertions, 13 deletions
diff --git a/source3/libsmb/ntlmssp.c b/source3/libsmb/ntlmssp.c index e4155fb5d7e..1f6720c125d 100644 --- a/source3/libsmb/ntlmssp.c +++ b/source3/libsmb/ntlmssp.c @@ -520,22 +520,46 @@ static NTSTATUS ntlmssp_server_negotiate(struct ntlmssp_state *ntlmssp_state, } { - /* Marshel the packet in the right format, be it unicode or ASCII */ + /* Marshal the packet in the right format, be it unicode or ASCII */ const char *gen_string; - if (ntlmssp_state->unicode) { - gen_string = "CdUdbddB"; + /* "What Windows returns" as a version number. */ + const char vers[] = { 0x6, 0x1, 0xb0, 0x1d, 0, 0, 0, 0xf}; + + if (chal_flags & NTLMSSP_NEGOTIATE_VERSION) { + DATA_BLOB version_blob = data_blob_talloc(ntlmssp_state, vers, 8); + + if (ntlmssp_state->unicode) { + gen_string = "CdUdbddBb"; + } else { + gen_string = "CdAdbddBb"; + } + + msrpc_gen(ntlmssp_state, reply, gen_string, + "NTLMSSP", + NTLMSSP_CHALLENGE, + target_name, + chal_flags, + cryptkey, 8, + 0, 0, + struct_blob.data, struct_blob.length, + version_blob.data, version_blob.length); + data_blob_free(&version_blob); } else { - gen_string = "CdAdbddB"; - } + if (ntlmssp_state->unicode) { + gen_string = "CdUdbddB"; + } else { + gen_string = "CdAdbddB"; + } - msrpc_gen(ntlmssp_state, reply, gen_string, - "NTLMSSP", - NTLMSSP_CHALLENGE, - target_name, - chal_flags, - cryptkey, 8, - 0, 0, - struct_blob.data, struct_blob.length); + msrpc_gen(ntlmssp_state, reply, gen_string, + "NTLMSSP", + NTLMSSP_CHALLENGE, + target_name, + chal_flags, + cryptkey, 8, + 0, 0, + struct_blob.data, struct_blob.length); + } if (DEBUGLEVEL >= 10) { if (NT_STATUS_IS_OK(ntlmssp_pull_CHALLENGE_MESSAGE(reply, |