0

我们正在开发一个 Web 应用程序,它使用表单身份验证和 ActiveDirectoryMembershipProvider 来针对 Active Directory 对用户进行身份验证。我们很快发现提供商不允许指定空白/空密码,即使这在 Active Directory 中是完全合法的(前提是没有预防性密码策略)。

由反射器提供:

private void CheckPassword(string password, int maxSize, string paramName)
{
    if (password == null)
    {
        throw new ArgumentNullException(paramName);
    }
    if (password.Trim().Length < 1)
    {
        throw new ArgumentException(SR.GetString("Parameter_can_not_be_empty", new object[] { paramName }), paramName);
    }
    if ((maxSize > 0) && (password.Length > maxSize))
    {
        throw new ArgumentException(SR.GetString("Parameter_too_long", new object[] { paramName, maxSize.ToString(CultureInfo.InvariantCulture) }), paramName);
    }
}

除了编写我们自己的自定义提供程序之外,有没有办法使用 .NET 的魔力来覆盖此功能?

4

2 回答 2

1

我不相信您可以在不创建派生类并覆盖调用私有 CheckPassword 方法的每个方法的情况下更改此行为。但是,我不推荐此选项,我建议您审查您的设计并质疑在您的应用程序中允许空白密码是否合适。虽然它们在 AD 中有效,但在实践中允许这样做是不寻常的,并且它确实会影响 Windows 网络中的其他内容,例如,我认为网络文件共享的默认设置不允许任何密码为空的用户连接到共享。

于 2010-07-19T11:54:04.587 回答
0

您也许可以考虑使用模拟,但我不知道您是否会遇到同样的问题。如果要授权用户,那么您可以使用模拟来尝试“模拟”机器上的用户。我不知道它是否有帮助,但前一周我正在做类似的事情。如果有任何帮助,请将代码放在下面.. :)

using System;  
using System.Runtime.InteropServices;  

public partial class Test_Index : System.Web.UI.Page {  
protected void Page_Load(object sender, EventArgs e)
{        
    IntPtr ptr = IntPtr.Zero;
    if (LogonUser("USERNAME", "", "LEAVE-THIS-BLANK", LOGON32_LOGON_NETWORK, LOGON32_PROVIDER_DEFAULT, ref ptr))
    {
        using (System.Security.Principal.WindowsImpersonationContext context = new System.Security.Principal.WindowsIdentity(ptr).Impersonate())
        {
            try
            {
                // Do do something
            }
            catch (UnauthorizedAccessException ex)
            {
                // failed to do something
            }

            // un-impersonate user out
            context.Undo();
        }
    }
    else
    {
        Response.Write("login fail");
    }
}

#region imports

[DllImport("advapi32.dll", SetLastError = true)]
private static extern bool LogonUser(string lpszUsername, string lpszDomain, string lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken);

[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern bool CloseHandle(IntPtr handle);

[DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public extern static bool DuplicateToken(IntPtr existingTokenHandle, int SECURITY_IMPERSONATION_LEVEL, ref IntPtr duplicateTokenHandle);

#endregion

#region logon consts

// logon types 
const int LOGON32_LOGON_INTERACTIVE = 2;
const int LOGON32_LOGON_NETWORK = 3;
const int LOGON32_LOGON_NEW_CREDENTIALS = 9;

// logon providers 
const int LOGON32_PROVIDER_DEFAULT = 0;
const int LOGON32_PROVIDER_WINNT50 = 3;
const int LOGON32_PROVIDER_WINNT40 = 2;
const int LOGON32_PROVIDER_WINNT35 = 1;
#endregion  }
于 2010-07-19T11:47:31.180 回答