gpt4 book ai didi

c# - 无法提取信息

转载 作者:行者123 更新时间:2023-11-30 20:01:43 26 4
gpt4 key购买 nike

我正在尝试查询域以确定是否:

  1. 用户是有效用户(并且密码正确)
  2. 用户已启用
  3. 用户属于组x

我的开发机器不属于这个域。我想通过我的应用程序指定用户名和密码

我正在使用 System.DirectoryServices.AccountManagement 命名空间,因为这似乎是执行此操作的最有效方法,但是我一直在努力从我的域 Controller 中获取最基本的信息。

我可以通过其他工具探索 LDAP。

第一个测试是收集用户信息,下面的代码对用户返回null。然而,用户是有效的。

我做错了什么?

    // set up domain context
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "server","CN=Users,DC=doom,DC=home", "ldapuser","password");

// get user contect
UserPrincipal user = UserPrincipal.FindByIdentity(ctx, IdentityType.Name, username);

//is user locked?
var locked = user.Enabled;

更新:

如下定义绑定(bind)方法后,我现在收到错误“无法检索有关域的信息 (1355)。”

var ctx = new PrincipalContext(ContextType.Domain, "server", "DC=doom,DC=home", ContextOptions.SimpleBind, "ldapuser", "password");

最佳答案

排序。

这个答案解决了我在尝试连接到我不是其成员的域 Controller 时遇到的两个问题。

这篇文章给我最终的答案: http://elegantcode.com/2009/03/21/one-scenario-where-the-systemdirectoryservices-accountmanagement-api-falls-down/

  1. 您需要在上下文中定义绑定(bind)(即 ContextOptions.SimpleBind)
  2. 您必须在网络适配器 DNS 设置中将域服务器设置为要使用的第一个 DNS 服务器。

我现在可以连接到我的 AD 并收集数据。

关于c# - 无法提取信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18288747/

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