Conversation:
Notices
-
What kind of braindead password requirements are those?!
* "maximum of 12 characters"
* "must start with a letter"
* Symbol set limited to 11 different symbols
ffs, people… http://sn.chromic.org/attachment/328464
-
@chimo, I've dealt with systems like that; it often means that they're storing your password in cleartext and(!)/or interconnecting multiple systems that each failing to sanitize their inputs in at least one of those ways.
-
@chimo for example, SSO sytems with an old #IRIX box somewhere in the mix can't enforce ">8-char passwords" and sometimes enforce "<=8".
-
@chimo, "passwords must start with a letter" probably means "cleartext storage" + either "generating code + not sanitizing" or "using the wrong cmp operator". There have been many cases throughout computing history where "starts with a digit" meant "parses as numeric", for example.