grails-spring-security-core
grails-spring-security-core copied to clipboard
Grails Spring Security Core Plugin
The Grails default UTF-8 `characterEncodingFilter` no longer encodes special characters correctly in an app with the Spring Security CAS plugin. I believe this is due to the `SingleSignOutFilter`'s registration order...
I've configured CAS and several services. Everything is okay except one feature - single logout. When user goes to /logout on a service, he logout on the service and redirects...
The code in SpringSecurityCasGrailsPlugin - loads "**DefaultCasSecurityConfig**" ``` `SpringSecurityUtils.loadSecondaryConfig 'DefaultCasSecurityConfig' // have to get again after overlaying DefaultCasSecurityConfig conf = SpringSecurityUtils.securityConfig if (!conf.cas.active) { return }` ``` And in "**DefaultCasSecurityConfig**"...
We had grails 4 app which we recently upgraded to grails 6. This app uses CAS for login and the app works fine when running locally. However when we deploy...
I get the following NPE when using grails-spring-security-cas 6.0.0-SNAPSHOT with Grails 7.0.0-M1: ``` java.lang.NullPointerException: Cannot execute null+null at org.codehaus.groovy.runtime.NullObject.plus(NullObject.java:162) at org.codehaus.groovy.vmplugin.v8.IndyInterface.fromCache(IndyInterface.java:321) at grails.plugin.springsecurity.cas.SpringSecurityCasGrailsPlugin$_doWithSpring_closure1$_closure4.doCall(SpringSecurityCasGrailsPlugin.groovy:102) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)...
Today the Challenge Questions are not in the Tab (Like Roles) when they search for a User I can work on this feature.
Thanks for reporting an issue for grails-spring-security-ui. Please review the task list below before submitting the issue. > WARNING: Your issue report may be closed if the issue report is...
### Steps to Reproduce I've created a demo grails app that uses spring-security-ui and contains a failing integration test that I would expect to pass. $ grails test-app ### Expected...
Our team has a new Grails 3.3.9 multi-project. This issue manifests almost exactly like grails/grails-spring-security-ui#56 but the work-around suggested there did not work. **Ultimately, copying the Domain classes from myplugin...
I have searched through this plugin's documentation and on StackOverflow and haven't found anything providing this functionality. A potential security issue I've noticed while using the application is that RegistrationCode...