From: Kai Blin Date: Tue, 15 Jan 2008 18:28:23 +0000 (+0100) Subject: libsmb: Do not upper-case target name on NTLMv2 hash generation X-Git-Tag: samba-3.2.0pre2~38^2^2~3^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ecbe08897c9cc47790f3d4f5680d25202bc0f6c3;p=thirdparty%2Fsamba.git libsmb: Do not upper-case target name on NTLMv2 hash generation This makes our NTLMv2 hash generation compatible to the Davenport example and fixes a bug when ntlm_auth is called with a non-upper-case --domain parameter and client ntlmv2 auth = yes Jerry, please consider for 3.2.0 --- diff --git a/source/libsmb/smbencrypt.c b/source/libsmb/smbencrypt.c index d7f6f604f7f..c547a4a0034 100644 --- a/source/libsmb/smbencrypt.c +++ b/source/libsmb/smbencrypt.c @@ -443,7 +443,7 @@ bool SMBNTLMv2encrypt_hash(const char *user, const char *domain, const uchar nt_ the username and domain. This prevents username swapping during the auth exchange */ - if (!ntv2_owf_gen(nt_hash, user, domain, True, ntlm_v2_hash)) { + if (!ntv2_owf_gen(nt_hash, user, domain, False, ntlm_v2_hash)) { return False; }