Questions tagged [remember-me]

A way to store personal information to make it easier for a user to fill in forms or login to websites at a later time.

A "remember me" option is often used on login forms on websites. It is represented as a checkbox labeled "remember me" and stores either the username or a login token to re-login the user when visiting the website again.

525 questions
0
votes
1 answer

grails - Spring Security Core Plugin - ajax call - Invalid remember-me token mismatch.

I get the below errors on the first ajax call after a remember-me login. (causes a manual login.) Strange thing is the persistent_login record is deleted and then it tries to find the record with the same key. (using tomcat and latests grails…
0
votes
0 answers

symfony2 fosuserbundle remember_me cookie aftre register

In my registerAction i turned off the confirmation so if the user fills in the form correctly, it is authenticated. Does anyone know how to create rememberme cookie so as the user can stay authenticated? My security.yml: main: pattern: ^/ …
J S
  • 59
  • 3
0
votes
2 answers

logging in, logging out & session behavior

When you log out of a web app, should ALL your session be logged out? When I log out of the web app from the public library, should it also log me out of the session I have on my home computer? When you choose "remember me" or "stay signed in" when…
scotts
  • 4,027
  • 3
  • 29
  • 26
0
votes
1 answer

How to make Listbox to not remember its last view

I have a Listbox that bind to an ObservableCollection. In my app, I need to clear this collection in OnNavigatedFrom and read it in OnNavigatedTo to reduced memory. However, I see that when using StackPanel as ItemsPanelTemplate, Listbox can…
0
votes
1 answer

Configuring remember-me in spring security

How can i configure remember-me service in spring security.Am using spring3.0 +hibernate3+ struts2.I have tried as below. login.jsp remember-me applicationContext-security.xml
rakesh menon
  • 1,081
  • 3
  • 15
  • 30
0
votes
1 answer

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 page, the url will retain the string that has been…
0
votes
1 answer

Spring "Remember Me" not working with jetty and session replication

I am using Jetty 8 and currently have two instances set up and running behind a round robin load balancer. I have configured it use session replication via MongoDB. My application uses spring security. It is working great with two exceptions. I…
DavidA
  • 3,984
  • 5
  • 25
  • 38
0
votes
1 answer

Visual Basic : Form Remembering Settings

Hi guys i'm stuck at a part of my program when I want to make a screen start up only once then go to the main screen here is my Form 1's code Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click …
Mizaan Shamaun
  • 41
  • 1
  • 2
  • 5
0
votes
0 answers

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 sitemesh is trying to pull in and decorate. I'm…
E Paiz
  • 661
  • 4
  • 9
  • 19
0
votes
1 answer

Setting the token-validitys-seconds of RememberMe Dynamically

Using Spring, I've declared a RememberMe bean in my XML: .....
OhadR
  • 8,276
  • 3
  • 47
  • 53
0
votes
1 answer

persisted remember-me authentication after using custom filter

I'm using Spring-Security 3.1.RELEASE within a Spring Roo environment. I've changed the login mechanism so that it works with JSON-Response. For that I've created two classes (scala) namely class JsonSuccessHandler extends…
rainerhahnekamp
  • 1,087
  • 12
  • 27
0
votes
2 answers

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, window.event and even in local storage and DB (if…
Megha
  • 335
  • 3
  • 13
0
votes
1 answer

Writing Remember Me for login

I'm going to write a login page, and I've been reading Charlie Miller's article on Remember Me for logins. Also read the OWASP cheat sheet. I was thinking, instead of a persistent database entry for the random number, could you not just store the…
Hassan Khan
  • 766
  • 3
  • 9
  • 21
0
votes
1 answer
0
votes
0 answers

What is a session cookie?

I was reading this article and I was wondering, what exactly is a standard session management cookie (SSMC)? It also recommends that the SSMC should be a session cookie and therefore expire when the browser is closed. Because it's an 'improved'…
Asaf
  • 2,005
  • 7
  • 37
  • 59