Best way to handle user account authentication and passwords - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T09:20:57Zhttp://stackoverflow.com/feeds/question/60757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords4Best way to handle user account authentication and passwordsBrian R. Bondy2008-09-13T18:34:58Z2009-07-24T10:54:46Z
<p>What is the best way to handle user account management in a system, without having your employees who have access to a database, to have access to the accounts.</p>
<p>Examples:</p>
<ol>
<li><p>Storing username/password in the database. This is a bad idea because anyone that has access to a database can see the username and password. And hence use it.</p></li>
<li><p>Storing username/password hash. This is a better method, but the account can be accessed by replacing the password hash in the database with the hash of another account that you know the auth info for. Then after access is granted reverting it back in the database. </p></li>
</ol>
<p>How does windows/*nix handle this?</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60758#607580Answer by mattruma for Best way to handle user account authentication and passwordsmattruma2008-09-13T18:38:05Z2008-09-13T18:38:05Z<p>You could store the <em>salt</em> for the hashed password in another table, of course each user would have their own salt. You could then limit access to that table.</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60759#607592Answer by Christian Lescuyer for Best way to handle user account authentication and passwordsChristian Lescuyer2008-09-13T18:41:54Z2008-09-13T18:41:54Z<ol>
<li>A very bad idea indeed. If the database is compromised, all accounts are compromised.</li>
<li>Good way to go. If your hash algorithm includes the username, replacing the password hash with another one will not work.</li>
</ol>
<p>Unix stores hashes in a a text file /etc/shadow, which is accessible only to privileged users. Passwords are encrypted with a salt.</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60767#607675Answer by Chris Upchurch for Best way to handle user account authentication and passwordsChris Upchurch2008-09-13T18:51:29Z2008-09-13T18:51:29Z<blockquote>
<p>This is a better method, but the account can be accessed by replacing the password hash in the database with the hash of another account that you know the auth info for.</p>
</blockquote>
<p>There's really no way around this. Anyone who as write access to the password file has complete control of the computer. </p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60787#607873Answer by arturh for Best way to handle user account authentication and passwordsarturh2008-09-13T19:29:54Z2009-02-22T13:02:35Z<p>You could use openID and save no confidential user passwords at all. Who said it is for websites only?</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60864#608643Answer by Mr Shark for Best way to handle user account authentication and passwordsMr Shark2008-09-13T20:51:06Z2008-09-14T08:20:21Z<p>I'd go with 2 but use some salt. Some pseudocode:</p>
<pre><code>SetPassword(user, password)
salt = RandomString()
hash = Hashfunction(salt+password)
StoreInDatabase(user, salt, hash)
CheckPassword(user, password)
(salt, hash) = GetFromDatabase(user)
if Hashfunction(salt+password) == hash
return "Success"
else
return "Login Failed"
</code></pre>
<p>It is important to use a well known hash function (such as MD5 or SHA-1), implemented in a library. <strong>Don't roll your own or try implementing it from a book</strong> its just not worth the risk of getting it wrong.</p>
<p>@Brian R. Bondy: The reason you use salt is to make dictionary attaks harder, the attacker can't hash a dictionary and try against all the passwords, instead she have to take the salt + the dictionary and hash it, which makes the storage requierments expode. If you have a dictionary of the 1000 most commaon passwords and hash them you need something like 16 kB but if you add two random letters you get 62*62*16 kB ≈ 62 Mb.</p>
<p>Else you could use some kind of <a href="http://en.wikipedia.org/wiki/One-time_password" rel="nofollow">One-time passwords</a> I have heard good things about OTPW but havent used it.</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60917#609170Answer by Jorge Córdoba for Best way to handle user account authentication and passwordsJorge Córdoba2008-09-13T22:02:06Z2008-09-13T22:02:06Z<p>The usual approach is to use option two with email:</p>
<p>Store user name, password hash and email address into the database.</p>
<p>Users can either input their password or reset it, in the latter case a random password is generated, a new hash is created for the user and the password is sent to him via email.</p>
<p>Edit: If the database is compromised then you can only guarantee no sensible information can be accessed, you can no longer ensure the security of your application.</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/60938#609380Answer by Graeme Perrow for Best way to handle user account authentication and passwordsGraeme Perrow2008-09-13T22:27:28Z2008-09-13T22:27:28Z<p>Hash the username and the password <em>together</em>. That way, if two users have the same password, the hashes will still be different.</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/61204#612043Answer by Jarrod Dixon for Best way to handle user account authentication and passwordsJarrod Dixon2008-09-14T08:37:14Z2008-09-14T08:37:14Z<p>Jeff Atwood has some good posts concerning hashing, if you decide to go that route:</p>
<ul>
<li><a href="http://www.codinghorror.com/blog/archives/000949.html" rel="nofollow">Rainbow Hash Cracking</a></li>
<li><a href="http://www.codinghorror.com/blog/archives/000953.html" rel="nofollow">You're Probably Storing Passwords Incorrectly</a></li>
</ul>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/74605#746054Answer by stormlash for Best way to handle user account authentication and passwordsstormlash2008-09-16T17:06:52Z2008-09-16T17:06:52Z<p>This was a common issue in UNIX many years ago, and was resolved by separating the user identity components (username, UID, shell, full name, etc.) from the authentication components (password hash, password hash salt). The identity components can be globally readable (and in fact must be, if UIDs are to be mapped to usernames), but the authentication components <strong>must</strong> be kept inaccessible to users. To authenticate a user, have a trusted system which will accept a username and password, and will return a simple result of "authenticated" or "not authenticated". This system should be the only application with access to the authentication database, and should wait for a random amount of time (perhaps between 0.1 and 3 seconds) before replying to help avoid timing attacks.</p>
http://stackoverflow.com/questions/60757/best-way-to-handle-user-account-authentication-and-passwords/1176943#11769430Answer by Mihai Secasiu for Best way to handle user account authentication and passwordsMihai Secasiu2009-07-24T10:54:46Z2009-07-24T10:54:46Z<p>This is a bit of a non problem for a lot of applications because gaining access to the database is probably the most common goal of any attacker. So if they already have access to the database why would they still want to login to the application ? :) </p>