You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The auth service doesn't check that the grailsApplication.config.security.cas.bypass property is a boolean. This causes the truthy value of the value to be used instead. Which means that adding this in an external properties file:
security.cas.bypass=false
In a config file will actually bypass the user in role check because "false" is true.
The text was updated successfully, but these errors were encountered:
- Fixes AuthService.groovy and AlaWebThemeGrailsPlugin.groovy from the fact that the security.cas.bypass parameter comes as a String and not a Boolean so it requires explicit casting to evaluate correctly in those cases that is set to true in the external config file.
- Version number bumped to 0.8.3-SNAPSHOT
- Makes Maven dependency resolution engine ,aether, to be used instead of Ivy which is know to not be very good
- Explicitly excludes servlet-api dependency from rest plugin
The auth service doesn't check that the grailsApplication.config.security.cas.bypass property is a boolean. This causes the truthy value of the value to be used instead. Which means that adding this in an external properties file:
security.cas.bypass=false
In a config file will actually bypass the user in role check because "false" is true.
The text was updated successfully, but these errors were encountered: