123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
- *
- * You can redistribute this program and/or modify it under the terms of
- * the GNU Lesser Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- */
- using System;
- using System.Collections.Generic;
- using System.Text;
- using SMBLibrary.Authentication;
- using SMBLibrary.SMB1;
- using Utilities;
- namespace SMBLibrary.Server.SMB1
- {
- /// <summary>
- /// Session Setup helper
- /// </summary>
- public class SessionSetupHelper
- {
- internal static SMB1Command GetSessionSetupResponse(SMB1Header header, SessionSetupAndXRequest request, INTLMAuthenticationProvider users, SMB1ConnectionState state)
- {
- SessionSetupAndXResponse response = new SessionSetupAndXResponse();
- // The PrimaryDomain field in the request is used to determine with domain controller should authenticate the user credentials,
- // However, the domain controller itself does not use this field.
- // See: http://msdn.microsoft.com/en-us/library/windows/desktop/aa378749%28v=vs.85%29.aspx
- AuthenticateMessage message = CreateAuthenticateMessage(request.AccountName, request.OEMPassword, request.UnicodePassword);
- bool loginSuccess;
- try
- {
- loginSuccess = users.Authenticate(message);
- }
- catch (EmptyPasswordNotAllowedException)
- {
- state.LogToServer(Severity.Information, "User '{0}' authentication using an empty password was rejected", message.UserName);
- header.Status = NTStatus.STATUS_ACCOUNT_RESTRICTION;
- return new ErrorResponse(request.CommandName);
- }
- if (loginSuccess)
- {
- state.LogToServer(Severity.Information, "User '{0}' authenticated successfully", message.UserName);
- SMB1Session session = state.CreateSession(message.UserName, message.WorkStation);
- if (session == null)
- {
- header.Status = NTStatus.STATUS_TOO_MANY_SESSIONS;
- return new ErrorResponse(request.CommandName);
- }
- header.UID = session.UserID;
- response.PrimaryDomain = request.PrimaryDomain;
- }
- else if (users.FallbackToGuest(message.UserName))
- {
- state.LogToServer(Severity.Information, "User '{0}' failed authentication. logged in as guest", message.UserName);
- SMB1Session session = state.CreateSession("Guest", message.WorkStation);
- if (session == null)
- {
- header.Status = NTStatus.STATUS_TOO_MANY_SESSIONS;
- return new ErrorResponse(request.CommandName);
- }
- header.UID = session.UserID;
- response.Action = SessionSetupAction.SetupGuest;
- response.PrimaryDomain = request.PrimaryDomain;
- }
- else
- {
- state.LogToServer(Severity.Information, "User '{0}' failed authentication", message.UserName);
- header.Status = NTStatus.STATUS_LOGON_FAILURE;
- return new ErrorResponse(request.CommandName);
- }
- if ((request.Capabilities & ServerCapabilities.LargeRead) > 0)
- {
- state.LargeRead = true;
- }
- if ((request.Capabilities & ServerCapabilities.LargeWrite) > 0)
- {
- state.LargeWrite = true;
- }
- response.NativeOS = String.Empty; // "Windows Server 2003 3790 Service Pack 2"
- response.NativeLanMan = String.Empty; // "Windows Server 2003 5.2"
- return response;
- }
- internal static SMB1Command GetSessionSetupResponseExtended(SMB1Header header, SessionSetupAndXRequestExtended request, INTLMAuthenticationProvider users, SMB1ConnectionState state)
- {
- SessionSetupAndXResponseExtended response = new SessionSetupAndXResponseExtended();
- // [MS-SMB] The Windows GSS implementation supports raw Kerberos / NTLM messages in the SecurityBlob
- byte[] messageBytes = request.SecurityBlob;
- bool isRawMessage = true;
- if (!AuthenticationMessageUtils.IsSignatureValid(messageBytes))
- {
- messageBytes = GSSAPIHelper.GetNTLMSSPMessage(request.SecurityBlob);
- isRawMessage = false;
- }
- if (!AuthenticationMessageUtils.IsSignatureValid(messageBytes))
- {
- header.Status = NTStatus.STATUS_NOT_IMPLEMENTED;
- return new ErrorResponse(request.CommandName);
- }
- // According to [MS-SMB] 3.3.5.3, a UID MUST be allocated if the server returns STATUS_MORE_PROCESSING_REQUIRED
- if (header.UID == 0)
- {
- ushort? userID = state.AllocateUserID();
- if (!userID.HasValue)
- {
- header.Status = NTStatus.STATUS_TOO_MANY_SESSIONS;
- return new ErrorResponse(request.CommandName);
- }
- header.UID = userID.Value;
- }
- MessageTypeName messageType = AuthenticationMessageUtils.GetMessageType(messageBytes);
- if (messageType == MessageTypeName.Negotiate)
- {
- NegotiateMessage negotiateMessage = new NegotiateMessage(messageBytes);
- ChallengeMessage challengeMessage = users.GetChallengeMessage(negotiateMessage);
- if (isRawMessage)
- {
- response.SecurityBlob = challengeMessage.GetBytes();
- }
- else
- {
- response.SecurityBlob = GSSAPIHelper.GetGSSTokenResponseBytesFromNTLMSSPMessage(challengeMessage.GetBytes());
- }
- header.Status = NTStatus.STATUS_MORE_PROCESSING_REQUIRED;
- }
- else // MessageTypeName.Authenticate
- {
- AuthenticateMessage authenticateMessage = new AuthenticateMessage(messageBytes);
- bool loginSuccess;
- try
- {
- loginSuccess = users.Authenticate(authenticateMessage);
- }
- catch (EmptyPasswordNotAllowedException)
- {
- state.LogToServer(Severity.Information, "User '{0}' authentication using an empty password was rejected", authenticateMessage.UserName);
- header.Status = NTStatus.STATUS_ACCOUNT_RESTRICTION;
- return new ErrorResponse(request.CommandName);
- }
- if (loginSuccess)
- {
- state.LogToServer(Severity.Information, "User '{0}' authenticated successfully", authenticateMessage.UserName);
- state.CreateSession(header.UID, authenticateMessage.UserName, authenticateMessage.WorkStation);
- }
- else if (users.FallbackToGuest(authenticateMessage.UserName))
- {
- state.LogToServer(Severity.Information, "User '{0}' failed authentication. logged in as guest", authenticateMessage.UserName);
- state.CreateSession(header.UID, "Guest", authenticateMessage.WorkStation);
- response.Action = SessionSetupAction.SetupGuest;
- }
- else
- {
- state.LogToServer(Severity.Information, "User '{0}' failed authentication", authenticateMessage.UserName);
- header.Status = NTStatus.STATUS_LOGON_FAILURE;
- return new ErrorResponse(request.CommandName);
- }
- if (!isRawMessage)
- {
- response.SecurityBlob = GSSAPIHelper.GetGSSTokenAcceptCompletedResponse();
- }
- }
- response.NativeOS = String.Empty; // "Windows Server 2003 3790 Service Pack 2"
- response.NativeLanMan = String.Empty; // "Windows Server 2003 5.2"
- return response;
- }
- private static AuthenticateMessage CreateAuthenticateMessage(string accountNameToAuth, byte[] lmChallengeResponse, byte[] ntChallengeResponse)
- {
- AuthenticateMessage authenticateMessage = new AuthenticateMessage();
- authenticateMessage.NegotiateFlags = NegotiateFlags.UnicodeEncoding |
- NegotiateFlags.OEMEncoding |
- NegotiateFlags.Sign |
- NegotiateFlags.LanManagerKey |
- NegotiateFlags.NTLMKey |
- NegotiateFlags.AlwaysSign |
- NegotiateFlags.Version |
- NegotiateFlags.Use128BitEncryption |
- NegotiateFlags.Use56BitEncryption;
- if (AuthenticationMessageUtils.IsNTLMv1ExtendedSecurity(lmChallengeResponse) ||
- AuthenticationMessageUtils.IsNTLMv2NTResponse(ntChallengeResponse))
- {
- authenticateMessage.NegotiateFlags |= NegotiateFlags.ExtendedSecurity;
- }
- authenticateMessage.UserName = accountNameToAuth;
- authenticateMessage.LmChallengeResponse = lmChallengeResponse;
- authenticateMessage.NtChallengeResponse = ntChallengeResponse;
- authenticateMessage.Version = Authentication.Version.Server2003;
- return authenticateMessage;
- }
- }
- }
|