Bypass of CSRF protection in the presence of predictable userInfo
Moderate severity
GitHub Reviewed
Published
Apr 20, 2023
in
fastify/csrf-protection
•
Updated Nov 9, 2023
Package
Affected versions
< 4.1.0
>= 5.0.0, < 6.3.0
Patched versions
4.1.0
6.3.0
Description
Published by the National Vulnerability Database
Apr 20, 2023
Published to the GitHub Advisory Database
Apr 20, 2023
Reviewed
Apr 20, 2023
Last updated
Nov 9, 2023
Description
The CSRF protection enforced by the
@fastify/csrf-protectionlibrary in combination with@fastify/cookiecan be bypassed from network and same-site attackers under certain conditions.@fastify/csrf-protectionsupports an optionaluserInfoparameter that binds the CSRF token to the user. This parameter has been introduced to prevent cookie-tossing attacks as a fix for CVE-2021-29624. WheneveruserInfoparameter is missing, or its value can be predicted for the target user account, network and same-site attackers can 1. fixate a_csrfcookie in the victim's browser, and 2. forge CSRF tokens that are valid for the victim's session. This allows attackers to bypass the CSRF protection mechanism.As a fix,
@fastify/csrf-protectionstarting from version 6.3.0 (and v4.1.0) includes a server-defined secrethmacKeythat cryptographically binds the CSRF token to the value of the_csrfcookie and theuserInfoparameter, making tokens non-spoofable by attackers. This protection is effective as long as theuserInfoparameter is unique for each user.Patches
This is patched in version 6.3.0 and v4.1.0.
Workarounds
As a workaround, developers can use a random, non-predictable
userInfoparameter for each user.Credits
References