The remember-me tag has no wiki summary.
98
votes
5answers
26k views
What is the best way to implement “remember me” for a website? [closed]
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 ...
33
votes
10answers
10k views
Is it secure to store passwords in cookies?
My web application's home page has a RememberMe checkbox.. If the user checks it, i ll store emailId and password in cookies.. My code is
if (this.ChkRememberme != null && ...
9
votes
5answers
4k views
ASP.NET MVC RememberMe
After searching a lot i did not get any answers and finally i had to get back to you. Below i am explaining my problem in detail. It's too long, so please don't quit reading. I have explained my ...
30
votes
6answers
6k 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 ...
4
votes
5answers
3k views
Best practise for remember me feature [duplicate]
I am using 2 variables in cookie(7 day expiration) which is user id and hash. Hash is sha1 encode of user agent and user id. In this case some hacker can login who is know stolen cookie's browser. ...
3
votes
3answers
5k views
asp.net “Remember Me” cookie
I have implemented remember me option in my asp.net webform by using this,
protected void LBtnSubmit_Click(object sender, EventArgs e)
{
if (this.ChkRememberme != null && ...
5
votes
3answers
1k 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
3k views
Remember me in jsp login page
I have a login screen and i am authenticating users by checking credentials from database. But how can i implement Remember me check box? Like in gmail remember me(stay signed in) is present. I am ...
2
votes
1answer
1k views
Best way for hashing a “remember me” cookie token
I'm trying to implement a "remember me" feature, following the guidelines provided here: The Definitive Guide To Forms based Website Authentication, and here: ...
1
vote
2answers
910 views
“remember me” functionality with jsf 2.0
I am trying to implement "remember me"/"autologin" functionality. I have stored a cookie at the client but when should I read it? If I try to do that in a filter, for example, I won't have access to ...
1
vote
2answers
6k views
How do I use “Remember Me” authentication with Spring Security and LDAP?
I want to use a Spring Security's "Remember me" with LDAP authentication. LDAP authentication configuration is described here, I've just made some tiny changes. Could you explain to me how can i add ...
7
votes
1answer
8k views
Implementing “Remember Me” Feature in ASP.NET MVC
I'm trying to implement a "remember me" feature to my login form. I am using ASP.NET MVC as my web application. I managed to get the cookie stuff working, but I failed to automatically login the user ...
7
votes
2answers
8k views
ExtJS: Login with 'Remember me' functionality
I'm trying to create a simple login window with the very common 'Remember me' functionality. The login validation is done AJAX style, thus the browser won't remember my input.
My approach is to use ...
2
votes
3answers
7k views
how to create a secure php login system, allowing for “keep me logged in” functionality?
I use a simple login system based on SESSION vars. Once the user logs in, a session var is set that tells my script the user is to be accepted in. I don't use any custom clientside cookie var.
I ...
11
votes
3answers
4k views
Proper way to use “Remember me” functionality in PHP
Short
Working on login system and trying to implement remember me feature.
Recently, l did research about this subject, read bunch of articles, posts, stories, novels, fairy tales (calling them so, ...
8
votes
6answers
2k 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 ...
4
votes
2answers
3k views
Create a symfony2 remember me cookie manually (FOSUserBundle)
Could somebody explain how you can manually create a remember me cookie in a controller?
I want the users to stay logged in after they pressed the "register"
button, without having to login with ...
10
votes
2answers
3k views
Log user in with remember-me functionality in Spring 3.1
I currently log users in programmatically (like when they login through Facebook or other means than using my login form) with:
SecurityContextHolder.getContext().setAuthentication(
new ...
2
votes
3answers
3k views
Automatic Login with Rails?
I am trying to get up a simple authentication system with Rails' Restful-Authentication plugin, and am just wondering how it works, b/c I can't seem to figure out what the requirements are for ...
6
votes
5answers
9k views
Remember me functionality in ASP.NET Form Authentication doesn't work
I'm using ASP.NET forms authentication for logging users into a website we're developing.
Part of the functionality is a "Remember me" checkbox which remembers the user for a month if they check it.
...
6
votes
1answer
3k 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 ...
4
votes
5answers
3k views
Difference between creating a session and a cookie?
I'm working on my first website with the Play! framework, and at one point I'm calling this method when the user logs in:
static void connect(User user){
session.put("userid", user.id);
}
...
4
votes
2answers
7k 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 ...
3
votes
4answers
136 views
Database problems when allowing multiple browser persistent log ins
I am trying to implement a 'remember me' system with cookies that will remember a user across browsers meaning that if a user logs into a website using browser A and checks 'remember me', and then ...
1
vote
1answer
780 views
How to get Chrome to remember login on forms?
On many websites when you login via Chrome it will offer to remember your login details.
I have a login form and this does not happen.
Here's the form:
<form action="/login" method="post">
...
1
vote
1answer
337 views
is it possible to not display login screen in remember me in spring security?
I have implemented spring security's remember me feature in our app, the way i understand it, If user opens main page directly and he is not authenticated by spring, he is taken to the login page. if ...
0
votes
1answer
235 views
Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack
org.springframework.security.web.authentication.rememberme.CookieTheftException: Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack.
at ...
9
votes
1answer
1k views
How to make “remember me” work if session expires when browser is closed?
I set sessions to expire when browser closes in main config.yml:
framework:
session:
default_locale: %locale%
lifetime: 0
auto_start: true
Then I set "remember ...
3
votes
0answers
82 views
How to administratively invalidate a session that used “Remember Me” option?
I'm using Symfony 2.1.6 and PdoSessionStorage. I'm trying to add the same functionality that Facebook has to my application where you can show a user all the active sessions they have with the website ...
3
votes
2answers
3k views
Implementing “Remember me” Functionality in ASP.NET
What is the best way to implement 'remember me' functionality on an ASP.NET web site?
Should I use custom cookies or is there a simpler method?
2
votes
3answers
141 views
Before-Action method in symfony2
I want to write a common code in my symfony2 application that should be executed before calling any action-method. How Can I do it?
At the time of login-success, I am storing some data in session. If ...
1
vote
2answers
1k views
how to implement Persistent storage in android [duplicate]
Possible Duplicate:
Persistent Data Storage in Android Development
I want to implement persistent storage in my application to store the UserName, when the user selects "Remember me" ...
1
vote
4answers
771 views
RememberMe option in an asp.net web application
what are the possible ways of implementing remember me option in an asp.net web application?
0
votes
2answers
454 views
Rails Auth, Remember me
I'm trying to add remember me functionality to my login form by following Ryan Bates's tutorial. However when I try to access my pages I get this error:
Couldn't find User with auth_token =
I ...
