I would like the option for Stack Exchange sites to forget me when I leave the site or close the browser. This is to prevent others to log in with my account when using public computers or if your computer got stolen.

This could be realized with an option to "keep me logged in" or "remember me" when you log in, as you can do for a majority of sites such as Google, Facebook or Twitter, thus requiring a log in next time you visit the site.

Actually, according to The Open Web Application Security Project (cited below) the "remember me" feature should be avoided or not used at all.

Remember Me

Implementing remember me functionality can be incredibly hard. Often software will just embed the username and password in headers or cookies, or a hash or crypto blob of the same. Based upon your risk profile, your application:

  • High value applications MUST NOT possess remember me functionality.

  • Medium value applications SHOULD NOT contain remember me functionality. If present, the user MUST opt-in to remember me. The system SHOULD strongly warn users that remember me is insecure particularly on public computers

  • Low value applications MAY include an opt-in remember me function. There should be a warning to the user that this option is insecure, particularly on public computers. [1]

[1] https://www.owasp.org/index.php/Guide_to_Authentication

link|improve this question
10  
Obligatory answer to not use public computers for private stuff. – Garden Gnobobby Oct 14 '11 at 8:29
But this also apply to say if your computer get stolen. That's why I never save password and like to always be required to sign in, even on my own computer. Keeps you remember those passwords too :) – ihatetoregister Oct 14 '11 at 10:51
feedback

2 Answers

up vote 13 down vote accepted

You can just use the private mode that is available in all of the recent versions of the major browsers (Chrome Incognito, Firefox Private Browsing or Internet Explorer InPrivate). This will log you out once you close the browser, and it will also prevent your browser history and some other stuff from being saved on that computer.

This won't protect you from other attacks, e.g. someone that managed to install a keylogger on the public computer will still be able to recover your password and log into your SO account.

link|improve this answer
feedback

This can't really be done. Some browsers will remember your session the next time you start up, appearing to the website as if you had never closed the browser. The only option left is a timeout, which is bad because:

  1. If the browser is re-opened before the idle time limit, your account isn't safe.
  2. It's an annoyance if the time limit is reached while you're browsing other websites or doing something else on your computer.

If you're worried about a stolen computer, you should have it encrypted. Nothing else can protect well against physical access.

link|improve this answer
But how does for instance Google handle this? If I log in with my Google account (having the "keep me logged in" checkbox unchecked) and then close and restart my browser (Chrome), I am asked to sign in again. Could not the same method be used here? – ihatetoregister Oct 16 '11 at 21:27
@ihatetoregister That's a result of the browser not preserving your session. – Matthew Read Oct 16 '11 at 22:47
I see, just tried with Firefox and I was still logged in when restarting the browser. Seem odd though why Chrome wouldn't act the same for Stack Overflow as for the Google account. Seems like "incognito" mode is the way to go. – ihatetoregister Oct 16 '11 at 23:41
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged