Why the crazy password requirements? It a Q&A site, and I have to conform to arbitrarily chosen password complexity criteria.

With a 22 random lowercase characters (entropy 119 bits), the create account page asks me to:

enter image description here

Just adding uppercase characters to the mix does not satisfy the requirements. With 125 bits of entropy, It still asks me to:

enter image description here

Fortunately, doing either of these does satisfy the requirements. As long as there are enough unique characters. The password a1ᓕ♵Ŀꁏꂯ (with a1 replacing Unicode characters to satisfy the numbers and letters requirement, reducing the level of entropy from 112 to 88 bits) still causes the generator to insist that the password:

enter image description here

Sadly, the famous correct horse battery staple password doesn't fly, either:

enter image description here

I add entropy in my passwords in other ways than the Password1 (entropy approximately 0) mechanism suggested by these requirements, and prefer to use the Stack Exchange OpenID provider.

link|improve this question
3  
I added some examples because most people viewing this question will have created their profile a long time ago and forgotten about the requirements. Feel free to roll back or modify if you don't like my edits. – Kevin Vermeer Oct 31 '11 at 3:14
3  
13  
3  
For those currently reading, the obligatory XKCD reference is now in the question. – mootinator Oct 31 '11 at 3:35
Thank you for reminding me why I use OpenID. – Wladimir Palant Oct 31 '11 at 6:57
8  
"Why the crazy password requirements? It a Q&A site" -- It's not just a Q&A site, it's an OpenId provider (which you know, since you mention it). Also: security.stackexchange.com/questions/3913/…, so we have an on-topic reference as well :) – balpha Oct 31 '11 at 8:00
4  
@balpha that's not the only reference we have: security.blogoverflow.com/2011/10/how-long-is-a-password-string – Ninefingers Oct 31 '11 at 12:40
As posted in my answer to the duplicate question if you're creating a long-length string of arbitrary characters, what is the difficulty in adding upper-case or uniqueness? If users like you aren't truly inconvenienced (other than for the sake of academic discussions), and the alternatives are to have no restrictions at all or to have equally arbitrary yet different-than-the-current restrictions, what is the drawback to the current situation and how would a change improve it? – Farray Feb 22 at 21:36
1  
@Farray What about making a long-length string of only lower case letters? More secure than Password1 and easier to remember than the average random string. What about the fact that 8 unique characters is a significantly smaller search space than 8 arbitrary characters? It'll block aaaaaaaa, sure, but as noted Password1 still passes. The dumb will be dumb unless the requirements are so insane as to be impossible; making everyone jump through hoops in a failed attempt to mitigate reality is not something that makes sense to me. – Matthew Read Feb 22 at 22:11
@MatthewRead Your point about smaller search space is valid, but perhaps mitigated by the apparent lack of maximum length. I agree that the dumb will be dumb, but that doesn't mean they should be ignored. In this case I happen to think that the smart are minimally inconvenienced one direction, while the dumb are minimally inconvenienced the other direction. A good compromise... – Farray Feb 22 at 22:43
If someone sums up some great reasons for why they should change the criteria, I'll award the bounty to them. None of the current answers really answers the question. – Emil Mar 25 at 16:02
feedback

2 Answers

Stack Exchange username/password accounts are actually OpenIDs, not something tied to the Q&A portion of the network ( https://openid.stackexchange.com/ ).

Because these accounts aren't constrained in use (by design) we can't assume anything about the "importance" of the account, thus the rather stringent password constraints.

What the password contraints are meant to do is act as a "normal person"-readable proxy for entropy.

Directly exposing entropy measurements to a registering user would be absurdly user hostile, and a simple yes/no indicator just begs the question "why isn't my password acceptable?" (you can't just say "not enough bits!").

In short, while you and I (and a non-trivial number of the people reading this, I'd wager) can reason about Shannon entropy the typical end user cannot. The character class stuff is a reasonable approximation that has the benefit of being explainable, and we fall on the more strict side because security is involved.

So no, we won't be relaxing the openid.stackexchange.com password requirements.

link|improve this answer
2  
But will still use an absurd password policy that accepts Password1. – OffBySome Mar 19 at 15:17
I'm sorry, but .. what? These arguments are not convincing me at all. – Emil Mar 19 at 21:29
feedback

Yes. In fact there is a fairly easy workaround. Simply sign up for a Q/A account. You can register directly here.

Then you may have to follow these steps to get an OpenID with that account.

Then when you login to meta.stackoverflow.com click the middle button to login with Yahoo!. This will allow you to login into meta.stackoverflow.com with your Q/A account on Yahoo Answers! All of the passwords mentioned work fine with Yahoo.

Here is the advice article for a STRONG password.

link|improve this answer
The thing is that I don't want to use an OpenID-account, I want to use a StackExchange-account. – Emil Mar 17 at 23:35
So you want them to reimpliment the same functionality that Yahoo already implements... I think they have better things to do. – Evan Carroll Mar 17 at 23:36
1  
I think you misunderstand - StackExchange-accounts already exists, but it's password restrictions are just too much. – Emil Mar 17 at 23:38
Right, you can link that account though to Yahoo. The feature is already there. – Evan Carroll Mar 17 at 23:43
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged