remember-me Questions
2
Solved
I have a userform that calls a function with username/password prompt.
The user usually has to run it more times and each time is prompted for the login credentials so I want the userform to remem...
Addax asked 24/11, 2015 at 7:19
1
Solved
From https://mcmap.net/q/47888/-why-does-oauth-v2-have-both-access-and-refresh-tokens:
The idea of refresh tokens is that if an access token is compromised,
because it is short-lived, the attac...
Sixgun asked 2/10, 2015 at 8:30
4
Solved
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?
Palm asked 5/9, 2010 at 7:29
10
Solved
My web application's home page has a RememberMe checkbox. If the user checks it, I willl store email-id and password in cookies. This is my code:
if (this.ChkRememberme != null && this.Chk...
Mitchelmitchell asked 20/1, 2010 at 9:48
1
Solved
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 ...
Gonroff asked 6/4, 2011 at 9:46
1
I'd like to add a "remember me" checkbox option before logging in.
What is the best way to securely store a cookie in the user's browser?
For example, Facebook have their "remember me" chec...
Darryldarryn asked 27/6, 2010 at 21:39
2
Initial idea: In the article "Improved Persistent Login Cookie Best Practice," (http://jaspan.com/improved_persistent_login_cookie_best_practice) bjaspan suggests a clever means of catching a would...
Verena asked 5/2, 2014 at 18:54
1
I am encountering an issue with my remember me configuration:
[nio-8080-exec-8] s.s.w.a.r.RememberMeAuthenticationFilter : SecurityContextHolder not populated with remember-me token, as it already...
Crore asked 10/4, 2015 at 14:17
1
Solved
Definition of "Remember Me" feature is
When you check the "Remember Me" checkbox at the Portal Login page,
your login will be remembered for some days, even after you close you...
Demers asked 22/2, 2015 at 12:26
3
Solved
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 us...
Asymmetry asked 31/5, 2010 at 15:0
2
Solved
MVC 5 ASP.NET Identity 2: Capture user's preference for "remember me" in ExternalLogin
I am using the Identity 2.0 Sample.
I get that by setting isPersistent to true in ExternalLoginCallback action method, the browser will automatically log the user in the next time (within limits) ...
Antechoir asked 24/4, 2014 at 20:36
2
I'm making a Rails App.
I'd like to implement a check box 'remember me' for users to skip enter password from next time with using Devise:rememberable.but I can't figure out how to implement.
if y...
Mneme asked 4/8, 2012 at 17:14
4
Solved
I have implemented a login function programmatically.
This code is following:
$token = new UsernamePasswordToken($user, $user->getPassword(), 'main', $user->getRoles());
$this->get('secu...
Adorn asked 3/8, 2013 at 12:22
2
org.springframework.security.web.authentication.rememberme.CookieTheftException: Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack.
at org.springframework.sec...
Ereshkigal asked 15/11, 2012 at 8:25
1
Solved
I am attempting to implement a "remember me" utility using the system outlined here: Improved persistent login cookie
However there is an issue with the logic here for me and was wondering if anyo...
Mirtamirth asked 22/9, 2013 at 12:58
1
Solved
I am fairly new to Laravel and had a question regarding the remember me function.
I have successfully enabled the "remember me" function by attaching a second argument to the Auth::attempt method ...
Howlan asked 6/8, 2013 at 1:26
3
Solved
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 && this.ChkRemembe...
Enunciation asked 28/7, 2010 at 17:23
1
Solved
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...
Whitlow asked 14/3, 2013 at 3:6
0
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 webs...
Khalilahkhalin asked 6/1, 2013 at 17:2
4
Solved
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 alon...
Neurophysiology asked 2/1, 2013 at 23:28
1
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 ...
Beverage asked 18/1, 2011 at 18:57
1
Solved
I'm trying to implement a "remember me" feature, following the guidelines provided here: The definitive guide to form-based website authentication, and here: http://fishbowl.pastiche.org/2004/01/19...
Jackfish asked 14/12, 2011 at 10:31
2
I want to use a Spring Security's "Remember me" with LDAP authentication. LDAP authentication configuration is described here, I've just made some tiny changes. Could you explain to me how can i ad...
Natalienatalina asked 2/3, 2010 at 6:43
1
Solved
On many websites when you login via Chrome it will offer to remember your login details.
I have a login form and this does not happen.
Here's the form:
<form action="/login" method="post">...
Nuzzle asked 6/12, 2011 at 14:57
2
Solved
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 UsernameP...
Overtly asked 18/10, 2011 at 12:5
© 2022 - 2024 — McMap. All rights reserved.