Tagged Questions
0
votes
1answer
105 views
How to change Grails Spring Security Cookie Path
I've got two grails applications using spring security:
Core
Module (user and role tables mapping to Core db tables)
I want to have a single sign on functionality using "remember me". The problem ...
1
vote
2answers
101 views
SpringSecurity: how to specify remember me authentication?
I'm developing an app based on Grails and Vaadin 7. I managed to make them work with SpringSecurity for authentication and authorization, but I had to develop my own Service that calls the Spring ...
0
votes
0answers
90 views
Spring Security Remember-me does not save tokens on Mongo
I try to implement Remember-me with Spring Security 3.1 with MongoDB. But tokens are not persisted on bbdd. I can login successfully and other spring security config works fine.
I have seen those ...
0
votes
2answers
139 views
Spring Security custom authentication and remember me
I used this tutorial http://krams915.blogspot.de/2010/12/spring-security-mvc-integration-using_26.html to implement a custom authentication manager. Login and logout works fine.
Now I want to use ...
0
votes
1answer
152 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 :
...
0
votes
0answers
148 views
Remember Me feature in spring security core and grails
I am trying to implement 'remember me' feature in my grails application using spring security core. The idea is to login user directly without asking for username and password if the user has logged ...
0
votes
2answers
56 views
Spring remember-me doesn't redirect to homepage
Here is how I configured Spring-security :
<security:http auto-config="true">
<security:remember-me key="123456" /> <!-- Be Aware -->
<!-- Restrict URLs ...
0
votes
1answer
324 views
Spring Security Remember-Me REST web service - how to return token back in the 200 response with the Persistant Token Approach
I have my rest web services secured with Spring Security. I'm returning the the appropriate responses (401 for failure, 200 for success, etc) via the various handlers. The client does not want to ...
1
vote
1answer
190 views
how to delete remember me cookie in spring security
I was wondering how to the remove the remember me cookie when using spring remember me services.
I am using the default remember me cookie name
I came across the following documentation in spring to ...
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, ...
3
votes
1answer
135 views
Remember me cookie decoding process
I am using spring remember me services. I am seeing a strange behavior.
Steps I am taking:
login to my website using username /password and checking the remember me checkbox
than I am closing the ...
0
votes
1answer
278 views
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 ...
0
votes
0answers
91 views
How do I set a remember me cookie for custom auth action in spring security (Grails)?
Using grails with spring security I have a custom auth action for a facebook login. The Auth action contains
def target = facebookContext.getLoginURL(
...
0
votes
1answer
163 views
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
<input type="checkbox" ...
1
vote
0answers
220 views
Spring security remember me
As per this link, I'm trying to implement the Persistent Token Approach for the "remember me" functionality. The tokens are stored in my database (postgres). I have the datasource set up properly, ...
0
votes
1answer
111 views
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 ...
1
vote
2answers
535 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" ...
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 ...
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
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
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
944 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 ...
-1
votes
2answers
379 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
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
433 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
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
1answer
204 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
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?
2
votes
1answer
757 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
863 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
1answer
451 views
Remember-me functionality for Spring Security
Here is the issue:
We have to implement two-step login process. First step - user enters name/password and is being authenticated. Second step - user may be presented with secondary select screen ...
2
votes
2answers
2k views
Spring Security 3.1.0 - Remember-me does not work as expected
I am having a problem with Spring Security's 3.1.0 remember-me cookies. I need to find a solution ASAP and I cannot find the cause of this problem.
These are the steps I am following:
Go to my app ...
1
vote
1answer
295 views
Spring security remember me overriding default SQL of persistent_logins table
I have successfully implemented Remember Me functionality in my application.
Only I want to alter is that i do not want to use default table name persistent_logins at all.
So I want to update default ...
1
vote
1answer
678 views
Grails spring-security-core remember me functionality
I'm using the spring-security-core plugin v. 1.2.6 (documentation).
I want to implement the remember me functionality. Configuration and GSP is done well I think. But what do I have to do now in my ...
2
votes
4answers
726 views
Spring security Remember me is not working in spring MVC application.
Authentication and Authorization is working properly. But remember me is not working properly in the application.
I have used both database authentication and ldap authentication using spring ...
10
votes
2answers
3k views
Log user in with remember-me functionality in Spring 3.1
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 ...
1
vote
1answer
419 views
Spring MVC 2.5 - remember me with custom pre authentication filter
I am working on a legacy app that uses Spring Security 2.0.4. I have created a custom AbstractPreAuthenticatedProcessingFilter and PreAuthenticatedAuthenticationProvider. They create and authenticate ...
1
vote
1answer
853 views
Remember-me cookie and Varnish
I'm trying to get Spring Security's remember-me feature to work with Varnish but this seems incredibly hard. With regular login, it's easy, I just setup Varnish to bypass cache for ...
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 ...
0
votes
1answer
676 views
Remember-Me with Spring Security, various questions
I'm using Spring Framework 3.0.5 and Spring Security 3.0.5 for developing a webapplication where users can log in and log out, using Remember-Me-Service, if they want to.
As I don't have pretty much ...
1
vote
1answer
1k views
Remember-me- spring security
I am currently trying to implement remember me functionality in my website. Following is part of my configuration
<security:remember-me services-ref="rememberMeServices" />
<bean ...
4
votes
1answer
861 views
Spring RememberMe processAutoLoginCookie
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 - ...
1
vote
0answers
453 views
Grails Spring Security “remember me” causes TypeMismatchException
I've been having a problem with the Spring Security Core plugin for Grails, which I'm using in conjunction with Spring Security UI. On the provided login page, if I check "Remember Me", log in, close ...
0
votes
1answer
455 views
evercookie in Spring Security rememberme-service
I'd like to use the evercookie javascript library to receive the users cookie and make the spring security rememberme-service use it.
I read a bit about implementing a custom remember-me service, but ...
1
vote
2answers
3k views
Simple Spring <remember-me/> … help please
All I want, is a simple remember-me. I read http://static.springsource.org/spring-security/site/docs/3.0.x/reference/remember-me.html
What I have done so far:
Created my own UserDetailsService to ...
1
vote
1answer
666 views
Springs Simple <remember-me/> not working :-(
I am trying to make use of Spring Security's <remember-me/> authentification. The line in my security context looks like this:
<security:remember-me key="89dqj219dn910lsAc12" ...
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 ...
