-
Notifications
You must be signed in to change notification settings - Fork 1.2k
fix(multi-asset-bounties): enforce authorization in unassign_curator when parent bounty is not Active #11612
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3307d95
fix: reject unauthorized child bounty curator unassignment when paren…
dhirajs0 d86fbb7
test: add regression test for child bounty curator unassignment auth …
dhirajs0 73a5943
Update from github-actions[bot] running command 'prdoc'
github-actions[bot] e45d783
Merge branch 'master' into dhiraj/fix-unassign-curator-auth-bypass
dhirajs0 cfa1f26
prdoc updated
dhirajs0 e53bc2b
Merge branch 'master' into dhiraj/fix-unassign-curator-auth-bypass
dhirajs0 f094078
refactor: use get+remove instead of take before fallible Consideratio…
dhirajs0 2e0145f
Update from github-actions[bot] running command 'fmt'
github-actions[bot] d42e164
Merge branch 'master' into dhiraj/fix-unassign-curator-auth-bypass
dhirajs0 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
There are no files selected for viewing
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,23 @@ | ||
| title: "fix(multi-asset-bounties): enforce authorization in unassign_curator when parent bounty is not Active" | ||
| doc: | ||
| - audience: Runtime Dev | ||
| description: |- | ||
| Fix an authorization bypass in `unassign_curator` where any signed account could forcibly | ||
| unassign an active child bounty's curator when the parent bounty was not in `Active` state. | ||
| The child curator's native balance hold (deposit) was also permanently leaked in this path. | ||
|
|
||
| The `BountyStatus::Active` catch-all arm now uses `parent_curator.ok_or(BadOrigin)?` to | ||
| explicitly reject callers when no parent curator is available, matching the defensive pattern | ||
| already used in the `Funded` arm. `CuratorDeposit::take()` is also moved after authorization | ||
| to prevent storage mutation on unauthorized calls. | ||
|
|
||
| A regression test is added covering the full attack scenario. | ||
| - audience: Runtime User | ||
| description: |- | ||
| Previously, any account could unassign a child bounty curator without authorization when the | ||
| parent bounty's curator had been unassigned. This is now correctly rejected. If you were | ||
| affected by a permanently locked curator deposit from this bug, a migration or manual | ||
| intervention may be needed to release the held balance. | ||
| crates: | ||
| - name: pallet-multi-asset-bounties | ||
| bump: patch |
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
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.