Zxcvbn: realistic password strength estimation
tech.dropbox.com
Zxcvbn: realistic password strength estimation
1–10 of 134 posts
Re: Zxcvbn: realistic password strength estimation
#2Can anyone elaborate why "&" or "!" wouldn't be allowed?
Re: Zxcvbn: realistic password strength estimation
#3> Bank of America doesn’t allow passwords over 20 characters, disallowing correcthorsebatterystaple. Passwords can contain some symbols, but not & or !, disallowing the other two passwords Can anyone elaborate why "&" or "!" wouldn't be allowed?
Re: Zxcvbn: realistic password strength estimation
#4The one usability problem I see is users complaining that zxcvbn is calling their 'secure' password they use on everything insecure. :-)
Re: Zxcvbn: realistic password strength estimation
#5It seems like password strength basically boils down to:
1) imagine the space of all possible passwords
2) put them in order from most to least likely (123456 would be at the top, some giant 64 character random monster at the bottom)
3a) if you're malicious, use this list to begin cracking
3b) if you're securing something, use this list to measure strength
An ideal password strength measurer would simply return the approximate rank of your password.
Re: Zxcvbn: realistic password strength estimation
#6The demo at http://dl.dropbox.com/u/209/zxcvbn/test/index.html shows what's happening behind the scenes. The one usability problem I see is users complaining that zxcvbn is calling their 'secure' password they use on everything insecure. :-)
Good.
Re: Zxcvbn: realistic password strength estimation
#7> Bank of America doesn’t allow passwords over 20 characters, disallowing correcthorsebatterystaple. Passwords can contain some symbols, but not & or !, disallowing the other two passwords Can anyone elaborate why "&" or "!" wouldn't be allowed?
Re: Zxcvbn: realistic password strength estimation
#8> Bank of America doesn’t allow passwords over 20 characters, disallowing correcthorsebatterystaple. Passwords can contain some symbols, but not & or !, disallowing the other two passwords Can anyone elaborate why "&" or "!" wouldn't be allowed?
A not-very-great but traditional way to avoid some kinds of security holes is to sanitize your input by blacklisting anything that could be a shell/scripting/SQL metacharacter. Seems restrictions like that are still pretty common, either because it's actually still needed for security (alarming if true at BoA), or because it's now a sort of cargo-cult thing.
the forbidden list is: $ ^ ! [ ]
Re: Zxcvbn: realistic password strength estimation
#9> Bank of America doesn’t allow passwords over 20 characters, disallowing correcthorsebatterystaple. Passwords can contain some symbols, but not & or !, disallowing the other two passwords Can anyone elaborate why "&" or "!" wouldn't be allowed?
There probably is a special level of hell for UI UX sins.