IndependentNTLMAuthenticationProvider.cs 16 KB

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