CVE-2022-36107:
TYPO3 CMS Stored Cross-Site Scripting via FileDumpController
5.4
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
9/16/2022
Updated
1/27/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
typo3/cms-core | composer | >= 7.0.0, < 7.6.58 | 7.6.58 |
typo3/cms-core | composer | >= 8.0.0, < 8.7.48 | 8.7.48 |
typo3/cms-core | composer | >= 9.0.0, < 9.5.37 | 9.5.37 |
typo3/cms-core | composer | >= 10.0.0, < 10.4.32 | 10.4.32 |
typo3/cms-core | composer | >= 11.0.0, < 11.5.16 | 11.5.16 |
typo3/cms | composer | >= 10.0.0, < 10.4.32 | 10.4.32 |
typo3/cms | composer | >= 11.0.0, < 11.5.16 | 11.5.16 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from FileDumpController serving files without adequate XSS protections. The commit diff shows critical CSP-related modifications:- Return statements were modified to wrap responses with applyContentSecurityPolicy- A new CSP enforcement method was added- Without these changes, malicious files could trigger XSS via script execution in browser contexts. The dumpAction method is the primary entry point for file serving and was missing CSP headers before the patch.