flask-ldap3-login icon indicating copy to clipboard operation
flask-ldap3-login copied to clipboard

LDAP3 Logins for Flask/Flask-Login

Results 19 flask-ldap3-login issues
Sort by recently updated
recently updated
newest added

I'm having an issue where only one user can log in at any time. Trying to track down the issue, it seems to be failing during form validation (before getting...

documentation

I get the following error when a user tries to log in with invalid credentials: ``` ERROR:flask.app:Exception on /api/auth/login [POST] Traceback (most recent call last): File "/var/www/site/backend/auth/api.py", line 42, in...

bug
dependencies

User credential validation against MS Active Directory (via NTLM) appears to always fail. From performing an element of troubleshooting, the bind is successful and I can see that the initial...

question

following a misconfiguration, I found when binding with the AD, the connection was successfully established, but often when doing the search, it found that the type was not correct and...

I wanted to help add licensing information in setup.py as follows. ``` license="MIT", classifiers=[ "Intended Audience :: Developers", "Programming Language :: Python", "Environment :: Web Environment", "Framework :: Flask", "License...

First thanks for this package (the only flask ldap package that worked for me). I was wondering if there is a way to use a Fake LDAP for testing authentication...

enhancement

Hi @HeMan ! Just wanted to highlight the following observation. In current version of the app there's an option to add LDAP server during plugin initialization if `LDAP_ADD_SERVER` is set...

enhancement

## Issue Long story short, I'm using `LDAP3LoginManager.authenticate()` to authenticate users. Bind, user search, and user authentication all work successfully, but the resulting `user_groups` is an empty list. The issue...

need-info

This issue only happens whenever I want to user `get_user_info_for_username()` and search applies to Base DN only (i.e. User DN is None). The way our AD is structured is there...

bug

I have code that extracts data from the user like so... `fname = data["givenName"]` this usually works fine and the value is a string. Occasionally, the value is a list...