mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Previous commit 31f89121fe happened to fix
CVE-2021-3309, but unfortunately breaks LDAP_REJECT_UNAUTHORIZED=false.
This commit is contained in:
parent
fa51ce6fb0
commit
4c6084ab68
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ export default class LDAP {
|
||||||
idle_timeout : this.constructor.settings_get('LDAP_IDLE_TIMEOUT'),
|
idle_timeout : this.constructor.settings_get('LDAP_IDLE_TIMEOUT'),
|
||||||
encryption : this.constructor.settings_get('LDAP_ENCRYPTION'),
|
encryption : this.constructor.settings_get('LDAP_ENCRYPTION'),
|
||||||
ca_cert : this.constructor.settings_get('LDAP_CA_CERT'),
|
ca_cert : this.constructor.settings_get('LDAP_CA_CERT'),
|
||||||
reject_unauthorized : this.constructor.settings_get('LDAP_REJECT_UNAUTHORIZED') || true,
|
reject_unauthorized : this.constructor.settings_get('LDAP_REJECT_UNAUTHORIZED') !== undefined ? this.constructor.settings_get('LDAP_REJECT_UNAUTHORIZED') : true,
|
||||||
Authentication : this.constructor.settings_get('LDAP_AUTHENTIFICATION'),
|
Authentication : this.constructor.settings_get('LDAP_AUTHENTIFICATION'),
|
||||||
Authentication_UserDN : this.constructor.settings_get('LDAP_AUTHENTIFICATION_USERDN'),
|
Authentication_UserDN : this.constructor.settings_get('LDAP_AUTHENTIFICATION_USERDN'),
|
||||||
Authentication_Password : this.constructor.settings_get('LDAP_AUTHENTIFICATION_PASSWORD'),
|
Authentication_Password : this.constructor.settings_get('LDAP_AUTHENTIFICATION_PASSWORD'),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue