gpt4 book ai didi

c# - PrincipalContext.ValidateCredentials 在 XP 上始终使用 Machine ContextType 返回 False

转载 作者:可可西里 更新时间:2023-11-01 12:08:16 38 4
gpt4 key购买 nike

我正在使用 PrinciaplContext.ValidateCredentials 来针对本地计算机验证一组凭据:

string account = Context.ReadLine();
string pass = Context.ReadLine();

using (var context = new PrincipalContext(ContextType.Machine))
{
bool valid = context.ValidateCredentials(account, pass);

Console.WriteLine("valid: " + (valid ? "true" : "false"));
}

控制台应用程序以管理员身份执行,我正在尝试验证管理员帐户/密码。该计算机运行的是 Windows XP,不属于域。

无论密码正确与否,在属于域的不同 Windows XP 计算机上运行相同的代码总是会返回 true。如果我使用 ContextType.Domain 指定帐户正确验证的域。

ValidateCredentials 是否在针对 XP 的机器上下文中不起作用?还有什么我没有在这里说明的问题吗?

最佳答案

PrincipalContext 类是 DirectoryServices 命名空间的一部分。按理说,没有域,就没有目录。因此,如果 XP 计算机不是域的成员,则对目录进行身份验证的调用将失败。

关于c# - PrincipalContext.ValidateCredentials 在 XP 上始终使用 Machine ContextType 返回 False,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3630415/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com