[
https://issues.apache.org/jira/browse/WW-4117?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Cam Morris updated WW-4117:
---------------------------
Description:
The isAllowed method of RolesInterceptor does not enforce the disallowedRoles
when allowedRoles are configured. ex:
{code}
<interceptor-ref name="roles">
<param name="allowedRoles">authenticated</param>
<param name="disallowedRoles">restrictedUser</param>
</interceptor-ref>
{code}
was:The isAllowed method of RolesInterceptor does not enforce the
disallowedRoles when allowedRoles are configured. ex:
I'd suggest the correct implementation would behave like this:
{code}
if ((inRole(role1) || inRole(role2) || ... inRole(roleN)) && !inRole(roleA) &&
!inRole(roleB) && ... !inRole(roleZ)
{ //permit ...
{code}
> RolesInterceptor ignores disallowedRoles when allowedRoles are configured
> -------------------------------------------------------------------------
>
> Key: WW-4117
> URL: https://issues.apache.org/jira/browse/WW-4117
> Project: Struts 2
> Issue Type: Bug
> Components: Core Interceptors
> Reporter: Cam Morris
>
> The isAllowed method of RolesInterceptor does not enforce the disallowedRoles
> when allowedRoles are configured. ex:
> {code}
> <interceptor-ref name="roles">
> <param name="allowedRoles">authenticated</param>
> <param name="disallowedRoles">restrictedUser</param>
> </interceptor-ref>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira