IndependentNTLMAuthenticationProvider.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Security.Cryptography;
  10. using SMBLibrary.Authentication.GSSAPI;
  11. using Utilities;
  12. namespace SMBLibrary.Authentication.NTLM
  13. {
  14. public delegate string GetUserPassword(string userName);
  15. public class IndependentNTLMAuthenticationProvider : NTLMAuthenticationProviderBase
  16. {
  17. public class AuthContext
  18. {
  19. public string WorkStation;
  20. public byte[] ServerChallenge;
  21. public string UserName;
  22. public byte[] SessionKey;
  23. public bool IsGuest;
  24. public AuthContext(byte[] serverChallenge)
  25. {
  26. ServerChallenge = serverChallenge;
  27. }
  28. }
  29. private GetUserPassword m_GetUserPassword;
  30. /// <param name="getUserPassword">
  31. /// The NTLM challenge response will be compared against the provided password.
  32. /// </param>
  33. public IndependentNTLMAuthenticationProvider(GetUserPassword getUserPassword)
  34. {
  35. m_GetUserPassword = getUserPassword;
  36. }
  37. public override NTStatus GetChallengeMessage(out object context, NegotiateMessage negotiateMessage, out ChallengeMessage challengeMessage)
  38. {
  39. byte[] serverChallenge = GenerateServerChallenge();
  40. context = new AuthContext(serverChallenge);
  41. challengeMessage = new ChallengeMessage();
  42. // https://msdn.microsoft.com/en-us/library/cc236691.aspx
  43. challengeMessage.NegotiateFlags = NegotiateFlags.TargetTypeServer |
  44. NegotiateFlags.TargetInfo |
  45. NegotiateFlags.TargetNameSupplied |
  46. NegotiateFlags.Version;
  47. // [MS-NLMP] NTLMSSP_NEGOTIATE_NTLM MUST be set in the [..] CHALLENGE_MESSAGE to the client.
  48. challengeMessage.NegotiateFlags |= NegotiateFlags.NTLMSessionSecurity;
  49. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.UnicodeEncoding) > 0)
  50. {
  51. challengeMessage.NegotiateFlags |= NegotiateFlags.UnicodeEncoding;
  52. }
  53. else if ((negotiateMessage.NegotiateFlags & NegotiateFlags.OEMEncoding) > 0)
  54. {
  55. challengeMessage.NegotiateFlags |= NegotiateFlags.OEMEncoding;
  56. }
  57. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.ExtendedSessionSecurity) > 0)
  58. {
  59. challengeMessage.NegotiateFlags |= NegotiateFlags.ExtendedSessionSecurity;
  60. }
  61. else if ((negotiateMessage.NegotiateFlags & NegotiateFlags.LanManagerKey) > 0)
  62. {
  63. challengeMessage.NegotiateFlags |= NegotiateFlags.LanManagerKey;
  64. }
  65. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.Sign) > 0)
  66. {
  67. // [MS-NLMP] If the client sends NTLMSSP_NEGOTIATE_SIGN to the server in the NEGOTIATE_MESSAGE,
  68. // the server MUST return NTLMSSP_NEGOTIATE_SIGN to the client in the CHALLENGE_MESSAGE.
  69. challengeMessage.NegotiateFlags |= NegotiateFlags.Sign;
  70. }
  71. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.Seal) > 0)
  72. {
  73. // [MS-NLMP] If the client sends NTLMSSP_NEGOTIATE_SEAL to the server in the NEGOTIATE_MESSAGE,
  74. // the server MUST return NTLMSSP_NEGOTIATE_SEAL to the client in the CHALLENGE_MESSAGE.
  75. challengeMessage.NegotiateFlags |= NegotiateFlags.Seal;
  76. }
  77. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.Sign) > 0 ||
  78. (negotiateMessage.NegotiateFlags & NegotiateFlags.Seal) > 0)
  79. {
  80. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.Use56BitEncryption) > 0)
  81. {
  82. // [MS-NLMP] If the client sends NTLMSSP_NEGOTIATE_SEAL or NTLMSSP_NEGOTIATE_SIGN with
  83. // NTLMSSP_NEGOTIATE_56 to the server in the NEGOTIATE_MESSAGE, the server MUST return
  84. // NTLMSSP_NEGOTIATE_56 to the client in the CHALLENGE_MESSAGE.
  85. challengeMessage.NegotiateFlags |= NegotiateFlags.Use56BitEncryption;
  86. }
  87. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.Use128BitEncryption) > 0)
  88. {
  89. // [MS-NLMP] If the client sends NTLMSSP_NEGOTIATE_128 to the server in the NEGOTIATE_MESSAGE,
  90. // the server MUST return NTLMSSP_NEGOTIATE_128 to the client in the CHALLENGE_MESSAGE only if
  91. // the client sets NTLMSSP_NEGOTIATE_SEAL or NTLMSSP_NEGOTIATE_SIGN.
  92. challengeMessage.NegotiateFlags |= NegotiateFlags.Use128BitEncryption;
  93. }
  94. }
  95. if ((negotiateMessage.NegotiateFlags & NegotiateFlags.KeyExchange) > 0)
  96. {
  97. challengeMessage.NegotiateFlags |= NegotiateFlags.KeyExchange;
  98. }
  99. challengeMessage.TargetName = Environment.MachineName;
  100. challengeMessage.ServerChallenge = serverChallenge;
  101. challengeMessage.TargetInfo = AVPairUtils.GetAVPairSequence(Environment.MachineName, Environment.MachineName);
  102. challengeMessage.Version = NTLMVersion.Server2003;
  103. return NTStatus.SEC_I_CONTINUE_NEEDED;
  104. }
  105. public override NTStatus Authenticate(object context, AuthenticateMessage message)
  106. {
  107. AuthContext authContext = context as AuthContext;
  108. if (authContext == null)
  109. {
  110. // There are two possible reasons for authContext to be null:
  111. // 1. We have a bug in our implementation, let's assume that's not the case,
  112. // according to [MS-SMB2] 3.3.5.5.1 we aren't allowed to return SEC_E_INVALID_HANDLE anyway.
  113. // 2. The client sent AuthenticateMessage without sending NegotiateMessage first,
  114. // in this case the correct response is SEC_E_INVALID_TOKEN.
  115. return NTStatus.SEC_E_INVALID_TOKEN;
  116. }
  117. authContext.UserName = message.UserName;
  118. authContext.WorkStation = message.WorkStation;
  119. if ((message.NegotiateFlags & NegotiateFlags.Anonymous) > 0)
  120. {
  121. if (this.EnableGuestLogin)
  122. {
  123. authContext.IsGuest = true;
  124. return NTStatus.STATUS_SUCCESS;
  125. }
  126. else
  127. {
  128. return NTStatus.STATUS_LOGON_FAILURE;
  129. }
  130. }
  131. string password = m_GetUserPassword(message.UserName);
  132. if (password == null)
  133. {
  134. if (this.EnableGuestLogin)
  135. {
  136. authContext.IsGuest = true;
  137. return NTStatus.STATUS_SUCCESS;
  138. }
  139. else
  140. {
  141. return NTStatus.STATUS_LOGON_FAILURE;
  142. }
  143. }
  144. bool success;
  145. byte[] serverChallenge = authContext.ServerChallenge;
  146. byte[] sessionBaseKey;
  147. byte[] keyExchangeKey = null;
  148. if ((message.NegotiateFlags & NegotiateFlags.ExtendedSessionSecurity) > 0)
  149. {
  150. if (AuthenticationMessageUtils.IsNTLMv1ExtendedSecurity(message.LmChallengeResponse))
  151. {
  152. // NTLM v1 Extended Security:
  153. success = AuthenticateV1Extended(password, serverChallenge, message.LmChallengeResponse, message.NtChallengeResponse);
  154. if (success)
  155. {
  156. // https://msdn.microsoft.com/en-us/library/cc236699.aspx
  157. sessionBaseKey = new MD4().GetByteHashFromBytes(NTLMCryptography.NTOWFv1(password));
  158. byte[] lmowf = NTLMCryptography.LMOWFv1(password);
  159. keyExchangeKey = NTLMCryptography.KXKey(sessionBaseKey, message.NegotiateFlags, message.LmChallengeResponse, serverChallenge, lmowf);
  160. }
  161. }
  162. else
  163. {
  164. // NTLM v2:
  165. success = AuthenticateV2(message.DomainName, message.UserName, password, serverChallenge, message.LmChallengeResponse, message.NtChallengeResponse);
  166. if (success)
  167. {
  168. // https://msdn.microsoft.com/en-us/library/cc236700.aspx
  169. byte[] responseKeyNT = NTLMCryptography.NTOWFv2(password, message.UserName, message.DomainName);
  170. byte[] ntProofStr = ByteReader.ReadBytes(message.NtChallengeResponse, 0, 16);
  171. sessionBaseKey = new HMACMD5(responseKeyNT).ComputeHash(ntProofStr);
  172. keyExchangeKey = sessionBaseKey;
  173. }
  174. }
  175. }
  176. else
  177. {
  178. success = AuthenticateV1(password, serverChallenge, message.LmChallengeResponse, message.NtChallengeResponse);
  179. if (success)
  180. {
  181. // https://msdn.microsoft.com/en-us/library/cc236699.aspx
  182. sessionBaseKey = new MD4().GetByteHashFromBytes(NTLMCryptography.NTOWFv1(password));
  183. byte[] lmowf = NTLMCryptography.LMOWFv1(password);
  184. keyExchangeKey = NTLMCryptography.KXKey(sessionBaseKey, message.NegotiateFlags, message.LmChallengeResponse, serverChallenge, lmowf);
  185. }
  186. }
  187. if (success)
  188. {
  189. // https://msdn.microsoft.com/en-us/library/cc236676.aspx
  190. // https://blogs.msdn.microsoft.com/openspecification/2010/04/19/ntlm-keys-and-sundry-stuff/
  191. if ((message.NegotiateFlags & NegotiateFlags.KeyExchange) > 0)
  192. {
  193. authContext.SessionKey = RC4.Decrypt(keyExchangeKey, message.EncryptedRandomSessionKey);
  194. }
  195. else
  196. {
  197. authContext.SessionKey = keyExchangeKey;
  198. }
  199. return NTStatus.STATUS_SUCCESS;
  200. }
  201. else
  202. {
  203. return NTStatus.STATUS_LOGON_FAILURE;
  204. }
  205. }
  206. public override bool DeleteSecurityContext(ref object context)
  207. {
  208. context = null;
  209. return true;
  210. }
  211. public override object GetContextAttribute(object context, GSSAttributeName attributeName)
  212. {
  213. AuthContext authContext = context as AuthContext;
  214. if (authContext != null)
  215. {
  216. switch (attributeName)
  217. {
  218. case GSSAttributeName.IsGuest:
  219. return authContext.IsGuest;
  220. case GSSAttributeName.MachineName:
  221. return authContext.WorkStation;
  222. case GSSAttributeName.SessionKey:
  223. return authContext.SessionKey;
  224. case GSSAttributeName.UserName:
  225. return authContext.UserName;
  226. }
  227. }
  228. return null;
  229. }
  230. private bool EnableGuestLogin
  231. {
  232. get
  233. {
  234. return (m_GetUserPassword("Guest") == String.Empty);
  235. }
  236. }
  237. /// <summary>
  238. /// LM v1 / NTLM v1
  239. /// </summary>
  240. private static bool AuthenticateV1(string password, byte[] serverChallenge, byte[] lmResponse, byte[] ntResponse)
  241. {
  242. byte[] expectedLMResponse = NTLMCryptography.ComputeLMv1Response(serverChallenge, password);
  243. if (ByteUtils.AreByteArraysEqual(expectedLMResponse, lmResponse))
  244. {
  245. return true;
  246. }
  247. byte[] expectedNTResponse = NTLMCryptography.ComputeNTLMv1Response(serverChallenge, password);
  248. return ByteUtils.AreByteArraysEqual(expectedNTResponse, ntResponse);
  249. }
  250. /// <summary>
  251. /// LM v1 / NTLM v1 Extended Security
  252. /// </summary>
  253. private static bool AuthenticateV1Extended(string password, byte[] serverChallenge, byte[] lmResponse, byte[] ntResponse)
  254. {
  255. byte[] clientChallenge = ByteReader.ReadBytes(lmResponse, 0, 8);
  256. byte[] expectedNTLMv1Response = NTLMCryptography.ComputeNTLMv1ExtendedSecurityResponse(serverChallenge, clientChallenge, password);
  257. return ByteUtils.AreByteArraysEqual(expectedNTLMv1Response, ntResponse);
  258. }
  259. /// <summary>
  260. /// LM v2 / NTLM v2
  261. /// </summary>
  262. private bool AuthenticateV2(string domainName, string accountName, string password, byte[] serverChallenge, byte[] lmResponse, byte[] ntResponse)
  263. {
  264. byte[] _LMv2ClientChallenge = ByteReader.ReadBytes(lmResponse, 16, 8);
  265. byte[] expectedLMv2Response = NTLMCryptography.ComputeLMv2Response(serverChallenge, _LMv2ClientChallenge, password, accountName, domainName);
  266. if (ByteUtils.AreByteArraysEqual(expectedLMv2Response, lmResponse))
  267. {
  268. return true;
  269. }
  270. if (AuthenticationMessageUtils.IsNTLMv2NTResponse(ntResponse))
  271. {
  272. byte[] clientNTProof = ByteReader.ReadBytes(ntResponse, 0, 16);
  273. byte[] clientChallengeStructurePadded = ByteReader.ReadBytes(ntResponse, 16, ntResponse.Length - 16);
  274. byte[] expectedNTProof = NTLMCryptography.ComputeNTLMv2Proof(serverChallenge, clientChallengeStructurePadded, password, accountName, domainName);
  275. return ByteUtils.AreByteArraysEqual(clientNTProof, expectedNTProof);
  276. }
  277. return false;
  278. }
  279. /// <summary>
  280. /// Generate 8-byte server challenge
  281. /// </summary>
  282. private static byte[] GenerateServerChallenge()
  283. {
  284. byte[] serverChallenge = new byte[8];
  285. new Random().NextBytes(serverChallenge);
  286. return serverChallenge;
  287. }
  288. }
  289. }