Earlier quoted context omitted.
I don't understand why you are so upset. Just edit the HTML and set maxlength to anything you want. It will seal a deal. :D
As far as I can tell, it's checked on the server side too. But I might have another go at it tonight to be sure. The worst that could happen is that I get a longer, more secure password ;)
Limiting passwords to 12 characters is "secure enough"
71–80 of 111 posts
Re: Limiting passwords to 12 characters is "secure enough"
#72If a 12-char password is "secure enough" today, then a 16-char password is obviously even more secure and future-proof. Not to mention a 30-char password, or a password that contains more special characters than what your dumb webapp allows. Not to mention that a 30-char purely alphabetic passphrase such as xkcd.com/936 is so much easier to remember (i.e. less likely to be written on a post-it note) and type into tod…
Re: Limiting passwords to 12 characters is "secure enough"
#73I've seen worse. There's a UK company called The Train Line ( http://www.thetrainline.com/ ) that handles money, and limits passwords to 10 chars with no punctuation characters.
Re: Limiting passwords to 12 characters is "secure enough"
#74If a 12-char password is "secure enough" today, then a 16-char password is obviously even more secure and future-proof. Not to mention a 30-char password, or a password that contains more special characters than what your dumb webapp allows. Not to mention that a 30-char purely alphabetic passphrase such as xkcd.com/936 is so much easier to remember (i.e. less likely to be written on a post-it note) and type into tod…
I don't see why you should limit the length of a password.
Re: Limiting passwords to 12 characters is "secure enough"
#75Even if they were brute-forcing, a new GPU cluster can do 350 billion guesses per second. http://arstechnica.com/security/2012/12/25-gpu-cluster-crack... That means an average of 78 days to crack an individual password, even with no heuristics about which passwords are more likely.
Re: Limiting passwords to 12 characters is "secure enough"
#76I've added a comment, please verify. http://forums.stardock.com/439802/page/1/#3315287
Re: Limiting passwords to 12 characters is "secure enough"
#77Re: Limiting passwords to 12 characters is "secure enough"
#78If a 12-char password is "secure enough" today, then a 16-char password is obviously even more secure and future-proof. Not to mention a 30-char password, or a password that contains more special characters than what your dumb webapp allows. Not to mention that a 30-char purely alphabetic passphrase such as xkcd.com/936 is so much easier to remember (i.e. less likely to be written on a post-it note) and type into tod…
Alternative interpretation: the Website is neither UTF8-safe (or whatever charset you prefer) nor are prepared statements used. Otherwise VARCHAR is fine even without any escaping.
Re: Limiting passwords to 12 characters is "secure enough"
#79Earlier quoted context omitted.
I don't understand why you are so upset. Just edit the HTML and set maxlength to anything you want. It will seal a deal. :D
As far as I can tell, it's checked on the server side too. But I might have another go at it tonight to be sure. The worst that could happen is that I get a longer, more secure password ;)
Re: Limiting passwords to 12 characters is "secure enough"
#80If a 12-char password is "secure enough" today, then a 16-char password is obviously even more secure and future-proof. Not to mention a 30-char password, or a password that contains more special characters than what your dumb webapp allows. Not to mention that a 30-char purely alphabetic passphrase such as xkcd.com/936 is so much easier to remember (i.e. less likely to be written on a post-it note) and type into tod…
I don't see why you should limit the length of a password.
The upper limit of 64 chars is just something that I copy-and-pasted from an actual web app that I wrote some time ago. It works in most cases, but if I were to write the same app now, I'd probably remove the upper limit or make it very large. (By the way, bcrypt only hashes the first 72 bytes of your password [1], so make sure to do something like bcrypt(sha256(password)) if you plan on using longer passwords.)