What's a good alternative to security questions? - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T20:54:51Zhttp://stackoverflow.com/feeds/question/104592http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions8What's a good alternative to security questions?Zack Petersonhttp://stackoverflow.com/users/832008-09-19T19:03:50Z2010-03-02T10:40:06Z
<blockquote>
<p>From <a href="http://blog.wired.com/27bstroke6/2008/09/palin-e-mail-ha.html" rel="nofollow">Wired</a> magazine:</p>
<p>...the Palin hack didn't require any
real skill. Instead, the hacker simply
reset Palin's password using her
birthdate, ZIP code and information
about where she met her spouse -- the
security question on her Yahoo
account, which was answered (Wasilla
High) by a simple Google search.</p>
</blockquote>
<p>We cannot trust such <a href="http://stackoverflow.com/questions/104680/what-are-some-good-security-questions">security questions</a> to reset forgotten passwords. How do you design a better system?</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104631#1046310Answer by bdukes for What's a good alternative to security questions?bdukeshttp://stackoverflow.com/users/26882008-09-19T19:09:29Z2008-09-19T19:09:29Z<p>Only provide questions that aren't on the public record.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104632#1046323Answer by Dan for What's a good alternative to security questions?Danhttp://stackoverflow.com/users/171212008-09-19T19:09:47Z2008-09-19T19:09:47Z<p>Authenticating everything by sending emails is a reasonably effective solution. (although, that might not have been workable for Yahoo in this case :)).</p>
<p>Rather than messing about with security questions or other means to recover passwords, simply respond to password recover requests by sending an email to a predefined email account with an authorisation link. From there you can change passwords, or whatever you need to do (never SEND the password though - you should always store it as a salted hash anyway, always change it. Then if the email account has ben compromised, at least there's some indication to the user that their other services have been accessed)</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104639#1046391Answer by stephenbayer for What's a good alternative to security questions?stephenbayerhttp://stackoverflow.com/users/188932008-09-19T19:10:40Z2008-09-19T19:10:40Z<p>The true answer is, there isn't a fool proof way to keep hackers out. I hate security questions, but if your going to use them, allow for user defined security questions. As a user, if I must have a security question on a site to set up an account, I really like having the ability to setup my own security question to allow me to ask something that only I know how to answer. It doesn't even have to be a real question in this case. But a users account is then as secure as the stupidity of the user, and the fact that many users will use something like "question?" and "answer!" or something equally dumb. You can't save users from their own stupidity. </p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104643#1046430Answer by DevelopingChris for What's a good alternative to security questions?DevelopingChrishttp://stackoverflow.com/users/12202008-09-19T19:10:45Z2008-09-19T19:10:45Z<p>when its not an email system, email them a link to a secure page, with a hash that must come back in the query string to reset password.</p>
<p>Then if someone tried to reset your password, you would know, and they wouldn't be able to guess the hash potentially.</p>
<p>We use 2 guids multiplied together, represented as hex.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104646#1046468Answer by Chris Upchurch for What's a good alternative to security questions?Chris Upchurchhttp://stackoverflow.com/users/26002008-09-19T19:10:55Z2008-09-19T19:10:55Z<p>The insecurity of so-called "security questions" has been known for a long time. As <a href="http://www.schneier.com/blog/archives/2005/02/the_curse_of_th.html" rel="nofollow">Bruce Schneier puts it</a>:</p>
<blockquote>
<p>The result is the normal security protocol (passwords) falls back to a much less secure protocol (secret questions). And the security of the entire system suffers. </p>
<p>What can one do? My usual technique is to type a completely random answer -- I madly slap at my keyboard for a few seconds -- and then forget about it. This ensures that some attacker can't bypass my password and try to guess the answer to my secret question, but is pretty unpleasant if I forget my password. The one time this happened to me, I had to call the company to get my password and question reset. (Honestly, I don't remember how I authenticated myself to the customer service rep at the other end of the phone line.)</p>
</blockquote>
<p>I think the better technique is to just send an e-mail with a link they can use to generate a new random password to the e-mail account the user originally used to register. If they didn't request a new password, they can just ignore it and keep using their old one. As others have pointed out, this wouldn't necessarily have helped Yahoo, since they were running an e-mail service, but for most other services e-mail is a decent authentication measure (in effect, you foist the authentication problem off on the user's e-mail provider).</p>
<p>Of course, you could just use OpenID.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104648#1046480Answer by gbjbaanb for What's a good alternative to security questions?gbjbaanbhttp://stackoverflow.com/users/137442008-09-19T19:11:03Z2008-09-19T19:11:03Z<p>always send the password reset to a registered email account (which is tricky for an email account) or send a PIN number to a registerd mobile phone, or a link to a IM address, etc - basically, capture some secondary contact information on registration and use it to send a 'password reset' link.</p>
<p>Never let anyone change their password directly, always make sure they go through an additional step.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104663#1046630Answer by KPexEA for What's a good alternative to security questions?KPexEAhttp://stackoverflow.com/users/136762008-09-19T19:12:18Z2008-09-19T19:12:18Z<p>Well for one it should not directly reset the password but send an email with a link to reset the password. That way she would have got the email and known that it was not her who initiated the reset, and that her question / answer had been compromised.</p>
<p>In the case where the email address is no longer valid, it should wait for a timeout ( few days or a week ) before allowing a new email to be attached to an account.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104667#1046670Answer by tloach for What's a good alternative to security questions?tloachhttp://stackoverflow.com/users/140922008-09-19T19:12:38Z2008-09-19T19:12:38Z<p>Send a message to a different e-mail account, or text their cell phone, or call them, or send a snail-mail message. Anything that doesn't involve matters of public record or preferences that may change at any time.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104696#1046961Answer by Dave Sherohman for What's a good alternative to security questions?Dave Sherohmanhttp://stackoverflow.com/users/189142008-09-19T19:15:43Z2008-09-19T19:15:43Z<p>Do away with the (in)security questions completely. They're such an obvious security hole that I'm actually a bit surprised that it's taken this long for them to create a serious (well, highly-publicized) incident.</p>
<p>Until they disappear, I'm just going to keep on telling websites which use them that I went to "n4weu6vyeli4u5t" high school...</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104751#104751-2Answer by Simucal for What's a good alternative to security questions?Simucalhttp://stackoverflow.com/users/26352008-09-19T19:21:40Z2008-12-13T07:12:41Z<p>I prefer to keep things simple and use an honor system approach. For example I'll present the user with something like,</p>
<blockquote>
<p><strong>Is this really you?</strong> <strong>Select: Yes or No</strong>.</p>
</blockquote>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104863#1048631Answer by Jay for What's a good alternative to security questions?Jayhttp://stackoverflow.com/users/124792008-09-19T19:36:52Z2008-09-19T19:36:52Z<p>It 'depends' on the 'system'. </p>
<ul>
<li><p>If you are a Bank or a credit card provider, you have already issued
some physical token to your customer that you can validate against and more.</p></li>
<li><p>If you are an ecommerce site, you ask for some recent transactions
-exact amounts, credit card number used et al..</p></li>
<li><p>If you are like Yahoo, an automated approach I would use is to send an
activation code via either a phone call or a text message to the cell
phone along with some other basic question and answers. </p></li>
</ul>
<p>Jay</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104871#1048712Answer by Chuck for What's a good alternative to security questions?Chuckhttp://stackoverflow.com/users/19212008-09-19T19:38:04Z2008-09-19T19:38:04Z<p>Have the user enter 3 questions and answers. When they request a reset present them with a drop down of 5 questions, one if which is a random one from the 3 they entered. Then send a confirmation email to actually reset the password.</p>
<p>Of course, nothing is going to be truly "hacker proof".</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104894#1048941Answer by Kris Kumler for What's a good alternative to security questions?Kris Kumlerhttp://stackoverflow.com/users/42812008-09-19T19:41:13Z2008-09-19T19:41:13Z<p>Treating these security questions as something actually being two-factor authentication is totally misleading. From spurious items read before, when certain (banks) sites were required to have "two-factor authentication" they started implementing this as a <em>cheap</em> way to do it. Bruce Schneier talked about this a [while back][1].</p>
<p>Multiple factors are best things that are not-the-same. It should not be all things you "know" but something you know and something you have, etc. This is where the hardware authentication tokens, smart cards, and other such devices come into play.</p>
<p>[1]: <a href="http://www.schneier.com/blog/archives/2005/03/the_failure_of.html" rel="nofollow">http://www.schneier.com/blog/archives/2005/03/the_failure_of.html</a> The Failure of Two-Factor Authentication</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/104915#1049153Answer by Kent Fredric for What's a good alternative to security questions?Kent Fredrichttp://stackoverflow.com/users/156142008-09-19T19:44:03Z2008-09-19T19:44:03Z<p>Having seen a lot of posters suggest email, all I can suggest is <strong>DONT</strong> use email as your line of defense. </p>
<p>Compromising somebodys email account can be relatively easy. Many web based email services <strong>DONT</strong> provide any real security either, and even if they offer SSL, its often not <em>default</em> and you are still relying on the weakness of the <em>email</em> password to protect the user ( Which, in turn has a reset mechanism most the time ). </p>
<p>Email is one of the most insecure technologies, and there are <em>good</em> reasons why its a really bad idea to send information like credit card details over them. They're usually transmitted between servers in plaintext, and equally often, between server and desktop client equally unencrypted, and all it takes is a wire sniff to get the reset url and trigger it. ( Don't say I'm paranoid, because banks use SSL encryption for a <em>good</em> reason. How can you trust the 20-200 physical devices on the route have good intentions? )</p>
<p>Once you get the reset data, you can reset the password, and then change your(their) email address, and have permanent control of their account ( it happens all the time ). </p>
<p>And if they get your email account, all they have to do is have a browse through your inbox to find whom you're subscribed with, and then easily reset the password <strong>ON ALL OF THEM</strong> </p>
<p>So now, using the email based security, can lead to a <em>propogative</em> security weakness!. I'm sure thats beneficial!.</p>
<p>The question being asked Is one I figure is almost impossible to do with software alone. This is why we have 2-factor authentication with hardware dongles that respond to challenges with their own unique private key signature, and only if you lose that are you screwed, and you then have to deal with a human ( oh no ) to get a new one. </p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/109228#1092285Answer by AviD for What's a good alternative to security questions?AviDhttp://stackoverflow.com/users/100802008-09-20T20:15:38Z2008-09-20T20:15:38Z<p>Out-of-band communication is the way to go.</p>
<p>For instance, sending a temporary password in SMS may be acceptable (depending on the system). I've seen this implemented often by telecoms, where SMS is cheap/free/part of business, and the user's cellphone number is pre-registered...</p>
<p>Banks often require a phone call to/from a specific number, but I personally am not too crazy about that....</p>
<p>And of course, depending on the system, forcing the user to come in to the branch office to personally identify themselves can also work (just royally annoy the user).</p>
<p>Bottom line, DON'T create a weaker channel to bypass the strong password requirements. </p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/692234#6922342Answer by GSQ for What's a good alternative to security questions?GSQhttp://stackoverflow.com/users/02009-03-28T04:56:57Z2009-03-28T04:56:57Z<p>Good security questions are a misnomer. They actually create a vulnerability into a system. We should call them in-secure questions. However, recognizing the risk and value they provide, "good" security questions should have 4 characteristics:
1. cannot be easily guessed or researched (safe),
2. doesn't change over time (stable),
3. is memorable,
4. is definitive or simple.
You can read more about this at <a href="http://www.goodsecurityquestions.com" rel="nofollow">http://www.goodsecurityquestions.com</a>. </p>
<p>Here's a list of <a href="http://goodsecurityquestions.com/examples.htm" rel="nofollow">good, fair, and poor security questions</a>.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/692265#6922651Answer by Adam Hawes for What's a good alternative to security questions?Adam Haweshttp://stackoverflow.com/users/544152009-03-28T05:19:41Z2009-03-28T05:19:41Z<p>When users are involved (and mostly when not, too) there is no security; there is only the illusion of security. There's not a lot you can do about it. You could have 'less common' security questions but even they are prone to exploitation since some people put everything out in the public eye.</p>
<p>Secondary channels like email offer a reasonable solution to the problem. If the user requests a password reset you can email them a password reset token. Still not perfect, as others have said, but exploiting this would require the attacker to be somewhere in the line of sight between the website, its MTA and the users MUA. It's technically easy but I suggest that the reality is it's just too much work/risk for them to bother on anyone except very high profile individuals.</p>
<p>Requiring the user to supply SSL or GPG public keys at account creation time will help enormously, but clueless users won't know what those things are let-alone be able to keep their private keys secure and backed up so they don't lose them.</p>
<p>Asking the user to supply a second emergency password (kind of like PIN/PUK on mobile phone SIM cards) could help but it's likely the user would use the same password twice or forget the second password too.</p>
<p>Short answer, you're S.O.L unless you want to educate your users on security and then hit them with a cluestick until they realise that it is necessary to be secure and the slight amount of extra work is not simply there to be a pain in the arse.</p>
http://stackoverflow.com/questions/104592/whats-a-good-alternative-to-security-questions/2362482#23624821Answer by Johann Blake for What's a good alternative to security questions?Johann Blakehttp://stackoverflow.com/users/2843172010-03-02T10:40:06Z2010-03-02T10:40:06Z<p>Generate a hash that contains the person's username and password and send it over Https to the user as a file. The user saves the file to disk. It is their responsibility to store this file in a secure location. Alternatively you can send it to their email address but this will result in less security. If the user forgets their login credentials they must then upload this file. Once the server verifies the username and password, they are then presented with a dialog to alter their password.</p>