python-ldap provides an object-oriented API to access LDAP directory servers from Python programs

learn more… | top users | synonyms

0
votes
1answer
38 views

ldap search with special character('+') returns null

I want to search a particular ldap-node within groups by unique-member attribute. Something like. search_filter = 'uniqueMember=mail='testuser.+abc@abc.com',ou=people,dc=myorg,dc=com' When I search ...
0
votes
1answer
42 views

how to set lockoutTime and password of a user of Active Directory

I want to change the userAccountControl and password of the AD user. User is already created in AD. The user is created with python-ldap module in AD and is in 'Disabled' state and with no password. ...
0
votes
0answers
100 views

How to install python-ldap on a python 2.7 virtualenv on windows without compiling

I am using Windows as my main python 2.7 development environment and I want to install python-ldap on a virtual environment. The python-ldap package needs compiling :( and of course I can't compile ...
3
votes
1answer
74 views

Conditional __debug__ statement not executed though __debug__ is True

Short Version I have a section of code I'm debugging that checks the value of __debug__ and executes some code if it is True. if __debug__: <stuff happens> The problem is that "stuff" ...
0
votes
2answers
302 views

python-ldap and Microsoft Active Directory: connect and delete user

python-ldap newb here. I am trying to do this with the following sample code: import ldap ## first you must bind so we're doing a simple bind first try: l = ldap.open("valid ip") ...
0
votes
2answers
305 views

How to list all groups members of a ldap group?

I have Plone 3 with LDAP, I have a lot of groups and users in it. I would like to get all groups members for a specific group. groupe_id = "mygroup" gtool = getToolByName(self, 'portal_groups') group ...
1
vote
1answer
86 views

How to read the contents of active directory using python-ldap?

My script is like this: import ldap, sys server = 'ldap://my_server' l = ldap.initialize(server) dn="myname@mydomain" pw = "password" l.simple_bind_s(dn,pw) ldap.set_option(ldap.OPT_REFERRALS,0) ...
0
votes
0answers
281 views

ldapsearch works but python-ldap doesn't

The following works and returns a list of all users ldapsearch -x -b "ou=lunchbox,dc=office,dc=lbox,dc=com" -D "OFFICE\Administrator" -h ad.office.lbox.com -p 389 -W ...
0
votes
0answers
218 views

How to query an Active Directory sub-domain server for users from the entire forest?

I have two sets of domains: example.com and eng.example.com, eng domain being configured to trust the example.com one. Each of these domains has a set of servers that dispersed geographically. If ...
2
votes
0answers
152 views

Test to see if Python LDAP connection works

In our applications at work, we have a CAS backend for authentication and then we store data about the user that we would like to retrieve from a LDAP server. To facilitate that we have a custom ...
1
vote
1answer
80 views

python-ldap to get data from server 2003

when I test the following command in Centos ldapsearch -v -d5 ldaps://192.168.0.254 -D "cn=xuqifeng" -w 'xuqifeng' sys tell me: ldap_initialize( <DEFAULT> ) ldap_create ldap_sasl_bind ...
3
votes
2answers
2k views

Detect if an Active Directory user account is locked using LDAP in Python

I'm validating user logins using python's ldap module. When the login fails, I get a ldap.INVALID_CREDENTIALS login, but this can be either because of a wrong password or because the account is ...
0
votes
0answers
81 views

ValueError at /admin/ in Django

Thanks for looking into this. I'm very new to Django and LDAP Config....so any help is greatly appreciated! ActivePython 2.6, Django-1.2.7, openldap-2.4.23, python-ldap So i have the Django ...
0
votes
1answer
375 views

Python-ldap search: Size Limit Exceeded

I'm using the python-ldap library to connect to our LDAP server and run queries. The issue I'm running into is that despite setting a size limit on the search, I keep getting SIZELIMIT_EXCEEDED ...
0
votes
1answer
57 views

ValueError: option error in Django / Python

I'm building a django website and trying to implement LDAP to it. Whenever I call ldap.set_option(), I get this error: ValueError: option error Any idea why this is happening? This is the ...
2
votes
1answer
216 views

Extracting DN(distinguished name) in ldap

I am writing a piece of code that uses authentication from ldap server. Currently my code only lets the user DN and the pwd to be presented for login. Username: CN=mynane,CN=Users,DC=example,DC=com ...
2
votes
3answers
654 views

How to retrieve all the attributes of LDAP database

I am using ldap module of python to connect to ldap server. I am able to query the database but I dont know how to retrieve the fields present in the database, so that I can notify the user in advance ...
1
vote
1answer
163 views

Python-ldap and SSL

I try connect to ldap using python-ldap and ssl (linux gentoo). Server-side certificate. The server does not require a certificate from the client. I can get certificates using openssl c_client ...
3
votes
2answers
3k views

Authenticating to Active Directory with python-ldap always returns (97, [])

Similar to this question, I am trying to perform simple authentication to a 2003 Active Directory using python ldap (CentOS 6.2 x86_64, Python 2.6.6, python-ldap 2.3.10). Despite following all the ...
1
vote
1answer
203 views

python-ldap failed to install in Heroku

It seems like Heroku does not support python-ldap. The pip install with "python-ldap==2.3.13" in the requirements.txt file failed with following error in Heroku: gcc -pthread -fno-strict-aliasing ...
2
votes
3answers
337 views

how to do Ldap Server Authentication?

I have set up a Ldap Server somewhere. I can bind to it, can add, modify, delete entry in the database. Now when it come to authentication isnt it as simple as giving the username and password to the ...
0
votes
0answers
110 views

how to specify ldap server address when binding to the ldap server?

I am trying ldap authentication. My ldap server is located at x.x.x.x . I am using python-ldap. Connection on server locally doing: ldap.initialize('ldap://localhost:389') works fine, but when i ...
1
vote
1answer
51 views

User login overwrites user fields

I have a Django app which uses LDAP as the authentication backend. I'm not sure whether it's the LDAP module or just Django itself but, if a user changes their email address, first name or last name ...
0
votes
1answer
301 views

ImportError: No module named ldap (Windows XP)

I have installed Python 2.7.1 and python-ldap-2.4.8.win32-py2.7 module. Whenever I type import ldap it gives and error....... ImportError: No module named ldap Path ...
2
votes
0answers
290 views

Mac OSX-Lion Python-LDAP Unrecognized Symbol: _ber_pvt_opt_on

I've been trying to run a web server based in Python 2.6 code here at work. The server requires the python LDAP libraries in order to run. Because I'm working on Mac OS X Lion, I needed to run a ...
1
vote
2answers
2k views

Django LDAP auth issue

I'm trying to build user authentication against our LDAP: settings.py: AUTHENTICATION_BACKENDS = ( 'django_auth_ldap.backend.LDAPBackend', 'django.contrib.auth.backends.ModelBackend', ) ...
2
votes
1answer
3k views

Python+LDAP+SSL

Good day. In advance to apologize for my English, my national forums and resources did not help. There was a need in the script that changes (or creates) a user password in AD. After studying ...
0
votes
1answer
240 views

accessing Active Directory current time though python ldap

Is there a way to fetch current time on a remote Active Directory controller using python-ldap module? My end goal is to determine if an account is expired or not. I have to do this remotely, using ...
2
votes
2answers
800 views

Python-LDAP simple_bind_s timeout

Is there a way to set timeout for "simple_bind_s" in python-LDAP manually? I have tested ldapObject.timeout = 10 it did not work for me. Any ideas? Thanks in advance..
5
votes
4answers
3k views

python-ldap OS X 10.6 and Python 2.6

Trying to install python-ldap for my Django project -- so far tried easy_install, pip, as well as building myself, but still getting the same errors: ...
1
vote
1answer
536 views

Segmentation Fault (11) on httpd when python-ldap is initialized

I'm using mod_wsgi for a Django application (OSQA) on RHEL 5 with Python 2.43 (cannot upgrade). I had the site set up and working fine, and then tried to integrate the authentication with python-ldap ...
0
votes
1answer
755 views

How do I search for an object in LDAP based on its dn, in python-ldap?

I am trying to use e.g. the search_s function to search for an object based on its full distinguished name, but am not finding this to be convenient. For example, search_s('DC=example, DC=com', ...