Earlier quoted context omitted.
I wonder how they do that. If they store the password hashed, wouldn't they have to normalize it two/three different ways and store a hash for each?
They would only have to store a single hash - the proper password. When you log in to Facebook, they hash the password you gave them and try that. If it fails, they modify the password you gave them, reversing the case on all letters (and possibly convert numbers to special characters, or vice versa - I don't know if they go that far), and hash that. Remember that when you log in, the server is receiving your passwor…
Diablo 3 bug report: "Passwords not case-sensitive."
41–50 of 156 posts
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#42Earlier quoted context omitted.
So use a long password without them: password strength is what counts, not funny rules about special characters and minimum characters.
They also restrict it to EDIT: That doesn't even make sense, unless they're storing plain-text passwords.
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#43Although this is a really silly bug, I did already know about it (it's the same in WoW), so frankly at the moment, I'm more concerned about the Diablo 3 bug which is causing a lot of us to not be able to successfully login and play, at all. Really not good.
> Although this is a really silly bug, Personally, I don't believe it is a bug at all. They have obviously made the decision to not enforce case in an effort to reduce customer service load/player frustration. Yes, it reduces the time needed to brute force your password if someone got hold of their user DB. But 1) we are still talking an excessively long time (their min. password length is 8) and 2) once they have th…
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#44Earlier quoted context omitted.
I wonder how they do that. If they store the password hashed, wouldn't they have to normalize it two/three different ways and store a hash for each?
They would only have to store a single hash - the proper password. When you log in to Facebook, they hash the password you gave them and try that. If it fails, they modify the password you gave them, reversing the case on all letters (and possibly convert numbers to special characters, or vice versa - I don't know if they go that far), and hash that. Remember that when you log in, the server is receiving your passwor…
sha1sum(lcase($passwd). $salt);
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#45Earlier quoted context omitted.
They would only have to store a single hash - the proper password. When you log in to Facebook, they hash the password you gave them and try that. If it fails, they modify the password you gave them, reversing the case on all letters (and possibly convert numbers to special characters, or vice versa - I don't know if they go that far), and hash that. Remember that when you log in, the server is receiving your passwor…
Why not just lcase everything during initial hashing and later auth? sha1sum(lcase($passwd). $salt);
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#46If you're worried about security as a user, d/l the free authenticator.
If you're worried about Blizzard, don't -- they're big kids. You can run your 10+ million user game platform the way you want, Blizzard will run theirs the way they want.
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#47Earlier quoted context omitted.
So use a long password without them: password strength is what counts, not funny rules about special characters and minimum characters.
This is not the point. Users are put at risk because Blizzard fails to adequately impose security. Tech savvy users can just use a stronger password, but the others are put at risk by what I can only call negligence.
Phishing, keyloggers and various social hacks are the real problem. Blizzard has always been very active in this regard with their constant and visible reminders that "Blizzard will NEVER ask for your password", but most users disregard even that.
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#48I am interested to know how are they storing case insensitive passwords if they were not plain text, they only way I could imagine is by converting them in a full lower/upper case before hashing is performed.
Re: Diablo 3 bug report: "Passwords not case-sensitive."
#49Use a passphrase then if this bothers you? If you want to be serious about security of your account, use one of the two factor authentication systems available that they offer. The faster passwords stop looking like: C@tV0m!t And start looking like: correct battery horse staple the better for security and actually remembering the phrase rather than writing it down. (XKCD on this: http://xkcd.com/936/ )
One has to imagine that the actual phrase "correct battery horse staple" is a fairly poor choice of password, at this point though...