在 Active Directory 中查找用户的 CN

发布于 2024-10-02 02:52:35 字数 639 浏览 2 评论 0原文

我正在尝试查找可以访问或控制 Active Directory 中所有用户的用户的基本 DN,以便将其放入我的 LDAP 中。

通常有人会给我这个,它看起来像 DC=domain,DC=company,DC=com

但管理员不可用,所以我不知道如何在 Active Directory 中找到它。

我正在寻找一步一步来查找此信息。要打开哪些树和选项卡以及如何构建它。 我的用户是:admin,服务器是:controller-16.domain.company.com 但我不知道他们是否添加了 OU 或组或其他内容,

我知道这

CN=admin,DC=domain,DC=company,DC=com

不起作用。也不会:

DC=domain,DC=company,DC=com

如果基本 DN 在 Gawor 的 LDAP 浏览器< /a>,那么它将适用于我的 LDAP。

I'm trying to find the Base DN of the user that can access or controls all the users in Active Directory so I can put it in my LDAP.

Usually someone will give me this, and it looks like DC=domain,DC=company,DC=com

But the admin is not available, so I don't know how to find this in Active Directory.

I'm looking for a step by step to find this info. Which tree and tabs to open and how to construct it.
My user is: admin, the server is: controller-16.domain.company.com
But I don't know if they added OU or groups or something else

I know that this:

CN=admin,DC=domain,DC=company,DC=com

does not work. Nor does:

DC=domain,DC=company,DC=com

If the Base DN works on Gawor's LDAP Browser, then it will work for my LDAP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迷雾森÷林ヴ 2024-10-09 02:52:35

您可以尝试我的 Beavertail ADSI 浏览器 - 它应该向您显示当前的 AD 树,从中,你应该能够找出路径和所有内容。

alt text

或者,如果您使用的是 .NET 3.5,请使用 System.DirectoryServices.AccountManagement命名空间,您也可以以编程方式执行此操作:

PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

这将创建一个基本的默认域上下文,您应该能够查看它的属性并从中找到很多东西。

或者:

UserPrincipal myself = UserPrincipal.Current;

这将为您自己提供一个 UserPrincipal 对象,其中包含大量可供检查的属性。我不是 100% 确定您在寻找什么 - 但您很可能能够在上下文或用户主体的某个地方找到它!

You could try my Beavertail ADSI browser - it should show you the current AD tree, and from it, you should be able to figure out the path and all.

alt text

Or if you're on .NET 3.5, using the System.DirectoryServices.AccountManagement namespace, you could also do it programmatically:

PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

This would create a basic, default domain context and you should be able to peek at its properties and find a lot of stuff from it.

Or:

UserPrincipal myself = UserPrincipal.Current;

This will give you a UserPrincipal object for yourself, again, with a ton of properties to inspect. I'm not 100% sure what you're looking for - but you most likely will be able to find it on the context or the user principal somewhere!

羁绊已千年 2024-10-09 02:52:35

最常见的 AD 默认设计是在域根后面有一个容器 cn=users。因此,DN 可能是:

cn=admin,cn=users,DC=domain,DC=company,DC=com

此外,您可能在 LDAP 绑定中拥有足够的权限来进行匿名连接并查询(cn=admin)。如果是这样,您应该在该查询中获取完整的 DN。

Most common AD default design is to have a container, cn=users just after the root of the domain. Thus a DN might be:

cn=admin,cn=users,DC=domain,DC=company,DC=com

Also, you might have sufficient rights in an LDAP bind to connect anonymously, and query for (cn=admin). If so, you should get the full DN back in that query.

橘寄 2024-10-09 02:52:35

CN 指类名,因此请输入 LDAP 查询 CN=Users。应该有效。

CN refers to class name, so put in your LDAP query CN=Users. Should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文