Skip to content

Commit

Permalink
reduce max password length on costco.com (#758)
Browse files Browse the repository at this point in the history
The rendered password input has `maxlength="16"`, and the "Create
Account" page lists "Use between 8 and 16 characters". Decrease the
maximum password length.
  • Loading branch information
sjbarag authored May 13, 2024
1 parent 5978aae commit 06deeed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quirks/password-rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
"password-rules": "minlength: 6; maxlength: 15; allowed: lower, upper, digit, [-.];"
},
"costco.com": {
"password-rules": "minlength: 8; maxlength: 20; required: lower, upper; allowed: digit, [-!#$%&'()*+/:;=?@[^_`{|}~]];"
"password-rules": "minlength: 8; maxlength: 16; required: lower, upper; allowed: digit, [-!#$%&'()*+/:;=?@[^_`{|}~]];"
},
"coursera.com": {
"password-rules": "minlength: 8; maxlength: 72;"
Expand Down

0 comments on commit 06deeed

Please sign in to comment.