See also: http://plaintextoffenders.com
Bad Password Policies
41–45 of 45 posts
Re: Bad Password Policies
#42See also: http://plaintextoffenders.com
And the very first complaint is about a site sending you a password after registration, which is safe unless your email is compromised (in which case you're screwed anyway).
> On the plus side, they don’t send you your plaintext password if you click on the forgot password link, so maybe they don’t store it in plaintext.
Re: Bad Password Policies
#43Assuming that we're talking about purely randomly generated passwords, the entropy of passwords generated to fit in at least a few of the cases in the the original article should be fine. The UX factors are annoying however. This is an area where consistency would assist conformance.
[0] https://en.wikipedia.org/wiki/Password_strength#Bit_strength...
Re: Bad Password Policies
#44Earlier quoted context omitted.
IIRC Facebook creates three passwords to deal with character case issues; the one you enter, an inverted case version and a version with the first characters case inverted.
I'd be very surprised if they created all 3. They probably check the other 2 variations if the first one fails though: if (entered == password || entered.swapcase() == password) .. // etc