mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 15:51:46 +00:00
fs/cifs: correctly to anonymous authentication for the LANMAN authentication
Only server which map unknown users to guest will allow access using a non-null LMChallengeResponse. For Samba it's the "map to guest = bad user" option. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11913 Signed-off-by: Stefan Metzmacher <metze@samba.org> CC: Stable <stable@vger.kernel.org> Signed-off-by: Steve French <smfrench@gmail.com>
This commit is contained in:
parent
cfda35d982
commit
fa8f3a354b
@ -678,6 +678,7 @@ sess_auth_lanman(struct sess_data *sess_data)
|
||||
|
||||
pSMB->req.hdr.Flags2 &= ~SMBFLG2_UNICODE;
|
||||
|
||||
if (ses->user_name != NULL) {
|
||||
/* no capabilities flags in old lanman negotiation */
|
||||
pSMB->old_req.PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
|
||||
|
||||
@ -692,6 +693,9 @@ sess_auth_lanman(struct sess_data *sess_data)
|
||||
|
||||
memcpy(bcc_ptr, (char *)lnm_session_key, CIFS_AUTH_RESP_SIZE);
|
||||
bcc_ptr += CIFS_AUTH_RESP_SIZE;
|
||||
} else {
|
||||
pSMB->old_req.PasswordLength = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* can not sign if LANMAN negotiated so no need
|
||||
|
Loading…
Reference in New Issue
Block a user