Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

How can the query be found to get the value of attributes like MinPwdLen, MinPwdAge, etc., from a Windows AD server? I got the distinguished name for this attribute from JXplorer, but I'm unable to ...
DC007's user avatar
  • 1
0 votes
0 answers
132 views

I cannot install the required package because it needs Visual Studio C++ 9.0, which is no longer supported. Unfortunately, I can't upgrade my Python version because I need it for Odoo 8 development. ...
Bagas Muhammad Shaka's user avatar
0 votes
0 answers
114 views

I'm trying to install python-ldap, but this raise an error: "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX86\x64\cl.exe" /c /nologo /O2 /...
Eliezer Reuven Ramirez Ruiz's user avatar
0 votes
1 answer
598 views

I'm trying to verify a user with ldap3 with the next Python code, sometimes it goes to the 'Authentication successful' message, and sometimes it fails and goes to the 'LDAP search failed' with the ...
Izik's user avatar
  • 968
13 votes
5 answers
43k views

I was installing Odoo 15 inside a Python virtual environment on Ubuntu 20.04. I've downloaded Odoo from the official GitHub repository and use Nginx as a reverse proxy. after following the ...
Elon Fask's user avatar
  • 163
0 votes
0 answers
136 views

Some of AD accounts are inactive and their pwdLastSet is equal to 0. However, when I'm trying to calculate password age for accounts, this inactive accounts gave me a last possible date 1601-01-01 00:...
user avatar
0 votes
1 answer
67 views

I am trying to set up Google secure LDAP on my Macbook Pro running Monterey 12.3 following these instructions from Google. request.appendData_(NSData.dataWithBytes_length_(CONFIG, len(CONFIG))) ...
Dominik Jaro's user avatar
1 vote
1 answer
444 views

I am using OpenSuse Tumbleweed and try to connect my pythons script with an ldap server. following my code: import ldap connection = ldap.initialize("*address*") But i got following error: ...
SchinkTasia's user avatar
1 vote
1 answer
7k views

I don't know LDAP but I need to develop an application (essentially a LDAP client) for authentication on an LDAP Server and perform a query/search in the directory managed by the LDAP Server. My ...
User051209's user avatar
  • 2,658
0 votes
0 answers
3k views

We have an older app that is running on a Redhat 7 machine and was originally written in python 2.x and imports and uses "ldap3". We are now starting to upgrade to Redhat 8 and since it ...
jstack100's user avatar
  • 1,396
0 votes
1 answer
1k views

I am trying to authenticate users using django_auth_ldap. I have users in 2 different groups (say= Theta & Gamma, Alpha & Rho), Currently, to search users I have created 2 authentication ...
Pratik Gujarathi's user avatar
0 votes
0 answers
284 views

I am working on an application which uses ldap3 to authenticate AD user and warn the users about their password expiry date. This works fine. The issue happens when the user has checked "Password ...
therealdanish's user avatar
0 votes
1 answer
1k views

I'm trying to get more than 50.000 records from LDAP (with python-ldap and page control tools). I have searching filter, which is (|(field=value_1) (field=value_2)...(field=value_50000) But this ...
Женя Солодковая's user avatar
1 vote
0 answers
241 views

I am trying to create a lambda layer with python-ldap and I am getting error: docker run -v "$PWD":/var/task "public.ecr.aws/sam/build-python3.9" /bin/sh -c "/var/lang/bin/...
rholdberh's user avatar
  • 617
0 votes
2 answers
568 views

I am reading a csv file containing list of employees(GRCLOGIN.csv) and retrieving employee ID to Query LDAP to retrieve their related data and save it to a text file(LDAP_USERS.txt) from sys import ...
syed ali's user avatar
1 vote
0 answers
849 views

I am currently trying to delete some computer objects from the AD using python LDAP when they are deleted/decommissioned (basically any cloud instance which joins our on-pre AD domain upon creation ...
IgniteLX's user avatar
0 votes
1 answer
3k views

i installed python-ldap and ldap3 : (einstieg) C:\Users\User\Python\modules>pip freeze ldap3 @file:///C:/Users/User/Python/modules/ldap3-2.9.1-py2.py3-none-any.whl pyasn1 @ file:///C:/Users/User/...
Chorum's user avatar
  • 59
0 votes
2 answers
2k views

I'm trying to make a search in our AD with python-ldap. When I try to make the: connect.simple_bind_s('ldap_login', 'ldap_password') I am getting the error: ldap.STRONG_AUTH_REQUIRED: {'msgtype': 97,...
chrisaramar's user avatar
0 votes
1 answer
476 views

Changes on our LDAP Server have changed the case of the attributes returned from search. For example, "mailroutingaddress" is now "mailRoutingAddress". The searches themselves are ...
Stephen Jarjoura's user avatar
1 vote
2 answers
337 views

I have a LDAP schema in a .ldif file that I would like to use python-ldap to install the schema on my LDAP server. My context is the installation process of a python application that needs some custom ...
azmeuk's user avatar
  • 4,656
0 votes
1 answer
840 views

I am using Django Rest with active directory authentication. I have built a simple app with the following settings: import ldap from django_auth_ldap.config import LDAPSearch, GroupOfNamesType # ...
Moe's user avatar
  • 1,537
1 vote
1 answer
703 views

Hello I want to install a module named python-ldap locally in the same directory as my main so that it could be zipped and uploaded as a standalone function. The reason is AWS Lambda doesn't support ...
5kobrat's user avatar
  • 61
0 votes
0 answers
330 views

Using Python LDAP, how do I get all the groups a user is a member of, recursively. For example if a user is member of the group "Zurich", which is part of the group "Switzerland", ...
Thorben Croisé's user avatar
0 votes
2 answers
4k views

I have ldif file as below, I want to extract only the dn and changetype here using the ldif parser of python-ldap package. dn: cn=abc, cn=def, cn="dc=grid,dc=mycompany,dc=com", cn=tree, cn=...
user1795999's user avatar
0 votes
1 answer
956 views

I tried to enable LDAP Authentication on ODOO 14 which is install on Windows Server and when click save i got the following error "Error: Odoo Server Error Traceback (most recent call last): ...
Rami Ahmad's user avatar

1
2 3 4 5