Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LDAP Filter - Find all users of specific OU

I am having trouble with an LDAP Search Filter. What I am needing to retrieve is all the users of a specific LDAP group that is OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local

My search is:

(&(objectCategory=user)(OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local))

Currently it is returning no results. What am I missing?

like image 344
Nic Hubbard Avatar asked Oct 10 '13 17:10

Nic Hubbard


People also ask

How do you get a list of all users from a specific OU?

Simply open the “User Accounts” report, specify the path to the OU you're interested in and run the report. You'll get a list of the members of that OU with the following user account properties: name, logon name and status.

How do I search multiple users in LDAP?

LDAP uses a "PREFIX" notation for its filters. The above filter means: Find any user who has uid=name1 OR uid=name2 OR uid=name3 . This should list you users whose user IDs are name1, name2 or name3.

How do I search for a user in LDAP?

The easiest way to search LDAP is to use ldapsearch with the “-x” option for simple authentication and specify the search base with “-b”. If you are not running the search directly on the LDAP server, you will have to specify the host with the “-H” option.


1 Answers

You must do two things

  1. Set the base of the search OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local
  2. Search for the objects with the objectClass.

Using PHP, the search would look like this (based on this PHP sample):

<?php
//You must bind, first
// using ldap bind
$ldaprdn  = 'yourdomain\nic_hubbard';     // ldap rdn or dn
$ldappass = 'password';  // associated password

// connect to ldap server
$ldapconn = ldap_connect("yourad.test.local")
    or die("Could not connect to LDAP server.");

if ($ldapconn) {

    // binding to ldap server
    $ldapbind = ldap_bind($ldapconn, $ldaprdn, $ldappass);

    $dn = "OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local";
    $filter="(objectClass=user)";
    $justthese = array("cn", "sn", "givenname", "mail");

    $sr=ldap_search($ldapconn, $dn, $filter, $justthese);

    $info = ldap_get_entries($ldapconn, $sr);

    echo $info["count"]." entries returned\n";
}

?>

You can test on the command line with this (exact options varies, this works with recent openldap's client tools) :

ldapsearch -H ldap://yourad.test.local -x -D "yourdomain\nic_hubbard" -W -b "OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local" -s sub "(objectClass=user)" 
like image 200
ixe013 Avatar answered Sep 22 '22 00:09

ixe013