nginx-ldap icon indicating copy to clipboard operation
nginx-ldap copied to clipboard

nginx LDAP auth with groups support

Results 4 nginx-ldap issues
Sort by recently updated
recently updated
newest added

Currently, the search base is hardcoded: `data = ldap_connection.search_s([...], filterstr='(&(objectClass=user)(sAMAccountName=' + user + '))')` This may be fine for Active Directory, but unusable on standard LDAP schemas like iNetOrgPerson, account,...

Hi! I've implemented your nginx-ldap-auth module and it authenticates pretty well, nice job! The only issue is, when I'm trying to set up authorization (user and group access enforcement), it's...

Right now, checking of the SSL certificate of the LDAP server is hardcoded disabled: ` ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER)` This barely adds much security at all, except for the connection itself being...

When a wrong password was provided _check_auth_ returns with false. But when a wrong username was provided there is an unhandled error: ``` ... ldap_connection.simple_bind_s(data['distinguishedName'][0], passwd) TypeError: list indices must...