Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
16k views

Java LDAP - Determine if user in a given group?

We logon users to Active Directory via LDAP using the Java LDAP API. We want to enhance our logon functionality to further check if the user is in a given AD group. Does anyone know how to do this? ...
6
votes
4answers
41k views

Active Directory LDAP Query by sAMAccountName and Domain

How do you do a query of an LDAP store by sAMAccountName and Domain? What is the "domain" property named in Active Directory or LDAP terms? This is what I have for the filter so far. I'd like to be ...
6
votes
1answer
698 views

Querying Active Directory with “SQL”?

I just wonder if anyone knows or made a wrapper around Active Directory to be able to easily query it in .net? Kind of like "LINQ-to-ActiveDirectory" or some SQL Dialect, i.e. to be able to do "SELECT ...
5
votes
4answers
4k views

How to escape a string in C#, for use in an LDAP query

I have an LDAP query, which I am using to perform a search in C#. It uses two string variables (username and domain) which need to be escaped for security reasons. How should I escape the strings? Is ...
4
votes
1answer
199 views

Can I match a user to a group accross different domains?

I'm trying to write an LDAP query which will discover if a user is a member of a group which matches a wildcard query and I'm trying to use the LDAP_MATCHING_RULE_IN_CHAIN OID to do this. I'm ...
4
votes
2answers
155 views

Are Rollbacks possible with Active Directory?

I have read a few articles about how to programmatically interacting with Active Directory. One question remains though, is it possible to rollback a transaction of some sort with Active Directory? I ...
3
votes
3answers
857 views

LDAP query in python

I want to execute the following query in the ldap ldapsearch -h hostname -b dc=ernet,dc=in -x "(&(uid=w2lame)(objectClass=posixAccount))" gidnumber ldapsearch -h hostname -b ...
3
votes
4answers
307 views

How do I retrieve a list of only those users and groups that have been added since a certain date from an LDAP directory?

My application does an LDAP query once a day and fetches all the users and groups in a given container. Once it is fetched, my app goes iterates through the list of users of groups, adding only the ...
2
votes
0answers
65 views

How to get DAG info from MS Exchange Server 2010 using LDAP Query from AD?

I wanted to know about LDAP Queries used to get more information about Exchange Server. What I am interested in knowing more about Data Availability Groups, Statistics Regarding them and Replication ...
2
votes
3answers
980 views

Generic LDAP base for search?

I'm writing some C++/Win32 code to search for a user in an LDAP directory (really I need to validate a username/password is correct, and then verify group membership). I have the username, so I'm ...
1
vote
4answers
74 views

How can I configure a shell script which will parse ldap data in ldif format for each dn:

I have a LDIF database something like this. dn: uid=user1,ou=People,dc=example,dc=com mail: user1@example.com passwordexpirationtime: 20120113203000Z dn: uid=user2,ou=People,dc=example,dc=com mail: ...
1
vote
2answers
56 views

How can I change username or email or phone number information in LDAP?

I have this script through which I can change my LDAP password but I also want to change my username or full name or email or phone number. How can I do that? When I echo out the records I only get ...
1
vote
3answers
78 views

Is my LDAP syntax wrong in search filter

This is my first attempt in trying to query our LDAP server for AD info. When I am trying to query the LDAP server here is what I'm trying to retrieve: I am trying to retrieve all active employees ...
1
vote
1answer
74 views

Query for “ACTIVE” users in LDAP server NOT working

I need to be able to get via querying the active directory using the LDAP server a list of defined ACTIVE users from the active directory. I have tried to do this via a successful connection to my ...
1
vote
1answer
40 views

Check user on LDap with Java

Can I check a user logged on LDap by his ip address with Java?
1
vote
1answer
213 views

Checking User Groups in Perl Net::LDAP

I have a Perl Subversion pre-commit hook that allows me to verify whether or not a user has permissions to change or add to a particular point in a Subversion repository. It uses a Control file that ...
1
vote
1answer
190 views

Creating Active Directory of usernames for LDAP access

I am a newbie to LDAP and Active Directories. I need to build a active directory of users who are eligible to access a particular conputer. When the user enters the username and password in a web ...
1
vote
3answers
429 views

LDAP user enumeration does not return all domain users

I am using the following code to fetch list of all users in the given domain. DirectoryEntry dirEntry = new DirectoryEntry( "LDAP://domainname", userName, password ); ...
1
vote
2answers
786 views

LDAP Syntax/Semantics: Filter vs. Base DN?

This is probably pretty stupid, but I'm still green to LDAP. So I hope someone can lend me a hand. I am using Apache Directory Studio to do my searches and I am confused about when I should be using ...
1
vote
1answer
261 views

Delete User from AD Group

I am trying to delete a user from an Active Directory group via code. Getting the helpful error of: Exception has been thrown by the targe of an invocation" Trace: Stack Trace: at ...
1
vote
1answer
153 views

Retrieve objects by container in LDAP

Does anyone know if it is possible in an LDAP query to filter objects according to the container they are in? For example, I would like to return all users in the OU called staff, maybe something ...
1
vote
1answer
560 views

Coldfusion LDAP Authentication issue / domain prefix

I am currently setting up a dev environment which is an exact copy of our prod environment. The problem is when I try to authenticate a user by using CFLDAP tag in the dev environment, it won't let me ...
1
vote
2answers
2k views

case insensitive LDAP searches

What't the syntax for performing a case-insensitive match on a 'uid' attribute? If attribute definition matters then how would that be changed? In particular I am using ApacheDS for my LDAP store.
1
vote
2answers
673 views

can a user be part of multiple subtree in a (Ldap based) Directory Service instance?

I am pretty new to the ldap based directory service programming using .net framework; hence have a basic silly question. I would like to find out the all sub trees a particular user belongs to using ...
0
votes
1answer
33 views

DirectoryEntry() not authenticated

I am trying to use DirectoryEntry to gain access to AD. We have an "OU=Company Users" and then and "OU=Applications". My personal user account is in the Company Users OU and when trying return new ...
0
votes
2answers
55 views

LDAP modifying user info and preventing duplicates

Below is my code for a user modifying their own password. This form works flawlessly. Now the problem here is that I want to user to be able to change their email, phone, or even their name. I use an ...
0
votes
1answer
40 views

Regarding LDAP Search Query

I have a question regarding LDAP search. Suppose i want to search a number say "123" and if LDAP has entries like "123#" or "1-2-3" what should be the LDAP Search filter which needs to be provided. I ...
0
votes
1answer
36 views

PHP LDAP, adding new entries into LDAP

I am wanting to create a form that I can fill out and once I submit it the form values can be pulled out and that person can be created into LDAP. I am not very experienced with LDAP infact I just ...
0
votes
0answers
33 views

ldap query where username is substring of string

In java i have a string array of usernames and would like to make a ldap query returning the attributes for all the users. Right now I loop throug the string array and make a ldap query for each ...
0
votes
0answers
70 views

Creating foreign JNDI settings in weblogic and lookup from Java client

Please post if there is any example/steps to configuring external LDAP and execute LDAP queries on it. I tried the following creating Foreign JNDI Providers Created remote and local JNDI names ...
0
votes
2answers
40 views

Using Net::LDAP or ldapsearch to return attributes of object attributes

In our corporate LDAP structure a 'user' has two attributes: uid = the id of the user manager = the DN of the user's manager Since I'm writing a script to find out the organization chain for a ...
0
votes
1answer
42 views

Fetching data from LDAP active directory by using id?

I want to fetch some user information from LDAP Active directory by using Id. here is the code I'm trying to connect and fetch it. SearchControls ctls = new SearchControls(); ...
0
votes
1answer
26 views

Web site using using active directory groups slows to a crawl intermittently

I have an asp.net mvc web site on an intranet. Access to the site is determined by groups in active directory. There are 4 different groups each having different access in the site. I have been having ...
0
votes
2answers
234 views

Find BASE DN from LDAP directory context object

I have directory context for LDAP but i need to find out the BASE DN from that directory context object. I have following code to get Directory context object, // Configure our directory context ...
0
votes
2answers
91 views

Findout the LDAP groups in which given uid is belong

I have a little bit knowledge of LDAP. I have organozational structure in LDAP in below format, uid=test.gen,OU=Generics,O=cco.mycomp.com Above uid is part of group "EF_GROUP" and some other groups ...
0
votes
0answers
25 views

How do you query the group membership of a person in Active Directory with LDAP and PHP?

I have looked at all the SO question. None of them answered my question. Even the ones that seem directly related. I have this LDAP query: $ldap_host = "myIP"; $ldap_port = "389"; $base_dn = ...
0
votes
1answer
37 views

Using DN in Search Filter

In My LDAP Client program some times i have to include the DN value within the search filter. But this DN is changing frequently and every i have to change this filter in my code. When i googled it ...
0
votes
0answers
135 views

LDAP Query Using Objective-C or C-API in Cocoa Application, Better Performance?

I have to develop a cocoa application in which i have to perform LDAP search Query thrice. I can use OpenDirectory.framework ...
0
votes
1answer
120 views

How to read/write ldif file through a java program?

I chose to write a java program to take back up of my LDAP entries in LDIF file and also would like to rollback the modifications using the back up LDIF files, if needed. Please provide references ...
0
votes
1answer
74 views

Query Exchange server using DirectoryServices

the question just came to me from a different team. The question was "how to query the users in the exchange server's particular User group". Its said that the Exchange server user group is not linked ...
0
votes
1answer
263 views

memberOf vs. groupMembership in LDAP (Liferay)

What is the difference b/n memberOf attribute and groupMembership attribute when used in LDAP Authentication settings in Liferay? The users are imported successfully. The groups are also imported ...
0
votes
2answers
241 views

How do ldap search for email address in contacts' 2nd/3rd alternate email addresses?

I have an LDAP server with my email contacts so that I can lookup contacts by name/email, etc. However, it only seems to search and find the first email address for any contact. For example, if I ...
0
votes
2answers
218 views

ldap_get_entries returns array with element count=zero

In some situations ldap_get_entries returns array with element count=zero, so I have an array like array('count'=>0) without any further entries. What are the conditions for this to happen? PS: if ...
0
votes
0answers
127 views

Match when one attribute of a multiple attribute matches

For test purposes, let us take user with following properties: samaccountname=testuser1,OU=ou1,OU=test unit,... Please note that there are two entries for the attribute OU. Now I try to find out if ...
0
votes
0answers
351 views

Java LDAP search returns partial subdomain entries

I'm having some problem searching through our test AD using LDAP. The Active directory domain has a subdomain. I use PagedResultsControl to enumerate the users in pages. I ask users in bunch of 1000. ...
0
votes
2answers
231 views

Querying LDAP for Usergroup of Specific User

I have to check usergroups of LDAP Active Directory for a specific user in C#. Mean I pass this username to a method and it returns me list of group from that user belongs. Can You Please help me in ...
0
votes
2answers
976 views

LDAP/AD filter - objectclass not equal to is not working

I am working with LDAP Active Directory and trying to list all users. I have this filter which works perfect: ...
0
votes
2answers
267 views

VBScript to get DC SYSVOL information (path, size, free space)

I am obtaining information about my DCs and need to pull in the path to sysvol, total size, and free space remaining. Cant his be done in VBScript and if so how? Thanks
0
votes
2answers
2k views

LDAP group membership (including Domain Users)

How can I get a list of users within an LDAP group, even if that group happens to be the primary group for some users? For example, suppose "Domain Users" is "Domain Leute" in German. I want all ...
0
votes
3answers
474 views

explaining the parts of the ldap string “LDAP://DC=amrs,DC=win,DC=ml,dc=COM”

can someone explain the makeup of the ldap string parts. the one i have is: string strSQL = "SELECT mail FROM 'LDAP://DC=amrs,DC=win,DC=ml,dc=COM' WHERE samaccountname = '" + ...

1 2