I need to implement a simple remember me option in a java servlet with cookies, without using any advanced framework.

First, at login, I create the cookie and send it in response to the browser (client). The value to be stored in the cookie is just a simple hash from username + password.

How should I manage the incoming request from the browser, sending the cookie? My approach is to check between registered users if there is any user that has the hash from username + password equal to the value in the cookie? Is this approach correct?

Also, I did not understand exactly what is the mechanism of the expiration date. Does the browser delete the cookie when it is expired, it not, how do I check if the cookie is expired?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

As long as you're not using HTTPS the method you suggest is highly insecure. I would suggest to generate some sort of session token (e.g. use java.util.UUID.randomUUID()) and set this as cookie and store it somewhere on the server side so you later can identify the user associated with this session id in the cookie.

This gives you the opportunity to reset a certain session cookie if you think there's some fraud happening and there's no direct relation between the user name/password and the cookie id you use. But note: this method is still vulnerable to a man-in-the-middle attack.

Concerning the expiration: yes the cookie becomes invalid and might get deleted by the browser if it is expired. But you can set the cookie to something in the year 3000, so it lives forever.

link|improve this answer
feedback

You could use this strategy described here as best practice:

When the user successfully logs in with Remember Me checked, a login cookie is issued in addition to the standard session management cookie. You can choose the login cookie as a combination of the user's username,user's password, a series identifier, and a token. The series and token are unguessable random numbers from a suitably large space. All three are stored together in a database table. When a non-logged-in user visits the site and presents a login cookie, the username, series, and token are looked up in the database on server side. If the triplet is present, the user is considered authenticated. The used token is removed from the database. A new token is generated, stored in database with the username and the same series identifier, and a new login cookie containing all three is issued to the user. The user receives a strongly worded warning and all of the user's remembered sessions are deleted. If the username and series are not present, the login cookie is ignored.

Regarding Expiration of cookies , browser does not delete the cookie.Cookie will be there in browser till it explicitly deleted. Otherwise it will be updated when next time user will login again.

link|improve this answer
2  
I would not base any information that is sent to the client on the user's password ever. It's simply a bad idea that has no beneficial effect whatsoever. – Joachim Sauer Oct 18 '11 at 13:34
By storing password as a combination of cookie , i mean by encrypting it using some algorithm. And then store it as a cookie – vikiiii Oct 18 '11 at 13:39
I still see no reason to do that at all. It does introduce the risk of exposing information about the password to an attacker and doesn't add anything usefull. – Joachim Sauer Oct 18 '11 at 13:40
1  
if the user changes the password (and you want that action invalidate cookies), then delete all entries about valid authorization cookies for that user from the DB when the password is changed. – Joachim Sauer Oct 18 '11 at 13:45
1  
Any answer that suggests an approach that is a potential security problem waiting to happen gets my downvote (at least when I realize that this is the fact). Sorry, but there are enough security problems out there as it is. – Joachim Sauer Oct 18 '11 at 14:01
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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