Im currently implementing a "Remember Me" system for a web project. After reading a few (albeit not so helpful articles" I came up with this system to prevent a cookie from being used to access an account other than that of the user that is was assigned to:
- User logs in and checks the "Remember Me" box.
- Users email and password combination are authenticated. Because the remember me function is checked a random salt 128 characters long is created and stored in a table along with the users userid. A cookie is set containing a hash of the users userid concatenated to the hash of the users userid and salt.
- When the user revisits the webpage the userid and hash are separated and the hash is check against a hash generated from the salt and userid stored in the database. If the values match then the user is the user the cookie was assigned to and the user is logged in.
If there are any issues/improvements that can be made please point them out Im always open to criticism :)
