Skip to content

Commit

Permalink
Fixed: Error in user impersonation with sub permission
Browse files Browse the repository at this point in the history
(OFBIZ-11342)

Add unit tests for permission control feature.
Add new method to manage multilevel permission control.
This allowing an user with PARTYMGR_ADMIN permission to impersonate
another user with PARTYMGR_PCM_CREATE permission.
  • Loading branch information
gilPts committed Feb 12, 2020
1 parent 3788f67 commit c73b97e
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 2 deletions.
Expand Up @@ -119,10 +119,25 @@ public static List<String> hasUserLoginMorePermissionThan(Delegator delegator, S
return toUserLoginPermissionIds.stream()
.filter(perm ->
!userLoginPermissionIds.contains(perm)
&& !adminPermissions.contains(perm.substring(0, perm.lastIndexOf("_"))))
&& !checkMultiLevelAdminPermissionValidity(adminPermissions, perm))
.collect(Collectors.toList());
}

/**
* Return if an admin permission is valid for the given list of permissions.
*
* @param permissionIds List of admin permission value without "_ADMIN" suffix
* @param permission permission to be checked with its suffix
*
*/
public static boolean checkMultiLevelAdminPermissionValidity(List<String> permissionIds, String permission) {
while (permission.lastIndexOf("_") != -1) {
permission = permission.substring(0, permission.lastIndexOf("_"));
if (permissionIds.contains(permission)) return true;
}
return false;
}

/**
* Return a JWToken for authenticate a userLogin with salt the token by userLoginId and currentPassword
*/
Expand Down Expand Up @@ -150,4 +165,4 @@ public static boolean authenticateUserLoginByJWT(Delegator delegator, String use
}
return false;
}
}
}
@@ -0,0 +1,47 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ofbiz.security;

import java.util.Arrays;
import java.util.List;

import org.junit.Test;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;

public class SecurityUtilTest {
@Test
public void basicAdminPermissionTesting() {
List<String> adminPermissions = Arrays.asList("PARTYMGR", "EXAMPLE", "ACCTG_PREF");
assertTrue(SecurityUtil.checkMultiLevelAdminPermissionValidity(adminPermissions, "PARTYMGR_CREATE"));
assertTrue(SecurityUtil.checkMultiLevelAdminPermissionValidity(adminPermissions, "EXAMPLE_CREATE "));
assertTrue(SecurityUtil.checkMultiLevelAdminPermissionValidity(adminPermissions, "EXAMPLE_ADMIN"));
assertFalse(SecurityUtil.checkMultiLevelAdminPermissionValidity(adminPermissions, "ACCTG_ADMIN"));
}

@Test
public void multiLevelAdminPermissionTesting() {
List<String> adminPermissions = Arrays.asList("PARTYMGR", "EXAMPLE", "ACCTG_PREF");
assertTrue(SecurityUtil.checkMultiLevelAdminPermissionValidity(adminPermissions, "PARTYMGR_CME_CREATE"));
assertTrue(SecurityUtil.checkMultiLevelAdminPermissionValidity(
adminPermissions, "EXAMPLE_WITH_MULTI_LEVEL_ADMIN"));
assertFalse(SecurityUtil.checkMultiLevelAdminPermissionValidity(adminPermissions, "ACCTG_ADMIN"));
}
}

0 comments on commit c73b97e

Please sign in to comment.