Tagged Questions
The remember-me tag has no wiki summary.
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 ...
23
votes
9answers
4k 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 && ...
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 ...
11
votes
3answers
106 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, ...
7
votes
3answers
536 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
6answers
875 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 ...
6
votes
2answers
374 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 ...
5
votes
2answers
201 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 ...
5
votes
1answer
2k 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 ...
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 ...
5
votes
2answers
5k 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 ...
4
votes
2answers
203 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
402 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
259 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 ...
4
votes
5answers
900 views
Best practise for remember me feature
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
1answer
876 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
2answers
1k 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 ...
3
votes
3answers
506 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 ...
3
votes
5answers
3k 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.
...
3
votes
0answers
295 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
2answers
464 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 ...
3
votes
5answers
1k 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.
3
votes
5answers
2k views
ASP.NET MVC RememberMe(It's large, please don't quit reading. Have explained the problem in detail and simple language. )
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 ...
3
votes
3answers
2k 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 = ...
3
votes
3answers
851 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
2answers
230 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
1answer
31 views
Is OpenID's “Remember Me” Checkbox For Developer Use?
The OpenID authentication page provides a "Stay signed in" checkbox.
Is this checkbox for developers to use so they can implement their own bookkeeping, or is it only used by OpenID itself? After ...
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
66 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
1answer
687 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 ...
2
votes
1answer
693 views
Is it possible to implement “Remember Me” using jquery cookies?
Is it possible to implement "Remember Me" using jquery? If so, any suggestion how it can be done?
EDIT:
I am trying to remember username and password using jquery cookies.store cookies about ...
2
votes
1answer
1k views
Asp.net “Remember Me” does not work through FormsAuthentication.RedirectFromLoginPage()
In my login page I'm using FormsAuthentication.RedirectFromLoginPage() to redirect to Home page after the user is validated. But it doesn't seem to obey CreatePersistenceCookie parameter. I have ...
2
votes
1answer
325 views
PHP session garbage collection becoming an annoyance, i need some help to modify this behavior
I have been having this problem for some time now, I dont exactly know that if this is the issue but I am pretty confident that it is, I have my remember me session set too expire after 1 week, but ...
2
votes
2answers
1k 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 ...
2
votes
1answer
1k views
How to handle “Remember me” in the Asp.Net Membership Provider
Ive written a custom membership provider for my ASP.Net website.
Im using the default Forms.Authentication redirect where you simply pass true to the method to tell it to "Remember me" for the ...
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 ...
2
votes
4answers
749 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
1answer
700 views
Implement a “Remember me” CheckBox in windows application?
Hello I am creating a Windows application (WPF) that is going to be running in few stations accessing 1 database.
I already implemented a login form with a login system thru My.User.CurrentPrincipal.
...
1
vote
2answers
101 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 ...
1
vote
3answers
43 views
Implementing a login screen with tabs
I am working on an application which requires me to create a log in screen. The way I have planned to do this is have 2 tabs log in, sign up and what I wanted to know is I want to be able to have a ...
1
vote
1answer
12 views
Spring security remember me overriding default SQL of persistent_logins table
I have successfully implemented Remember Me functionality in my application.
Only I want to alter is that i do not want to use default table name persistent_logins at all.
So I want to update default ...
1
vote
2answers
117 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: ...
1
vote
1answer
101 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
0answers
75 views
Spring security Remember me is not working in spring MVC application.
Authentication and Authorization is working properly. But remember me is not working properly in the application.
I have used both database authentication and ldap authentication using spring ...
1
vote
0answers
133 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
...
1
vote
2answers
198 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", ...
1
vote
4answers
111 views
How to implement a “Remember Me” function in Rails 3?
What are the best practices to implement a "Remember Me" function in Rails 3 application ?
I store session information (session id + user id) in the database when user logs in, and I don't want to ...
1
vote
1answer
89 views
if the user checks remember me on the asp login control, when will the user have to login again?
just trying to get a better understanding of the concepts involved with this so i can make better decisions on implementing the login based on the requirements i've been given.
in the case where the ...
1
vote
1answer
183 views
Save login details(preferences) android
I have one android app with login, logout functions. The login form contains Username and password and the login button. I want to save the username and the password when the user checks the "Remember ...
1
vote
3answers
138 views
how to implement Persistent storage in android
I want to implement persistent storage in my application to store the UserName, when the user selects "Remember me" Checkbox. Can anybody guide me for this?