chore(deps): update dependency duende.accesstokenmanagement to 3.2.0 [security] #905
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.
This PR contains the following updates:
2.0.3
->3.2.0
GitHub Vulnerability Alerts
CVE-2025-26620
Summary
Duende.AccessTokenManagement contains a race condition when requesting access tokens using the client credentials flow. Concurrent requests to obtain an access token using differing protocol parameters can return access tokens obtained with the wrong scope, resource indicator, or other protocol parameters. Such usage is somewhat atypical, and only a small percentage of users are likely to be affected.
Details
Duende.AccessTokenManagement can request access tokens using the client credentials flow in several ways. In basic usage, the client credentials flow is configured once and the parameters do not vary. In more advanced situations, requests with varying protocol parameters may be made by calling specific overloads of these methods:
HttpContext.GetClientAccessTokenAsync()
IClientCredentialsTokenManagementService.GetAccessTokenAsync()
There are overloads of both of these methods that accept a
TokenRequestParameters
object that customizes token request parameters. However, concurrent requests with varyingTokenRequestParameters
will result in the same token for all concurrent calls.Upgrading
Most users can simply update the NuGet package to the latest version. Customizations of the
IClientCredentialsTokenCache
that derive from the default implementation (DistributedClientCredentialsTokenCache
) will require a small code change, as its constructor was changed to add a dependency on theITokenRequestSynchronization
service. The synchronization service will need to be injected into the derived class and passed to the base constructor.Impact
The impact of this vulnerability depends on how Duende.AccessTokenManagement is used and on the security architecture of the solution. Most users will not be vulnerable to this issue. More advanced users may run into this issue by calling the methods specified above with customized token request parameters. The impact of obtaining an access token with different than intended protocol parameters will vary depending on application logic, security architecture, and the authorization policy of the resource servers.
Thank you to Michael Dimoudis of PageUp for finding this issue and responsibly disclosing it!
Release Notes
DuendeSoftware/foss (Duende.AccessTokenManagement)
v3.2.0
Compare Source
v3.1.1
Compare Source
v3.1.0
Compare Source
Configuration
📅 Schedule: Branch creation - "" in timezone Europe/London, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.