The remember-me tag has no wiki summary.
1
vote
0answers
71 views
Symfony2 and RememberMe token exception
We are building an application using Symfony2 framework.
There is a custom authentication manager implemented which works fine, except when a user connects and select the 'Remember me' token. The ...
1
vote
2answers
531 views
How can I use a custom configured RememberMeAuthenticationFilter in spring security?
I want to use a slightly customized rememberme functionality with spring security (3.1.0).
I declare the rememberme tag like this:
<security:remember-me key="JNJRMBM" ...
2
votes
3answers
141 views
Before-Action method in symfony2
I want to write a common code in my symfony2 application that should be executed before calling any action-method. How Can I do it?
At the time of login-success, I am storing some data in session. If ...
0
votes
1answer
235 views
Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack
org.springframework.security.web.authentication.rememberme.CookieTheftException: Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack.
at ...
-6
votes
1answer
128 views
C# and MySQL check if user is logged in [closed]
I have code where users can login, but my C# app is connected to MySQL database.
How to make remember me checkbox and check if user is already logged in?
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 ...
1
vote
0answers
62 views
Avoid direct links to login page
I'm using spring security including remember-me feature:
<security:remember-me key="myKey" token-validity-seconds="2419200" user-service-ref="userDetailsService"/>
Now when i check remember-me ...
-1
votes
1answer
102 views
Remember me and session in symfony2
I am storing some information related to logged user in session.
If the user logged with remember me cookie, he didn't get data from the session.
It is normal behavior. My question is how to solve the ...
0
votes
1answer
151 views
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 ...
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
104 views
Setting the token-validitys-seconds of RememberMe Dynamically
Using Spring, I've declared a RememberMe bean in my XML:
<security:http authentication-manager-ref="authenticationManager">
.....
<security:remember-me
...
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 ...
0
votes
2answers
302 views
Session timeout kills “Remember Me” cookie in aspnet database
I'm trying to understand if this makes sense:
1. User logs in, checks "remember me" checkbox.
2. User logs out.
3. User comes back and is automatically logged in.
Basically, that's exactly what ...
0
votes
1answer
183 views
How to prolong the remember_me cookie on each request in Symfony2?
I use standard remember_me symfony feature, but it expires every period of time, set in config.
E.g. I have lifetime set to 1800. Disregarding of what I do, it logs me off after 0.5 hours after last ...
1
vote
1answer
495 views
Prevent session cookie hijacking WITHOUT SSL
To prevent session hijacking, i tried to assign a specific cookie name to each user based on these variables: User-agent and IP Address.
I have used following function to generate session cookie ...
0
votes
2answers
786 views
How to Remember username or password for login form
i have created a sample Login form in C# Windows Form Application, And What i Want is to add Remember username or password feature to my login form.
I just need to provide my username,cause it will ...
0
votes
1answer
935 views
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 ...
0
votes
0answers
145 views
What code to write for 'remember me' checkbox?
I am using php/html/js.
I would like to know, what functionality/code is to be associated with "Remeber me" check box, which we see on almost all websites while loggin in.
Please let me now.
-1
votes
2answers
378 views
Spring Security - check remember me when login failed
How I get remember me value when login failed and reopen the login page?
Can i get the value of _spring_security_remember_me on controller?
I just need to keep the value of the checkbox when login ...
1
vote
1answer
283 views
How to auto redirect user having Auto-Login cookie, using Auto-Login component in CakePHP 2x?
I am using CakePHP 2x with Auto-Login component. The problem is, I can write the stuff but, I am not sure how to implement it to read and authorize. When user arrives at the page, he still has the ...
1
vote
2answers
467 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
431 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
1answer
96 views
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 ...
1
vote
1answer
1k views
How to use Devise: rememberable?
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 you ...
1
vote
1answer
163 views
“stay logged in” login page
I want to implement a stay logged in or remember me in my jsp login page. I am using container based form authentication. I think I need to I have to store users' data such as userid and token - a ...
1
vote
2answers
829 views
Remember me/stay logged in, in jsp login page
I have a login screen and i want to authenticate users by checking credentials from database. I know most browsers can remember the password, but how can i implement Remember me check box by using the ...
1
vote
0answers
434 views
Spring Security RememberMe cookie automatically removing [closed]
After Signup I am performing autoLogin as follow.
After that i want to create Spring Security RememberMe cookies it is creating successfully but, once my browser closed and start again I opened my ...
0
votes
0answers
78 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 ...
0
votes
1answer
203 views
remember me result is ignored by spring security, and i am still redirected to the login page
My Spring Security XML is as following:
<http use-expressions="true">
<intercept-url pattern="/login" access="isAnonymous()" requires-channel="https"/>
...
0
votes
0answers
83 views
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 ...
0
votes
0answers
26 views
config Acegi to enable the system to forget me?
With RememberMe service, Acegi allows the system to remember me and auto login. But how can I configure Acegi to let the system forget me?
Can Acegi support this function?
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 ...
2
votes
1answer
272 views
change remember me cookie lifetime dynamically
I am using Symfony2 framework with FOSUserBundle.
I want to change the remember cookie lifetime dynamically: when the user clicks on a link for example.
So I can't just change the value for ...
2
votes
1answer
409 views
Kohana 3.2 Auth ORM: I can't seem to stay logged in with the “remember me” option set
I'm having a problem with Auth / ORM and auto_login. I have the lifetime set to two weeks, but I get logged out after about an hour, regardless of whether the browser is closed or not. In fact, it's ...
1
vote
1answer
190 views
html5 username remembering, what are the triggers in browsers?
So, in html (4 & 5), it turns out to my dismay that there isn't a input type=username to match input type=password. So what criteria should I use to give the maximum chance for usernames and ...
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 ...
2
votes
2answers
1k views
Chapter 8 Rails Tutorial Remember Token Errors
This chapter is on adding remember tokens to ensure that the user signin status is remembered and that the session is only cleared when the user explicitly signs out. I understand the importance of ...
0
votes
1answer
128 views
Remember-Me-cookie - where to store token
I'm currently implenting the user-authentication on my website and for convenience, I want to implement a remember me feature. The website is a free game, security is not of the utmost priority since ...
2
votes
1answer
752 views
Spring Security Remember Me service without HttpSession
My question is similar to this one, but I can simplify it some. Basically I want to authenticate users through the remember me cookie, but I want everything on the server side to be completely ...
1
vote
2answers
859 views
Spring security: remember-me doesn't work with custom AuthenticationProvider
I am using a custom AuthenticationProvider:
public class CustomAuthenticationProviderImpl extends AbstractUserDetailsAuthenticationProvider {
@Resource(name="userDetailsService")
private ...
2
votes
3answers
3k views
Remember me in jsp login page
I have a login screen and i am authenticating users by checking credentials from database. But how can i implement Remember me check box? Like in gmail remember me(stay signed in) is present. I am ...
0
votes
1answer
518 views
Yii allways leaves me logged in
I am working on creating website with Yii framework and I have a problem that I don't know how to solve. My problem is that I am always logged in my website even when I have NOT checked "remember me" ...
1
vote
1answer
189 views
How to build a form that DOESN'T bring up the 'remember password' prompt on Firefox?
So I've built an 'Edit Personal Information' section on my website that's in development, and it seems that placing form input elements with the names 'email' and 'password' puts forward the Firefox ...
1
vote
6answers
693 views
Zend framework Remember Me - working issue
I have used the remember me functionality in my site using the following package : http://www.jasperrooswinkel.com/unexpected-expiration-of-zend_auth-sessions/. It is working fine. But I face a ...
1
vote
1answer
214 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 ...
0
votes
2answers
453 views
Rails Auth, Remember me
I'm trying to add remember me functionality to my login form by following Ryan Bates's tutorial. However when I try to access my pages I get this error:
Couldn't find User with auth_token =
I ...
2
votes
0answers
235 views
Glassfish Security - jdbcRealm: How to implement “remember-me”
I'm using jdbcRealm with Glassfish V3 and Java EE 6 and I want to implement a cookie based "Remember-Me".
But, it seems that I cannot set a filter before the JACC security checking. Any Ideas?
