CVE-2010-5097: TYPO3 Cross-site scripting (XSS) vulnerability in the click enlarge functionality
2.6
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.6989%
CWE
Published
5/17/2022
Updated
2/7/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
AV:N/AC:H/Au:N/C:N/I:P/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
typo3/cms-frontend | composer | >= 4.3.0, < 4.3.9 | 4.3.9 |
typo3/cms-frontend | composer | >= 4.4.0, < 4.4.5 | 4.4.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper input sanitization in the click-enlarge feature when caching is enabled. TYPO3's frontend content rendering pipeline (specifically image handling) is the primary suspect. The ImageContentObject::render
method is central to generating image markup, and ContentObjectRenderer::getImgResource
is a core utility for image processing. Both would interact with user-provided data (e.g., image parameters) that could inject XSS payloads. The lack of escaping before caching would persist the vulnerability. While exact code isn't provided, TYPO3's architecture and the described attack vector strongly implicate these functions.