Cross-Site Request Forgery (CSRF)Weakness · CWE-352

CVE-2025-46743

MEDIUM · 6.3 CVSS v3.1 Published 2025-05-12
Mitigation only
No fix yet — a mitigation exists. There is no fixed release. A documented workaround reduces exposure in the meantime.
See remediation →
67/100
Remediation priority · Elevated
Remotely reachable

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
An authenticated user's token could be used by another source after the user had logged out prior to the token expiring.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · moderate confidence

This is a session token invalidation vulnerability where authenticated tokens remain valid after user logout. When a user logs out, the token is not being invalidated server-side, allowing the expired session token to continue being used by other parties until natural token expiration occurs.

MitigationImplement server-side token invalidation at logout time by maintaining a token blacklist or server-side session state, and invalidate tokens immediately upon logout rather than relying solely on client-side token removal.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
Low
User interaction
Required
Scope
Unchanged
Confidentiality
None
Integrity
High
Availability
Low

CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:L

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Test token validity after logout
    Authenticate with valid credentials to obtain a session token, perform logout, then attempt to use that same token in subsequent API requests to the same endpoints that require authentication
    Affected if The token continues to grant access after logout (requests return 200 OK instead of 401 Unauthorized)
  2. Inspect logout endpoint implementation
    Review the backend code for the logout endpoint - check if it performs server-side session invalidation, token blacklist update, or session state removal versus only clearing the token from the client-side response
    Affected if The logout function only returns a success response without performing any server-side invalidation operations
  3. Verify token blacklist or server-side session storage exists
    Check if the application maintains a server-side token blacklist, session store, or revoked tokens table that is consulted during request authentication
    Affected if No server-side token revocation mechanism exists or is not consulted during token validation
  4. Check token expiration configuration
    Review the token configuration to determine the token lifetime/expiration period, and check if logout relies solely on client-side token removal rather than server-side expiration enforcement
    Affected if Tokens have long expiration periods (days/weeks) and logout does not trigger immediate server-side invalidation
  5. Review authentication middleware validation logic
    Examine the middleware or filter that validates incoming tokens - determine if it checks against any server-side revocation list or only validates signature and expiration timestamp
    Affected if The validation logic does not query any server-side state and only verifies token cryptographic properties

You are affected if logout does not actively invalidate tokens server-side and previously issued tokens continue to work after logout until their natural expiration

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

From vendor data
Mitigation available No clean upgrade yet — mitigate in the meantime
Mitigation

Implement server-side token invalidation at logout time by maintaining a token blacklist or server-side session state, and invalidate tokens immediately upon logout rather than relying solely on client-side token removal.

Have this fixed Scoped from the published advisory
  • Consultation3.0 h
  • Implementation8.0 h
  • Testing4.0 h
  • Review / QA2.0 h
17.0 hours of engineering $3,000
Get help mitigating

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,800.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2025-46743 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2025-46743 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data