Tagged Questions
36
votes
5answers
6k views
What is the best way to implement “remember me” for a website?
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 ...
22
votes
6answers
2k views
“Remember Me On This Computer” - How Should It Work?
Looking at Gmail's cookies it's easy to see what's stored in the "remember me" cookie. The username/one-time-access-token. It could be implemented differently in cases where the username is secret, as ...
7
votes
6answers
873 views
'Remember-me' authentication feature, does it always mean 'Unsecure' Website?
I'm considering to implement the classic 'remember-me' checkbox on my webapp to allow the authenticated user to be 'remembered' once he returns to visit my website.
Gmail, Facebook and others have ...
5
votes
1answer
1k views
PHP: Remember Me and security?
During the time I've spent taking breaks from learning how PHP supports Unicode I've been delving into making my "Remember Me" cookies a bit more secure. However there are a few things I don't ...
3
votes
3answers
849 views
Is this a reasonable way to implement 'remember me' functionality
If a user logs into the site, and says 'remember me', we get the unique identifier for the user, encrypt this with RijndaelManaged with a keysize of 256 and place this in a httponly cookie with a set ...
2
votes
3answers
96 views
Should email address be stored after logout?
I've written an add-on for a web application that inserts a "Remember Me" checkbox into login forms. One of my users expressed surprise that they are not remembered after logging out! Clearly someone ...
2
votes
2answers
65 views
HTTP Remember me authentication
I'm trying to write a simple HTTP remember me authentication system for users.
My users could be represented as such
{
"email" : "foo@bar.com",
"password" : ...
2
votes
2answers
3k views
Spring Security RememberMe Services with Session Cookie
I am using Spring Security's RememberMe Services to keep a user authenticated.
I would like to find a simple way to have the RememberMe cookie set as a session cookie rather than with a fixed ...
0
votes
1answer
129 views
Spring Security RememberMe success handler or url filtering
I am using Spring Security with a login page and a remember-me filter. The remember-me filtering can happen on any page of the application.
But I want the same behaviour both when the user is ...
0
votes
2answers
80 views
Spring Remember-Me not providing correct user details
I used Spring Security 3.0.5's feature "Remember-Me" and in my jsp pages I tried to access the user's details.
public class UserDetailsImpl implements UserDetails, Serializable
with a few extra ...