0
votes
1answer
151 views

spring security remember me authentication

I have the mechanism to save cookies at the client-side. But when I was trying to implement remember-me using spring security I came upon this tutorial : ...
2
votes
2answers
166 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 ...
1
vote
1answer
68 views

Spring security remember me - logging out one PC forgets all other persistent logins on other PCs

Remember-me service definition: <security:remember-me services-alias="rememberMeService" data-source-ref="dataSource" user-service-ref="userService"/> and my persistent_login table (via ...
0
votes
1answer
67 views

Progammatic remember-me with spring secruity

My remember-me bean definition looks like this, and works fine <security:remember-me data-source-ref="dataSource" user-service-ref="userService"/> However the first time a user registers, ...
0
votes
1answer
236 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 ...
1
vote
0answers
63 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 ...
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 ...
1
vote
2answers
468 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
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 ...
1
vote
1answer
164 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
833 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 ...
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 ...
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 ...
1
vote
1answer
1k views

Save login details(preferences) android

I have one android app with login, logout functions. The login form contains Username and password and the login button. I want to save the username and the password when the user checks the "Remember ...
6
votes
2answers
2k views

Catching Remember-Me Authentication Events in Spring Security

I'm developing an application in which I need to catch and respond to Authentication events to take appropriate action. Currently, I'm catching just fine the AuthenticationSuccessEvent Spring throws ...
0
votes
1answer
261 views

Authenticated and UnAuthenticated views of the same resource in Spring Security

I am trying to make a resource that can be accessed by both authenticated and unauthenticated users. I also have the remember-me authentication in place. For a user accessing the resource (page), I ...
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); } ...
1
vote
2answers
913 views

“remember me” functionality with jsf 2.0

I am trying to implement "remember me"/"autologin" functionality. I have stored a cookie at the client but when should I read it? If I try to do that in a filter, for example, I won't have access to ...
5
votes
4answers
1k views

Why remember me token?

While implementing the "remember me" feature for a website, why do we complicate things and have a token called remember me token apart from a session token. To the best of my understanding, remember ...
2
votes
2answers
1k views

Google App Engine Java - Keep Session alive after users close browser (remember me function)

We can enable session by setting sessions-enabled to true in file appengine-web.xml. However, the session implemented by GAE is not persistent after closing browsers. My question is how to keep the ...
4
votes
2answers
4k views

How does Remember Me work in Spring Security?

I'm curious how does Remember Me work and how does it work in Spring Security? I understand that server sends long-lived cookies to the client. And then client sends cookie back and server can ...
1
vote
2answers
6k views

How do I use “Remember Me” authentication with Spring Security and LDAP?

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 add ...