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

What algorithm does Devise use for implementing Remember Me?

What algorithm/method does Devise use for implementing Remember Me? What tokens does it create, what values do those tokens have, what values does it store in the database, how and when those values change? Basically I am looking for a detailed…
TheFooProgrammer
  • 2,439
  • 5
  • 28
  • 43
0
votes
2 answers

OmniAuth without Devise: How can I securely implement Remember Me?

If I just store the provider and uid in a cookie is it secure enough? Or should I encrypt one or both of them? Should I augment provider and uid with a secure token? Are there any other considerations that I should take into account?
TheFooProgrammer
  • 2,439
  • 5
  • 28
  • 43
0
votes
1 answer

node+express+redis persistent session/remember me

I am developing in node and express. And I am trying to make a remember me login. I am reading a lot of things on the web, but can't make it work. I don't know if there is a receipe, and if there it is, I could't find it. I was trying with redis and…
Gonzalo
  • 752
  • 8
  • 23
0
votes
1 answer

Storing user credentials for next program startup

Got an issue here. I have a program that when it starts a loginForm dialog pops up. Now on this loginForm I've added a rememberMe (onthoudMij) button. So if the user selects this box log's in, closes the program and then opens it again, his user…
RawMeat
  • 1
  • 4
0
votes
2 answers

"Remember me" functionality for REST APIs?

I'm curious what the best means to implement "remember me" functionality would be when writing a client for a REST API. I'm responsible for both the browser client (being done in angularjs) as well as the server. One thing that occurs to me is to…
jacheson
  • 1,303
  • 2
  • 12
  • 16
0
votes
1 answer

Spring remember anonymous user

We are using Spring MVC with Spring Security. These are the requirements for our login system: The site should be useable for anonymous users including the settings of preferences (for example turning a filter on a page on or off). These…
0
votes
2 answers

PHP OOP remember me function error

I've been following this tutorial by phpacademy on OOP Login and Register functions and I cant seem to be able to get the remember me function to work. I think the problem is that $user-> login(); doesnt pass any data but i cant seem to be able to…
0
votes
2 answers

Android application remember settings

I am coding using Xamarin and have a question about application settings. Is it possible to have application wide settings? I will give you an example: I have a map application. I have a ListView where the user can select if the map is using the…
Garry
  • 1,251
  • 9
  • 25
  • 45
0
votes
1 answer

how to use remember me in gocart (CI)

I want to use remember me but it's not working.I am using login function as $this->Customer_model->login($email, $password, $remember); where $remember = true; but when I close my browser it makes me logout.
user3110655
  • 121
  • 3
  • 20
0
votes
1 answer

NullPointerException from Remember-me on a Spring Bean

I am using this tutorial to learn the basics of spring security and I have currently reached this page (Spring Security 3.1 Authentication using Custom Database Implementation and JSF 2.0). The problem is that even though I have copied everything…
0
votes
1 answer

Set Spring RememberMe Cookie Domain after Authentication

Is there some way that I can set the domain of the Spring Security RememberMe cookie after the user has authenticated. The change in API in version 3.1.4 makes subclassing and overriding the setCookie() method impractical. Also at that point, I…
JamesENL
  • 6,400
  • 6
  • 39
  • 64
0
votes
1 answer

Remember me function using database to store details

i have a 'working' login form which validates and uses bound variables. My site now is almost ready (content wise) to be put online so im now coming back to the login process as i want that 100% before releasing to public. I want to have a remember…
Lovelock
  • 7,689
  • 19
  • 86
  • 186
0
votes
1 answer

make a check box with a Remember Me Function

I need a check box in my login form for my company application. Need help because i am a noob and dont know how..!!!! How am i supposed to do it with cookies? private void chkRememberMe_CheckedChanged(object sender, EventArgs e) { …
0
votes
1 answer

How to set custom time out for remember me cookie in grails spring security?

I have tokenValiditySeconds set in the Config.groovy as grails.plugins.springsecurity.rememberMe.tokenValiditySeconds=31*24*60*60 However I want to set a different validity for all requests that comes from, say a sub-domain. I can identify domain…
user235273
0
votes
2 answers

Remember me in Symfony2 not working after restart browser

The remember me functionality creating the REMEMBERME cookie fine. When I restart my browser that cookie is also available but I'm not logged and I'm authenticate like an anonymous in the Symfony Toolbar. Normaly when I go on mydomain.com if I'm…
Slek33
  • 1
  • 1
  • 5