Ignore:
Timestamp:
May 13, 2014, 11:39:04 AM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update trunk to 3.6.23

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/auth/auth_winbind.c

    r745 r862  
    6363
    6464        /* Send off request */
    65 
    6665        params.account_name     = user_info->client.account_name;
    67         params.domain_name      = user_info->mapped.domain_name;
     66        /*
     67         * We need to send the domain name from the client to the DC. With
     68         * NTLMv2 the domain name is part of the hashed second challenge,
     69         * if we change the domain name, the DC will fail to verify the
     70         * challenge cause we changed the domain name, this is like a
     71         * man in the middle attack.
     72         */
     73        params.domain_name      = user_info->client.domain_name;
    6874        params.workstation_name = user_info->workstation_name;
    6975
Note: See TracChangeset for help on using the changeset viewer.