There is no CSRF protection on the cache feature on most integrations clients.
In authlib.integrations.starlette_client.OAuth, no CSRF protection is set up when using the cache parameter. When not using the cache parameter, the use of SessionMiddleware ties the client to the auth state, preventing CSRF attacks. With the cache, there is no such mechanism. Other integratons have the same issue, it's not just starlette.
The state parameter is taken from the callback URL and the state is fetched from the cache without checking that it is the same client calling the redirect endpoint as was the one that initiated the auth flow.
This issue is documented in RFC 6749 section 10.12: https://datatracker.ietf.org/doc/html/rfc6749#section-10.12
This impacts all users that use the cache to store auth state.
All users will be vulnerable to CSRF attacks and may have an attacker's account tied to their own.
{
"nvd_published_at": "2026-04-24T20:16:27Z",
"cwe_ids": [
"CWE-352"
],
"severity": "MODERATE",
"github_reviewed_at": "2026-04-16T22:38:03Z",
"github_reviewed": true
}