Browse Source

Independent / Integrated NTLMAuthenticationProvider: bugfix: MachineName was not read from AuthenticationMessage

Tal Aloni 8 years ago
parent
commit
644e7d87d5

+ 3 - 3
SMBLibrary/Authentication/NTLM/IndependentNTLMAuthenticationProvider.cs

@@ -24,9 +24,8 @@ namespace SMBLibrary.Authentication.NTLM
             public byte[] SessionKey;
             public bool IsGuest;
 
-            public AuthContext(string workStation, byte[] serverChallenge)
+            public AuthContext(byte[] serverChallenge)
             {
-                WorkStation = workStation;
                 ServerChallenge = serverChallenge;
             }
         }
@@ -44,7 +43,7 @@ namespace SMBLibrary.Authentication.NTLM
         public override NTStatus GetChallengeMessage(out object context, NegotiateMessage negotiateMessage, out ChallengeMessage challengeMessage)
         {
             byte[] serverChallenge = GenerateServerChallenge();
-            context = new AuthContext(negotiateMessage.Workstation, serverChallenge);
+            context = new AuthContext(serverChallenge);
 
             challengeMessage = new ChallengeMessage();
             // https://msdn.microsoft.com/en-us/library/cc236691.aspx
@@ -132,6 +131,7 @@ namespace SMBLibrary.Authentication.NTLM
             }
 
             authContext.UserName = message.UserName;
+            authContext.WorkStation = message.WorkStation;
             if ((message.NegotiateFlags & NegotiateFlags.Anonymous) > 0)
             {
                 if (this.EnableGuestLogin)

+ 3 - 3
SMBLibrary/Win32/IntegratedNTLMAuthenticationProvider.cs

@@ -25,10 +25,9 @@ namespace SMBLibrary.Win32.Security
             public string UserName;
             public bool IsGuest;
 
-            public AuthContext(SecHandle serverContext, string workStation)
+            public AuthContext(SecHandle serverContext)
             {
                 ServerContext = serverContext;
-                WorkStation = workStation;
             }
         }
 
@@ -49,7 +48,7 @@ namespace SMBLibrary.Win32.Security
                 return NTStatus.SEC_E_INVALID_TOKEN;
             }
 
-            context = new AuthContext(serverContext, negotiateMessage.Workstation);
+            context = new AuthContext(serverContext);
             challengeMessage = new ChallengeMessage(challengeMessageBytes);
             return NTStatus.SEC_I_CONTINUE_NEEDED;
         }
@@ -73,6 +72,7 @@ namespace SMBLibrary.Win32.Security
             }
 
             authContext.UserName = message.UserName;
+            authContext.WorkStation = message.WorkStation;
             if ((message.NegotiateFlags & NegotiateFlags.Anonymous) > 0 ||
                 !IsUserExists(message.UserName))
             {