Tagged Questions

The LDAP API references an LDAP object by its distinguished name (DN). A DN is a sequence of relative distinguished names (RDN) connected by commas.

learn more… | top users | synonyms

2
votes
1answer
58 views

What's the difference in using distinguished name with cn or uid when logging into LDAP?

I'm running into a problem using LDAP to authenticate logins. We are using a Novell edirectory for authentication of other applications like Jira. ( Jira works perfect ). I have this application ...
1
vote
3answers
1k views

Finding CN of users in Active Directory

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 ...
0
votes
2answers
59 views

Wildcards in LDAP connection [closed]

Possible Duplicate: What's the difference in using distinguished name with cn or uid when logging into LDAP? I'm trying to trick an application into logging in a user. I'm not trying ...
0
votes
0answers
134 views

X509 Certificate Modifying Distinguished Name Field

Due to size limitation, I would like to alter OpenSSL configuration file so then I would be able to generate smaller x509 certificates. Is it possible? If so, I would like to have a Pseudo ID instead ...
0
votes
1answer
231 views

How to convert hex sid to SDDL in c#?

I am doing an LDAP query to get the distinguesd name of a User , DN contains Guid and SID sections and SID section is HEX but I need in SDDL , How can I convert a hex sid to SDDL format ?
0
votes
2answers
654 views

WCF client endpoint certificate reference, how to find when there's a comma in the distinguished name parts?

We are trying to reference a certificate for a client endpoint configuration in our WCF configuration file. The configuration looks like this: <client> <endpoint ...
0
votes
1answer
81 views

For any entry in Active Directory does the DistinguishedName ever changes?

Let's say a group is created with one name. If the group is subsequently renamed, does its distinguishedName also change? I'm looking for a way to permanently track AD objects even if their display ...
0
votes
1answer
2k views

“new DirectoryEntry(distinguishedName as string)” doesn't work when DN contains a “/”

I have the following code to convert a distinguishedName to a sAMAccountName: Dim de As New DirectoryEntry("LDAP://" & stringDN) Return CType(de.Properties("samaccountname")(0), String) It ...
-1
votes
3answers
139 views

Could not query AD without distinguished name in SearchRequest?

I am running a test Active directory and am trying to query with ldap. I created a searchrequest object with distingueshed name empty and a filter this is throwing noSuchObject error code with "object ...