[jboss-jira] [JBoss JIRA] (WFLY-7204) Unsafe Elytron role/permission mapping
Jan Kalina (JIRA)
issues at jboss.org
Fri Sep 23 09:43:00 EDT 2016
Jan Kalina created WFLY-7204:
--------------------------------
Summary: Unsafe Elytron role/permission mapping
Key: WFLY-7204
URL: https://issues.jboss.org/browse/WFLY-7204
Project: WildFly
Issue Type: Bug
Components: Security
Reporter: Jan Kalina
Assignee: Jan Kalina
Priority: Blocker
Default Elytron configuration assigns role "All" to every user during authentication. If a deployed application uses such the role name for a resource protection, then every authenticated user can access the protected resource. So the security is bypassed then.
The problem is caused by workaround used for mapping "LoginPermission" to all users. It maps role "All" to the users first and then maps "LoginPermission" to this role.
{code:xml}
<mappers>
<simple-permission-mapper name="login-permission-mapper">
<permission-mapping roles="All">
<permission class-name="org.wildfly.security.auth.permission.LoginPermission"/>
</permission-mapping>
</simple-permission-mapper>
<constant-role-mapper name="constant-roles" roles="All"/>
</mappers>
{code}
We have to make the default server configuration secure for users.
*Suggestions for improvement:*
* the {{LoginPermission}} mapping should be implicit so everybody has it by default - without specifying it in the server configuration; users should only define cases when they don't want the permission to be assigned to some principals/roles
* constant permission mapper should exist in Elytron subsystem (similar to {{constant-role-mapper}}) so the custom permission can be mapped without workarounds through role-mappings
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
More information about the jboss-jira
mailing list