CVE-2021-36793: CSRF token exposure in TYPO3 extension
6.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.48555%
CWE
Published
9/2/2021
Updated
1/27/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:N/E:F/RL:O/RC:C
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
lms/routes | composer | < 2.1.1 | 2.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability description explicitly implicates the CsrfTokenViewHelper
as the source of session ID exposure. In TYPO3 Fluid templating, ViewHelpers' render()
methods generate output. The advisory indicates this helper outputs raw session tokens instead of hashed values, matching CWE-668's exposure pattern. The naming convention and vulnerability mechanism strongly point to the render
method in this specific ViewHelper
class being the vulnerable function.