-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Prevent Privilege Escalation: Add Assignment Restrictions for Roles and Permissions #24775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
maliming
wants to merge
6
commits into
dev
Choose a base branch
from
Prevent-Privilege-Escalation
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+598
−77
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
cddf0ff
Prevent Privilege Escalation: Add Assignment Restrictions for Roles a…
maliming 771f960
Refactor permission management logic to simplify IsDisabled checks
maliming e2ceb45
Update modules/permission-management/src/Volo.Abp.PermissionManagemen…
maliming fdae1e3
Use Lazy for principal and guard empty permissions
maliming a475272
Implement role-based permission management and admin role checks
maliming a90ac77
Use case-insensitive set ops for role names
maliming File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
framework/src/Volo.Abp.Security/Volo/Abp/Roles/AbpRoleConsts.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| namespace Volo.Abp.Roles; | ||
|
|
||
| public static class AbpRoleConsts | ||
| { | ||
| /// <summary> | ||
| /// The static name of the admin role. | ||
| /// Default value: "admin" | ||
| /// </summary> | ||
| public const string AdminRoleName = "admin"; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...est/Volo.Abp.Identity.Application.Tests/Volo/Abp/Identity/FakeCurrentPrincipalAccessor.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Security.Claims; | ||
| using Volo.Abp.DependencyInjection; | ||
| using Volo.Abp.Security.Claims; | ||
|
|
||
| namespace Volo.Abp.Identity; | ||
|
|
||
| [Dependency(ReplaceServices = true)] | ||
| public class FakeCurrentPrincipalAccessor : ThreadCurrentPrincipalAccessor | ||
| { | ||
| private readonly IdentityTestData _testData; | ||
| private readonly Lazy<ClaimsPrincipal> _principal; | ||
|
|
||
| public FakeCurrentPrincipalAccessor(IdentityTestData testData) | ||
| { | ||
| _testData = testData; | ||
| _principal = new Lazy<ClaimsPrincipal>(() => new ClaimsPrincipal( | ||
| new ClaimsIdentity( | ||
| new List<Claim> | ||
| { | ||
| new Claim(AbpClaimTypes.UserId, _testData.UserAdminId.ToString()), | ||
| new Claim(AbpClaimTypes.UserName, "administrator"), | ||
| new Claim(AbpClaimTypes.Email, "administrator@abp.io") | ||
| } | ||
| ) | ||
| )); | ||
| } | ||
|
|
||
| protected override ClaimsPrincipal GetClaimsPrincipal() | ||
| { | ||
| return GetPrincipal(); | ||
| } | ||
|
|
||
| private ClaimsPrincipal GetPrincipal() | ||
| { | ||
| return _principal.Value; | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.