
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
ldap_paged_search is a python library to easily perform LDAP queries with more than 1000 results, or to break down queries into smaller result sets to reduce server loads.
Many LDAP servers, such as active directory, will not return more than 1000 results unless paged requests are used. The existing python ldap library does support pageing, but requires some not very intuitive coding to perform it. This library is simply a wrapper to make paged searches easy.
Its interface is also slightly easier to perform queries than the LDAP library it wraps.
.. code:: bash
$ sudo pip install ldap_paged_search # If you prefer PIP
$ sudo easy_install ldap_paged_search # If you prefer easy_install
.. code:: bash
$ git clone https://github.com/neoCrimeLabs/python-ldap_paged_search.git
$ cd python-ldap_paged_search
$ sudo python setup.py install
.. code:: python
from ldap_paged_search import LdapPagedSearch
# Required values
url = 'ldap://your.ldap.server'
username = 'username' # for anything but active directory
username = 'domain\\user' # for active directory
password = 'yourPassword'
baseDN = 'dc=company,dc=com'
searchFilter = '(&(objectCategory=user))'
# Optional values
maxPages = 0 # 0 = everything
maxPages = 10 # Return first 10 pages only
attributes = ['*'] # Return all fields
attributes = ['FieldName', 'AnotherField'] # Return specific fields only
pageSize = 1000 # How many records per page
# Usual max is 1000; check your LDAP server docs
.. code:: python
# Using a callback method to process results uses less memory on large queries
# Not using a callback search() will return all results as a single list
def myCallback(dn,record):
print dn, record
.. code:: python
# maxPages, pageSize, attributes, and callback are all OPTIONAL
with LdapPagedSearch(url, username, password, maxPages=2, pageSize=2 ) as l:
results = l.search(baseDN, searchFilter, attributes = attributes, callback = myCallback)
.. code:: python
# maxPages, pageSize, attributes, and callback are all OPTIONAL
l = LdapPagedSearch(url, username, password, maxPages=2, pageSize=2 )
results = l.search(baseDN, searchFilter, attributes = attributes, callback = myCallback)
.. code:: python
# If you don't set a callback, your results will be returned as follows
[
('DistinctName1',
{ 'FieldName': ['value1', 'value2'],
'AnotherField': ['value'], }),
('DistinctName2',
{ 'FieldName': ['value1', 'value2'],
'AnotherField': ['value'], }),
...
]
I wrote this library for my own use, but realized others may find it useful as there were many forum topics describing this problem.
Unfortunately I cannot guarentee any active support, but will do my best as time permits. That said, I'll happily accept push requests with suitable changes that address the general audience of this library.
Put simply, use this at your own risk. If it works, great! If not, I may not be able to help you. If you fix anything, however, please push it back and I'll likely accept it. :-)
Also, if you use this library in your package, tool, or comercial software, let me know, and I'll list it here!
FAQs
Easily perform LDAP queries with more than 1000 results
We found that ldap_paged_search demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.