diff options
| author | Paolo Melchiorre <paolo@melchiorre.org> | 2022-09-28 11:27:10 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-09-28 18:40:05 +0200 |
| commit | fa3afc5d86f1f040922cca2029d6a34301597a70 (patch) | |
| tree | 2f376cecf2029bf8e995e9d39b28703d8dba7a17 /django/contrib/auth/password_validation.py | |
| parent | 10bb21e71e3668f770493e2af0d0e0271830f7a3 (diff) | |
Fixed #34056 -- Updated the list of common passwords for CommonPasswordValidator.
Diffstat (limited to 'django/contrib/auth/password_validation.py')
| -rw-r--r-- | django/contrib/auth/password_validation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/password_validation.py b/django/contrib/auth/password_validation.py index 3f8f888ddc..a5002372d2 100644 --- a/django/contrib/auth/password_validation.py +++ b/django/contrib/auth/password_validation.py @@ -221,7 +221,7 @@ class CommonPasswordValidator: The password is rejected if it occurs in a provided list of passwords, which may be gzipped. The list Django ships with contains 20000 common passwords (lowercased and deduplicated), created by Royce Williams: - https://gist.github.com/roycewilliams/281ce539915a947a23db17137d91aeb7 + https://gist.github.com/roycewilliams/226886fd01572964e1431ac8afc999ce The password list must be lowercased to match the comparison in validate(). """ |
