46
votes
41answers
2k views
Should We Mask Passwords?
From Jacob Nielson's "Stop Password Masking":
Usability suffers when users type in
passwords and the only feedback they
get is a row of bullets. Typically,
masking passwords doesn't even
…
24
votes
10answers
954 views
Is 5-digit PIN better than most passwords?
This is something that's been bugging me for many years: why most online services highly value the entropy of a password, citing it as a security measure, and enforcing it when users select a …
24
votes
9answers
1k views
Preferred Method of Storing Passwords In Database
What is your preferred method/datatype for storing passwords in a database (preferably SQL Server 2005). The way I have been doing it in several of our applications is to first use the .NET encryption …
21
votes
0answers
2k views
What is your favorite password storage tool? [closed]
Aside from personal passwords, I'm always juggling a number of project-specific passwords, including those for network, web and database authentication. Some authentication can be managed with ssh …
18
votes
5answers
613 views
How do I avoid having the database password stored in plaintext in sourcecode?
In the web-application I'm developing I currently use a naive solution when connecting to the database:
Connection c = DriverManager.getConnection("url", "username", "password");
This is pretty …
17
votes
17answers
1k views
Phonetically Memorable Password Generation Algorithms
Background
While at the Gym the other day, I was working with my combination lock, and realized something that would be useful to me as a programmer. To wit, my combination is three seperate sets of …
17
votes
16answers
4k views
Encrypting/Hashing plain text passwords in database
I've inherited a web app that I've just discovered stores over 300,000 usernames/passwords in plain text in a SQL Server database. I realize that this is a Very Bad Thing™.
Knowing that I'll have to …
17
votes
4answers
1k views
How to store passwords in Winforms application?
I have some code like this in a winforms app I was writing to query a user's mail box Storage Quota.
DirectoryEntry mbstore = new DirectoryEntry(@"LDAP://" + strhome, m_serviceaccount, m_pwd, …
16
votes
10answers
797 views
Why restrict the length of a password?
I've just signed up to a site to purchase some goods, and when I tried to enter my (reasonably secure) password I was informed it was too long, and that I should enter a password between 5 & 10 …
15
votes
6answers
982 views
Difference between Hashing a Password and Encrypting it
The current top-voted to this question states:
Another one that's not so much a security issue, although it is security-related, is complete and abject failure to grok the difference between …
15
votes
13answers
3k views
How best to generate a random string in Ruby
I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z]
value = ""; 8.times{value << (65 + rand(25)).chr}
but it looks junky, and since it isn't a …
14
votes
11answers
730 views
Password generation, best practice
I need to generate some passwords, I want to avoid characters that can be confused for each other. Is there a definitive list of characters I should avoid? my current list is
il10o8B3Evu![]{}
Are …
13
votes
10answers
1k views
Best practices for storing database passwords
I have a database that many different client applications (a smattering of web services, some java apps and a few dot net applications) connect to. Not all of these are running on windows (Sadly, …
12
votes
8answers
357 views
Why are plain text passwords bad, and how do I convince my boss that his treasured websites are in jeopardy?
I've always been of the impression that storing passwords in a database as plain text is (as someone else here put it) a Very Bad Thing™.
Historically, most of our server-side coding needs have been …
12
votes
15answers
1k views
What is the best way to check the strength of a password?
See also How do you compute password complexity?
What is the best way of ensuring that a user supplied password is a strong password in a registration or change password form?
EDIT: one idea I had …
