Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
1c1b8451
Commit
1c1b8451
authored
7 years ago
by
Michael Terry
Committed by
Michael Terry
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Use unicode passwords when validating
Requiring that up front lets us properly validate length and such.
parent
25f0ac5c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/djangoapps/util/password_policy_validators.py
+7
-1
7 additions, 1 deletion
common/djangoapps/util/password_policy_validators.py
common/djangoapps/util/tests/test_password_policy_validators.py
+28
-5
28 additions, 5 deletions
.../djangoapps/util/tests/test_password_policy_validators.py
with
35 additions
and
6 deletions
common/djangoapps/util/password_policy_validators.py
+
7
−
1
View file @
1c1b8451
...
...
@@ -160,6 +160,12 @@ def validate_password(password, user=None, username=None):
user: A User model object, if available. Required to check against security policy.
username: The user-provided username, if available. Taken from
'
user
'
if not provided.
"""
if
not
isinstance
(
password
,
text_type
):
try
:
password
=
text_type
(
password
,
encoding
=
'
utf8
'
)
# some checks rely on unicode semantics (e.g. length)
except
UnicodeDecodeError
:
raise
ValidationError
(
_
(
'
Invalid password.
'
))
# no reason to get into weeds
username
=
username
or
(
user
and
user
.
username
)
if
user
:
...
...
@@ -308,7 +314,7 @@ def _validate_password_dictionary(value):
if
password_max_edit_distance
and
password_dictionary
:
for
word
in
password_dictionary
:
edit_distance
=
distance
(
text_type
(
value
)
,
text_type
(
word
))
edit_distance
=
distance
(
value
,
text_type
(
word
))
if
edit_distance
<=
password_max_edit_distance
:
raise
ValidationError
(
_
(
"
Password is too similar to a dictionary word.
"
),
code
=
"
dictionary_word
"
)
This diff is collapsed.
Click to expand it.
common/djangoapps/util/tests/test_password_policy_validators.py
+
28
−
5
View file @
1c1b8451
# -*- coding: utf-8 -*-
"""
Tests for util.password_policy_validators module.
"""
import
mock
...
...
@@ -8,7 +9,9 @@ from django.conf import settings
from
django.core.exceptions
import
ValidationError
from
django.test.utils
import
override_settings
from
util.password_policy_validators
import
password_instructions
,
validate_password
,
_validate_password_dictionary
from
util.password_policy_validators
import
(
password_instructions
,
password_min_length
,
validate_password
,
_validate_password_dictionary
)
@ddt
...
...
@@ -22,18 +25,38 @@ class PasswordPolicyValidatorsTestCase(unittest.TestCase):
"""
Tests dictionary checks
"""
# Direct match
with
self
.
assertRaises
(
ValidationError
):
_validate_password_dictionary
(
'
testme
'
)
_validate_password_dictionary
(
u
'
testme
'
)
# Off by one
with
self
.
assertRaises
(
ValidationError
):
_validate_password_dictionary
(
'
estme
'
)
_validate_password_dictionary
(
u
'
estme
'
)
# Off by two
with
self
.
assertRaises
(
ValidationError
):
_validate_password_dictionary
(
'
bestmet
'
)
_validate_password_dictionary
(
u
'
bestmet
'
)
# Off by three (should pass)
_validate_password_dictionary
(
'
bestem
'
)
_validate_password_dictionary
(
u
'
bestem
'
)
def
test_unicode_password
(
self
):
"""
Tests that validate_password enforces unicode
"""
byte_str
=
b
'
𤭮
'
unicode_str
=
u
'
𤭮
'
# Sanity checks and demonstration of why this test is useful
self
.
assertEqual
(
len
(
byte_str
),
4
)
self
.
assertEqual
(
len
(
unicode_str
),
1
)
self
.
assertEqual
(
password_min_length
(),
2
)
# Test length check
with
self
.
assertRaises
(
ValidationError
):
validate_password
(
byte_str
)
validate_password
(
byte_str
+
byte_str
)
# Test badly encoded password
with
self
.
assertRaises
(
ValidationError
)
as
cm
:
validate_password
(
b
'
\xff\xff
'
)
self
.
assertEquals
(
'
Invalid password.
'
,
cm
.
exception
.
message
)
@data
(
(
u
''
,
'
at least 2 characters & 2 letters & 1 number.
'
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment