Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
3c2a4703
Commit
3c2a4703
authored
Feb 21, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] ldap允许空密码
parent
4904aac2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
backends.py
apps/authentication/ldap/backends.py
+2
-7
forms.py
apps/common/forms.py
+1
-1
No files found.
apps/authentication/ldap/backends.py
View file @
3c2a4703
...
...
@@ -16,13 +16,8 @@ class LDAPAuthorizationBackend(LDAPBackend):
"""
def
authenticate
(
self
,
request
=
None
,
username
=
None
,
password
=
None
,
**
kwargs
):
if
password
or
self
.
settings
.
PERMIT_EMPTY_PASSWORD
:
ldap_user
=
LDAPUser
(
self
,
username
=
username
.
strip
(),
request
=
request
)
user
=
self
.
authenticate_ldap_user
(
ldap_user
,
password
)
else
:
logger
.
debug
(
'Rejecting empty password for {}'
.
format
(
username
))
user
=
None
ldap_user
=
LDAPUser
(
self
,
username
=
username
.
strip
(),
request
=
request
)
user
=
self
.
authenticate_ldap_user
(
ldap_user
,
password
)
return
user
def
get_user
(
self
,
user_id
):
...
...
apps/common/forms.py
View file @
3c2a4703
...
...
@@ -96,7 +96,7 @@ class LDAPSettingForm(BaseForm):
label
=
_
(
"LDAP server"
),
)
AUTH_LDAP_BIND_DN
=
forms
.
CharField
(
label
=
_
(
"Bind DN"
),
required
=
False
,
label
=
_
(
"Bind DN"
),
)
AUTH_LDAP_BIND_PASSWORD
=
FormEncryptCharField
(
label
=
_
(
"Password"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment