如何从用户名和密码获取 WindowsPrincipal

How to get WindowsPrincipal from username and password

我正在使用 WebAPI 并使用 Katana 托管它。我现在正在编写一些用于身份验证和授权的中间件。我必须使用 SSL 的基本身份验证,因为请求可能来自各种平台。 OAuth 目前也不是一个选项。中间件需要获取基本身份验证提供的用户名和密码,并验证用户是本地 Windows 组中的成员。

现在我正在尝试弄清楚如何创建 WindowsPrincipal。如果我能想出如何根据用户名和密码创建 WindowsPrincipal,我就知道如何完成剩下的工作了。这是我现在拥有的。

    //TODO
    WindowsPrincipal userPrincipal = null; //This is where I need to take the username and password and create a WindowsPrincipal
    Thread.CurrentPrincipal = userPrincipal;

    AppDomain.CurrentDomain.SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy.WindowsPrincipal);
    PrincipalPermission permission = new PrincipalPermission(null, "Local Group Name");
    permission.Demand();

我正在努力寻找一种使用用户名和密码来验证该成员是否属于特定组的好方法。做这个的最好方式是什么?提前感谢您的帮助。

实际上我认为您应该使用 WindowsIdentity 而不是 WindowsPrincipal 来获取该信息。

对于 aquire/impersonate 用户,您必须从 advapi32.dll:

p/invoke LogonUser()
[DllImport("advapi32.dll", SetLastError = true)]
public static extern bool LogonUser(
        string lpszUsername,
        string lpszDomain,
        string lpszPassword,
        int dwLogonType,
        int dwLogonProvider,
        out IntPtr phToken);

考虑到以上内容在 class "Native" 中,冒充用户将如下所示:

var userToken = IntPtr.Zero;

var success = Native.LogonUser(
  "username", 
  "domain", 
  "password", 
  2, // LOGON32_LOGON_INTERACTIVE
  0, // LOGON32_PROVIDER_DEFAULT
  out userToken);

if (!success)
{
  throw new SecurityException("User logon failed");
}

var identity = new WindowsIdentity(userToken);

if(identity.Groups.Any(x => x.Value == "Group ID")) 
{
    // seems to be in the group!
} 

您可以在此处找到有关本机调用的更多信息:http://msdn.microsoft.com/en-us/library/windows/desktop/aa378184%28v=vs.85%29.aspx