Ignore:
Timestamp:
Jun 9, 2016, 2:17:22 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: apply latest security patches to vendor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/libsmb/cliconnect.c

    r860 r919  
    20782078
    20792079                /* otherwise do a NT1 style session setup */
     2080                if (lp_client_ntlmv2_auth() && lp_client_use_spnego()) {
     2081                        /*
     2082                         * Don't send an NTLMv2 response without NTLMSSP
     2083                         * if we want to use spnego support
     2084                         */
     2085                        DEBUG(1, ("Server does not support EXTENDED_SECURITY "
     2086                                  " but 'client use spnego = yes"
     2087                                  " and 'client ntlmv2 auth = yes'\n"));
     2088                        return NT_STATUS_ACCESS_DENIED;
     2089                }
     2090
    20802091                status = cli_session_setup_nt1(cli, user, pass, passlen,
    20812092                                               ntpass, ntpasslen, workgroup);
Note: See TracChangeset for help on using the changeset viewer.