Facebook has done great work on preventing eavesdropping (with tools like Firesheep) by supporting https on all facebook.com pages, but does not provide similar levels of security for 3rd party sites.
Right now it's possible to eavesdrop the traffic from a 3rd party website which is using the Facebook JS SDK and get a user's signed fbsr_APP_ID cookie which a website should use to authenticate their users.
Is there a way to set this cookie with the secure parameter so that it's only transmitted over HTTPS connections?
I have read both the documentation and the JavaScript SDK source code and it doesn't seem possible. So if it's not possible, which other authentication method would you suggest to avoid eavesdropping of this cookie?
fbsr_APP_IDcookie? – zerkms Oct 2 '12 at 21:47FB.initwithcookies: true. So if you havecookies: falsethere, and you set the cookie manually secure (assuming that you want a cookie, and not just client-side storage), nothing can be sniffed (right?) – Claude Oct 12 '12 at 8:50