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 && ...
30
votes
6answers
5k 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 ...
11
votes
3answers
3k 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, ...
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 ...
9
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 ...
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 ...
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 ...
8
votes
3answers
2k views
How can I create a secured “remember me” system using PHP?
I have a login system. How can I implement a secure remember me system using cookies.
What value should I have to store in cookie username and password, but how I can secure it?
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 ...
7
votes
2answers
2k views
FOSUserBundle and remember me
I'm using a FOSUserBundle for authentication in Symfony2. Everything works fine except "remember me". My security.yml looks like this:
security:
providers:
fos_userbundle:
id: ...
6
votes
3answers
2k views
Remember Me functionality not working in Symfony2
I have implemented remember me functionality in Symfony2. When I log in with remember me box checked, cookie named "REMEMBERME" gets created. That cookie is also available if I close browser and open ...
6
votes
2answers
5k views
Persistent cookie timeout with FormsAuthentication
I am creating some "Remember Me" functionality as part of logging in.
When I create a persistent cookie during the login process with the following:
FormsAuthentication.SetAuthCookie("someusername", ...
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 ...
6
votes
2answers
2k views
Catching Remember-Me Authentication Events in Spring Security
I'm developing an application in which I need to catch and respond to Authentication events to take appropriate action. Currently, I'm catching just fine the AuthenticationSuccessEvent Spring throws ...
6
votes
1answer
286 views
Silex / Symfony2 Remember Me Authentication User Interface RedBean Wrapper
I've been trying to use RedBean ORM (http://redbeanphp.com) to implement UserInterface and UserProviderInterface of the Silex Security Provider Package.
Because of the way the RedBean ORM handles ...
6
votes
4answers
225 views
PHP “Remember Me” security flaw?
I'm in the middle of coding a 'remember me'-equipped login form, and so far the tutorials I've read (partly to make sure I'm doing it right) all say to store the encrypted password in a cookie along ...
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.
...
5
votes
4answers
1k views
Why remember me token?
While implementing the "remember me" feature for a website, why do we complicate things and have a token called remember me token apart from a session token.
To the best of my understanding, remember ...
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 ...
4
votes
2answers
4k views
How does Remember Me work in Spring Security?
I'm curious how does Remember Me work and how does it work in Spring Security?
I understand that server sends long-lived cookies to the client. And then client sends cookie back and server can ...
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 ...
4
votes
2answers
2k views
How to remember username/password when calling tf.exe?
I use tf.exe command to get the latest codes but it keeps asking for username/password - is there a way to make those credentials remembered?
I've looked at the tf.exe argument list but no options ...
4
votes
2answers
2k views
Best way for authentication in PHP
What's the best and most secure way to go when writing an authentication library in a model-view-controller way?
The things that give me a hard time are keeping track of the users activity and ...
4
votes
2answers
1k views
remember_me with warden
For my lastest project I'm using https://github.com/hassox/rails_warden. It suits my needs very well except that I can't find a good way to implement remember_me. I know that it's notoriously ...
4
votes
2answers
610 views
Rails — “remember me” capability
I am having trouble understanding the implementation of "Remember Me" in the Ruby on Rails Tutorial by Michael Hartl. He creates a SessionsHelper module with methods for signing in, containing the ...
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
5answers
2k views
What's the best way to save user login and password in flex?
What's the best way to save user credentials in flex? Local storage doesn't seem like good place for storing confidential data, because it saves information as a plain text.
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 ...
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. ...
4
votes
3answers
4k views
Zend Framework rememberMe() doesnt seem to remember me
My session seems to only be valid in the current window/tab. Also it seems to timeout quickly. Heres how I'm currently attempting to do it:
This is in my login controller:
$adapter = ...
4
votes
1answer
2k views
Devise + Omniauth + Rememberable
I followed the tutorial on the github devise wiki :
https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview
So I've created a omniauth controller for the callbacks, but it is bypassing the ...
4
votes
1answer
2k views
Problem with Remember Me Service in Spring Security
I'm trying to implement a "remember me" functionality in my website using Spring. The cookie and entry in the persistent_logins table are getting created correctly. Additionally, I can see that the ...
4
votes
1answer
857 views
Spring RememberMe processAutoLoginCookie
I'm using Spring Security 3.0.0 and persistent RememberMe. When the server restarts and a browser window is still open, we need to be able to continue using the application without having to login - ...
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 && ...
3
votes
4answers
135 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 ...
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?
3
votes
2answers
728 views
How can I listen for “remember me” reauthentication events in Symfony2?
Using “normal” — not “remember me” authentication — I can set a success and failure handlers, adding this to the security.yml file:
form_login:
# ...
success_handler: authentication_handler
...
3
votes
1answer
133 views
Remember me cookie decoding process
I am using spring remember me services. I am seeing a strange behavior.
Steps I am taking:
login to my website using username /password and checking the remember me checkbox
than I am closing the ...
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
2k views
java servlet remember me option with cookies
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 ...
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 ...
2
votes
2answers
2k views
Spring Security 3.1.0 - Remember-me does not work as expected
I am having a problem with Spring Security's 3.1.0 remember-me cookies. I need to find a solution ASAP and I cannot find the cause of this problem.
These are the steps I am following:
Go to my app ...
2
votes
2answers
454 views
Remember me functionality in custom session object
I am developing an asp.net mvc application in which I keep user credentials in session object. Which is initiated in global asax session start method. And have a statik class to get or set. How can I ...
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: ...
2
votes
4answers
2k views
Cookie and session in “remember me” feature
I have never wanted to allow a user to stay logged in for any length of time so I never saw a use for a "remember me" feature. I started thinking about how it's done though and would like some ...
2
votes
6answers
273 views
Are (remember me)s possible for multiple computers?
The reason I ask is b.c. of this scenario:
A Remember Me cookie is stolen. It is deleted from the stolen computer and placed on the attackers computer. All the models(this one got many upvotes) I ...
2
votes
3answers
156 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
77 views
Remember me cookie forgery
When a user log in and check the "remember me" box, I generate a key (very random numbers on a md5) for it and save on it's cookies. If the user is not logged, my code check for a "remember me key" ...


