flask-ldapconn icon indicating copy to clipboard operation
flask-ldapconn copied to clipboard

Flask extension providing python-ldap3 connection and ORM for accessing LDAP servers.

Results 12 flask-ldapconn issues
Sort by recently updated
recently updated
newest added

Bumps [flask](https://github.com/pallets/flask) from 1.0.2 to 2.2.5. Release notes Sourced from flask's releases. 2.2.5 This is a security fix release for the 2.2.x release branch. Note that 2.3.x is the currently...

dependencies

entry.py detects changes to an ldap entry item only if the change triggers `.__setattr__`. This is not the case with mutable objects like lists, they can be updates without `__setattr__`...

Hi I can seem to set the LDAP_SERVER Variable I get this error ldap3.core.exceptions.LDAPSocketOpenError: ('unable to open socket', [(LDAPSocketOpenError('socket connection error while opening: [Errno 111] Connection refused',), ('::1', 389, 0,...

I'm trying to write binary data (python type bytes) to a jpegPhoto attribute and get errors: ``` class User(UserMixin, ldap.Entry): ... jpegPhoto = ldap.Attribute('jpegPhoto') jpeg = ... # binary data,...

Using python 3.7.0, On the last version of flask_ldapconn (0.10.0) when you try to serialize as json an object created from a ldap Model, throws this exception: TypeError: Object of...

Trying to test extension, not working out of the box as expected, got error when entering intentionally wrong credentials ``` flask_ldapconn\__init__.py", line 162, in authenticate username = response[0]['dn'] KeyError: 'dn'...

Hi! In my project, I needed to fetch metrics about LDAP connection, like amount of queries, etc. ldap3 has a usage class that allows it, but the flask-ldapconn by default...

Hi, it has just been published the release 2 of ldap3. Is somebody already working on integrating it? It could be cool to use the abstraction level both for reading...

> Added rebind() method to Connection object to rebind with a different user (thanks Lorenzo)

Allow to set more than one ldap server.

enhancement