On Mon, Mar 10, 2014 at 11:44 AM, David Lum <[email protected]> wrote: > Today trying to log into our guest wireless for the first time I'm presented > with a portal > and when I enter my password and it tells me "passwords must not contain > spaces".
Our ERP system limits passwords to <= 12 characters, no spaces or non-alpha-numeric characters. Uppercase, lowercase, and digits only. It is case-sensitive, at least. It also has a complexity checking option, which we have enabled. When enabled, passwords must contain at least one digit and at least one uppercase character. If you read that carefully, you'll note a character class was left out. It's an accurate description of what the software actually checks for, though. -- Ben

