0
votes
0answers
37 views

remember me option in phonegap for iphone

I have to implement remember me functionality for an iphone app. I am using Java at the server side and Jquery mobile at the client side. As of now, I am returning the cookie to the client side from ...
1
vote
0answers
34 views

ZF2 user remember me not working

I am trying to implement rememberme functionality for my ZF2 v2.2 site. So here is what i have done so far : I created a service for session manager to write the session to db : 'session' => ...
0
votes
1answer
96 views

How to change Grails Spring Security Cookie Path

I've got two grails applications using spring security: Core Module (user and role tables mapping to Core db tables) I want to have a single sign on functionality using "remember me". The problem ...
0
votes
1answer
76 views

Cookie issue on google chrome

I encounter a cookie issue with my website. When a customer click on "remember me" before log-in, a cookie is created, and then when he leave and come back later, he is automatically re-logged. It ...
0
votes
1answer
72 views

Is having a Persistent Login Cookie (“Remember me”) that never expires a good idea?

In the most recommended solution for Persistent Login Cookies, a user's "Remember me" Cookie is always renewed with a new token when they login with their Persistent Login Cookie. Let's say you set ...
2
votes
2answers
165 views

How to work “Remember Me?” Funcitonality without using Cookie in Java?

First of apology to ask this Repeated Question but i have lot of confusion in that.. Actually in my spring Application Have Home.jsp, login.jsp and LoginController.java,LoginForm. (Hear Login.jsp is ...
0
votes
0answers
142 views

Remember Me feature in spring security core and grails

I am trying to implement 'remember me' feature in my grails application using spring security core. The idea is to login user directly without asking for username and password if the user has logged ...
0
votes
1answer
151 views

Symfony 2 & Remember me function

Having a strange problem that others don't seem to have. I can't get the "remember me" function working on my Symfony 2.1 app. I've tried local and deployed on a server, I've tried with and without ...
0
votes
0answers
93 views

user login system cookie based over ssl

i created user login system and with this function i start sessions function sessionStart() { $session_name = 'sec_session_id'; // Set a custom session name $secure = false; // Set to true ...
0
votes
0answers
47 views

Charles Miller's solution for Remain Logged In cookie?

I was reading this answer about how /why/why not should I implement "remember me" option. However I'm more interested in this section If you DO decide to implement persistent login cookies, this ...
2
votes
2answers
78 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" ...
0
votes
0answers
90 views

How do I set a remember me cookie for custom auth action in spring security (Grails)?

Using grails with spring security I have a custom auth action for a facebook login. The Auth action contains def target = facebookContext.getLoginURL( ...
0
votes
0answers
44 views

Symfony2: Conflict between framework_session_lifetime and remeber me functionality

My site must deal with a cookie that has a long lifetime. For this reason, I have in my app/config/config.yml: framework: session: lifetime: 31104000 The site should have as well a ...
0
votes
1answer
59 views

Cookie to Remember Form Submission

I have a form that when submitted appends the current page's URL: domain.com becomes domain.com?name=value The form works great, but I need to write a cookie so that when the user goes to another ...
0
votes
1answer
1k views

How to use Remember me in spring security for custom authentication

Can any one give me idea how to use Remember me check box in spring security for custom authentication, this is my remember me field in login page <label for="checkbox"> <input ...
0
votes
0answers
184 views

URLConnection and Spring Security PersistentTokenBasedRememberMeServices

I'm trying to use sitemesh to pull content together on a screen. You have to be "logged" into the site to view the page that site mesh is displaying and you must be logged in to view the components ...
0
votes
1answer
308 views

How do I implement remember me for login to save username and password? (Java, JSP, JavaScript) [closed]

I want to implement a "remember me" checkbox on a JSP login page. Specifically, I want it to remember the username and password. Why not just use the browser's password manager? Because I am ...
1
vote
2answers
465 views

Can I store complete user information in cookies using spring security remember me

I want to store other user information in cookies like userId with username and password. I can get username from cookies when I use spring security remember me feature. In spring-security.xml I am ...
0
votes
2answers
209 views

Techniques to “Remember me on this computer” if cookies/cache is cleared?

Typically "Remember me on this computer" stores a hashed value of user identifier in browser cookie. I want to be able to remember the device even if cookies are cleared. We try to store in cache, ...
0
votes
1answer
429 views

When does spring security remember me process the cookie?

Spring security 3.1.1 So I made a custom remember me service which extends the default token based remember me service just to check if it's called or not. import ...
0
votes
0answers
77 views

Frequent Refreshing Breaks Cookie-Based 'Remember Me' Tokens

I am trying to implement a token based "Remember Me" feature for the login. One of the strategies found on these pages, The Definitive Guide To Forms based Website Authentication and enter link ...
1
vote
3answers
3k views

Object reference not set to an instance of an object in Remember Me

I am writing code to store cookies for Remember Me next time in Login control. Which this will store the user's username on the textbox if the user had checked the "Remember Me" check box. And my ...
1
vote
0answers
294 views

asp:Login “Remember me” is expiring sooner than the full 50 years

The ASP.net <asp:Login> control has an ability to display a Remember me next time checkbox. If checked, this Login.RememberMeSet Property is set. From MSDN: When the RememberMeSet property ...
0
votes
1answer
169 views

is it possible to start a new session if a cookie is set?

i want to start a new session using a cookie, once the previous session has been destroyed. if a cookie is set, but not a session, can i automatically, create a new session using only the cookie? ...
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
213 views

Remembering and validating user using cookies

I'm new to cookies and (PHP in general actually) and I want to implement a "remember me" system for the website I'm working on. After reading a lot of posts here and also on other website, I ...
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, ...
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: ...
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 ...
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", ...
0
votes
1answer
318 views

Can't make user stay logged after restarting browser using cookies - PHP?

I've created a back end log in for my site, but for some reason, I can't get the "remember me" function to work properly. It saves the cookies with username password and ID number, but for some ...
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); } ...
0
votes
1answer
676 views

Remember-Me with Spring Security, various questions

I'm using Spring Framework 3.0.5 and Spring Security 3.0.5 for developing a webapplication where users can log in and log out, using Remember-Me-Service, if they want to. As I don't have pretty much ...
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 ...
0
votes
1answer
455 views

evercookie in Spring Security rememberme-service

I'd like to use the evercookie javascript library to receive the users cookie and make the spring security rememberme-service use it. I read a bit about implementing a custom remember-me service, but ...
2
votes
1answer
2k 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 ...
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?
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. ...
1
vote
2answers
2k views

Saving login status with JavaScript cookies

I'm working on the login/ucp module of an application and I'd love to add a "remember me" option to remember the currently logged-in user and keep them logged in next time they visit. I know this ...
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 && ...
2
votes
3answers
4k 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 ...
1
vote
2answers
716 views

Making Authlogic 'not remember me'

I want my user session to end when the user closes the browser. But authlogic seems to remember the session even when a new browser is opened. I have tried setting @user_session.remember_me = false ...
0
votes
1answer
2k views

Problem with sfRemember cookie / sfGuard Remember me

I'm using Symfony 1.4 with Doctrine. Sorry if this is a silly question but what exactly does one need to build on top of the sfDoctrineGuardPlugin to get the "remember me" functionality working? ...
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 ...
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 ...
0
votes
1answer
871 views

Manual authentication in spring using the rememember me cookie

I have a requirement by which I need to detect user authorization in the login screen itself. (refer to my Previous Question) I tried and searched for a cookie by name ...
1
vote
1answer
335 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 ...
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 ...
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?
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 ...