LoginAPI.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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.Runtime.InteropServices;
  10. using Utilities;
  11. namespace SMBLibrary.Win32.Security
  12. {
  13. public enum LogonType
  14. {
  15. Interactive = 2, // LOGON32_LOGON_INTERACTIVE
  16. Network = 3, // LOGON32_LOGON_NETWORK
  17. Service = 5, // LOGON32_LOGON_SERVICE
  18. }
  19. public class LoginAPI
  20. {
  21. private const int LOGON32_PROVIDER_WINNT40 = 2;
  22. [DllImport("advapi32.dll", SetLastError = true)]
  23. private static extern bool LogonUser(
  24. string lpszUsername,
  25. string lpszDomain,
  26. string lpszPassword,
  27. int dwLogonType,
  28. int dwLogonProvider,
  29. out IntPtr phToken);
  30. [DllImport("kernel32.dll", SetLastError = true)]
  31. private static extern bool CloseHandle(IntPtr hObject);
  32. [DllImport("advapi32.dll", SetLastError = true)]
  33. public static extern bool ImpersonateLoggedOnUser(IntPtr hToken);
  34. public static bool ValidateUserPassword(string userName, string password, LogonType logonType)
  35. {
  36. IntPtr token;
  37. bool success = LogonUser(userName, String.Empty, password, (int)logonType, LOGON32_PROVIDER_WINNT40, out token);
  38. if (!success)
  39. {
  40. Win32Error error = (Win32Error)Marshal.GetLastWin32Error();
  41. if (error == Win32Error.ERROR_ACCOUNT_RESTRICTION ||
  42. error == Win32Error.ERROR_ACCOUNT_DISABLED ||
  43. error == Win32Error.ERROR_LOGON_FAILURE ||
  44. error == Win32Error.ERROR_LOGON_TYPE_NOT_GRANTED)
  45. {
  46. return false;
  47. }
  48. throw new Exception("ValidateUser failed, Win32 error: " + error.ToString("D"));
  49. }
  50. CloseHandle(token);
  51. return success;
  52. }
  53. public static bool HasEmptyPassword(string userName)
  54. {
  55. IntPtr token;
  56. bool success = LogonUser(userName, String.Empty, String.Empty, (int)LogonType.Network, LOGON32_PROVIDER_WINNT40, out token);
  57. if (success)
  58. {
  59. CloseHandle(token);
  60. return true;
  61. }
  62. else
  63. {
  64. Win32Error error = (Win32Error)Marshal.GetLastWin32Error();
  65. return (error == Win32Error.ERROR_ACCOUNT_RESTRICTION ||
  66. error == Win32Error.ERROR_ACCOUNT_DISABLED ||
  67. error == Win32Error.ERROR_LOGON_TYPE_NOT_GRANTED);
  68. }
  69. }
  70. }
  71. }