Are two security keys better than one? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:49:49Z http://stackoverflow.com/feeds/question/1077413 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077413/are-two-security-keys-better-than-one 0 Are two security keys better than one? yar 2009-07-03T01:07:03Z 2009-07-04T00:51:24Z <p>I just implemented a "remember me" feature for a user login on a website. Most advice was to have the userid stored in a cookie, and then have some long, unguessable random key. If both of these match up, the user is considered authenticated.</p> <p>Does having two strings actually help? Wouldn't a longer key do exactly the same thing? </p> <p>In other words, aren't two keys equally susceptible to attacks as one longer key? (I imagine it would be the total length of the keys, regardless of how many you have)</p> <p><strong>Note:</strong> There might be some DB query efficiency issues here too, e.g., looking up a big UUID in the DB is not as easy as looking up a small number. (On a tangential note, Gmail uses a six digit number as their one-time login token along with the username.)</p> http://stackoverflow.com/questions/1077413/are-two-security-keys-better-than-one/1077450#1077450 1 Answer by PiPeep for Are two security keys better than one? PiPeep 2009-07-03T01:29:45Z 2009-07-03T01:29:45Z <p>I'm no crypto expert, but as long as you check for brute-forcing attempts, you should be able to use a short key (like Gmail's 6 digits). The real vulnerability is people listening when a user logs in (eg. SideJacking).</p> http://stackoverflow.com/questions/1077413/are-two-security-keys-better-than-one/1077454#1077454 1 Answer by Patrick Gryciuk for Are two security keys better than one? Patrick Gryciuk 2009-07-03T01:30:41Z 2009-07-03T01:30:41Z <p>In sites I have previously created I made use of a <code>user_id</code> and a salted hash of the user's password. The primary reason I used two fields to authenticate a user is because it saved me the trouble of adding another table (and thus complicating the database design.) With the <code>user_id</code> also being stored in the cookie I could do an indexed look-up in users table and efficiently match the salted hash to the user. Of course you could concatenate both the user_id and the hash into one value and just store that in the cookie.</p> <p>If you just have a random unguessable string then you would have to have a separate table to associate the random string with a user-id and do another look-up for that particular user.</p> http://stackoverflow.com/questions/1077413/are-two-security-keys-better-than-one/1077469#1077469 1 Answer by JP for Are two security keys better than one? JP 2009-07-03T01:36:48Z 2009-07-04T00:51:24Z <p>Robust discussion of that in this <a href="http://stackoverflow.com/questions/244882/what-is-the-best-way-to-implement-remember-me-for-a-website">SO thread</a>.</p> <blockquote> <p>... the user is considered authenticated.</p> </blockquote> <p>Should probably read authenticated but with limited authoriziation.</p> <p>Per comment: Somewhat more secure since it's one time use and it's hard to guess. So if the cookie is compromised, the attacker has to act quickly or the token will be invalidated by the legitimate user loging in whereas the userid may not change for a long time.</p>