What sites do that? I usually see like 6 char minimum, can't remember ever seeing a max like that lol
People's passwords as nvarchar(10) in the DB?I'd suggest it is over-zealous programmers insisting on saving processing/hard drive overheads.
If you limit your passwords to 10 characters - nvarchar(10), it means your database can store more logins that in you used nvarchar(max), or even nvarchar(11). Programmers can be a bit funny about saving milliseconds of time. If they can show that limiting your password to 6 characters will make the website move 0.001 seconds quicker they'll do it.
People's passwords as nvarchar(10) in the DB?![]()
Sloppy design. Short passwords are easier to brute force. The other one that is a big red flag to me is when a password reset gives you back the plain text password.
Sites that do this don't get my card or bank details.
Sloppy design. Short passwords are easier to brute force. The other one that is a big red flag to me is when a password reset gives you back the plain text password.
Sites that do this don't get my card or bank details.