Skip to content

@fastify/secure-session: Reuse of destroyed secure session cookie

High severity GitHub Reviewed Published Apr 10, 2024 in fastify/fastify-secure-session • Updated Apr 21, 2024

Package

npm @fastify/secure-session (npm)

Affected versions

< 7.3.0

Patched versions

7.3.0

Description

Impact

At the end of the request handling, it will encrypt all data in the session with a secret key and attach the ciphertext as a cookie value with the defined cookie name. After that, the session on the server side is destroyed. When an encrypted cookie with matching session name is provided with subsequent requests, it will decrypt the ciphertext to get the data. The plugin then creates a new session with the data in the ciphertext. Thus theoretically the web instance is still accessing the data from a server-side session, but technically that session is generated solely from a user provided cookie (which is assumed to be non-craftable because it is encrypted with a secret key not known to the user).

The issue exists in the session removal process. In the delete function of the code, when the session is deleted, it is marked for deletion. However, if an attacker could gain access to the cookie, they could keep using it forever.

Patches

Fixed in 56d66642ecc633cff0606927601e81cdac361370.
Update to v7.3.0.

Workarounds

Include a "last update" field in the session, and treat "old sessions" as expired.
Make sure to configure your cookie as "http only".

References

References

@mcollina mcollina published to fastify/fastify-secure-session Apr 10, 2024
Published to the GitHub Advisory Database Apr 10, 2024
Reviewed Apr 10, 2024
Published by the National Vulnerability Database Apr 10, 2024
Last updated Apr 21, 2024

Severity

High
7.4
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
Required
Scope
Changed
Confidentiality
High
Integrity
None
Availability
None
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:N/A:N

Weaknesses

CVE ID

CVE-2024-31999

GHSA ID

GHSA-9wwp-q7wq-jx35

Credits

Checking history
See something to contribute? Suggest improvements for this vulnerability.