Skip to content

Commit 06d8626

Browse files
committed
Add additional password denylist items
1 parent 7f4ee0b commit 06d8626

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

etc/password_denylist.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
[
22
{"password": "", "reason": "This password is empty."}
3+
{"password": "0", "reason": "This password is too simple and well known."},
4+
{"password": "01", "reason": "This password is too simple and well known."},
5+
{"password": "012", "reason": "This password is too simple and well known."},
6+
{"password": "0123", "reason": "This password is too simple and well known."},
7+
{"password": "01234", "reason": "This password is too simple and well known."},
8+
{"password": "012345", "reason": "This password is too simple and well known."},
9+
{"password": "0123456", "reason": "This password is too simple and well known."},
10+
{"password": "01234567", "reason": "This password is too simple and well known."},
11+
{"password": "012345678", "reason": "This password is too simple and well known."},
12+
{"password": "0123456789", "reason": "This password is too simple and well known."},
313
{"password": "1", "reason": "This password is too simple and well known."},
414
{"password": "12", "reason": "This password is too simple and well known."},
515
{"password": "123", "reason": "This password is too simple and well known."},
@@ -50,6 +60,9 @@
5060
{"password": "asdfghjkl;'", "reason": "This password is too simple and well known."},
5161
{"password": "correct horse battery staple", "reason": "This is a bad password because it's well known. Don't take advice from a web comic too seriously."},
5262
{"password": "correcthorsebatterystaple", "reason": "This is a bad password because it's well known. Don't take advice from a web comic too seriously."},
63+
{"password": "p@ssw0rd", "reason": "This password is too simple and well known."},
64+
{"password": "p@ssword", "reason": "This password is too simple and well known."},
65+
{"password": "passw0rd", "reason": "This password is too simple and well known."},
5366
{"password": "password", "reason": "This password is too simple and well known."},
5467
{"password": "q", "reason": "This password is too simple and well known."},
5568
{"password": "qw", "reason": "This password is too simple and well known."},

0 commit comments

Comments
 (0)