Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NTLM Support with Full Domain and Server Authentication #87

Merged
merged 2 commits into from
Jul 20, 2013

Commits on Mar 20, 2013

  1. NTLM Support with Full Domain and Server Authentication

    * You can now specify a domain as the last parameter of ntlm authentication ['user','password','domain']. If the domain is omitted we assume that you want to authenticate to the local server. (Note that this is a behavior change from the current implementation) Currently, if you did not specify a domain it would select the default target which is the machine for a non-domain joined machine, or the domain for a domain joined machine.
    
    * Some newer microsoft services only allow Negotiate authentication. Negotiate will degrade to NTLM authentication and is 100% compatible with the NTLM scheme. The client will now query the server for valid auth types and use Negotiate or NTLM in that order. If the auth type is not supported we try NTLM anyhow.
    
    * Type 1 Packets where malformed because they did not include the domain and workstation. In the general case, these should always be null for a type 1 packet. This is purely aesthetic, but the inclusion of this information quiets wireshark warnings about the packet being malformed. Note: Chrome, Firfox and Curl also fill these values in a null by default.
    
    * Type 2 Packets were missing the Workstation name. This is now included by default.
    
    * Type 2 Packets were missing the target domain. Without this the server would try to authenticate using the default target (my first comment on the behavior change).
    pmorton committed Mar 20, 2013
    Configuration menu
    Copy the full SHA
    d9c08c9 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2013

  1. Configuration menu
    Copy the full SHA
    2abc46c View commit details
    Browse the repository at this point in the history