Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm considering using Facebook login for a large site with some "bank-like" information such as viewing an account balance. The current login is a username/password system, otherwise I don't know the current security measurements taken.

What are some of the pitfalls? For now, I'm thinking security of the authorization and uptime.

Is Facebooks OAuth 2.0 secure enough? Just read that the lead author of OAuth 2.0 left the work group (See: http://hueniverse.com/2012/07/oauth-2-0-and-the-road-to-hell/) because it "fails to deliver its two main goals – security and interoperability".

share|improve this question
Security is a matter of trust. Do you and your users trust Facebook? – Erno de Weerd Aug 15 '12 at 13:10
@DavidStratton - I didn't say that a site becomes secure because you trust it. I was referring to "secure enough". Do you trust Facebook to keep your credentials secret? How many users/developers test the actual implementation of a site like facebook? "Secure enough" is very vague. – Erno de Weerd Aug 15 '12 at 13:23
OK. Comment removed. I agree with "Secure enough is very vague" 100%. Sorry I misunderstood. – David Stratton Aug 15 '12 at 13:29

1 Answer

This would be better over at Security.StackExchange.com BUT.

In my opinion, it is not secure enough. I realize there are potential benefits, and I realize the value of systems like OpenId, OAuth, and other similar mechanisms, but to put banking info behind it I don't think so.

Off the top of my head, here are the two reasons I'd be most hesitant:

  1. Since OAuth is used for so many sites, it's probably more attractive to the bad guys.
  2. You're putting your faith in someone else's system. If Facebook gets compromised, suddenly your site is also compromised.
    • While OAuth may be better than anything you can cook up yourself, it also suffers from the fact that you can't monitor activity/invalid logins, etc. Auditing such things is a major part of keeping your site secure.

Jeff Atwood listed the virtues, as well as several issues with OpenId (similar) in this excellent blog post.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.