I want my website to have a checkbox that users can click so that they will not have to log in each time they visit my website. What is the best way to implement this? I know I will need to store a cookie on their computer, but what should be in it? Is there anything I need to watch out for to keep this cookie from presenting a security hole?
|
|
Improved Persistent Login Cookie Best PracticeYou could use this strategy described here as best practice:
|
||||
|
|
|
Investigating persistent sessions myself I have found that it's simply not worth the security risk. Use it if you absolutely have to, but you should consider such a session only weakly authenticated and force a new login for anything that could be of value to an attacker. The reason being of course that your cookies containing you persistent session are so easily stolen. 4 ways to steal you cookies (from a comment by Jens Roland on the page splattne based his answer on):
|
|||
|
|
|
|
You should be careful with "remember me" because of XSS If you badly need this functionality I give my vote to splattne suggestion. |
|||
|
|
|
|
I would store a user ID and a token. When the user comes back to the site compare those two pieces of information against something persistent like a DB entry. As for security, just don't put anything in there that will allow someone to modify the cookie to gain extra benefits. For example, don't store their user groups there or their password. Anything that can be modified that would circumvent your security should not be stored in the cookie. |
|||
|
|
|
|
Store their UserId and a RememberMeToken. When they login with remember me checked generate a new RememberMeToken (which invalidate any other machines which are marked are remember me). When they return look them up by the remember me token and make sure the UserId matches. |
|||
|
|
