CVE-2024-13209: Stored XSS in REDAXO
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.15123%
CWE
Published
2/10/2025
Updated
2/10/2025
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 |
|---|---|---|---|
| redaxo/source | composer | >= 5.12.0-beta1, <= 5.18.1 | 5.18.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the article name field value being used in HTML output without proper escaping. The commit shows:
- A @psalm-taint-source annotation was added to getName(), marking it as an input source requiring sanitization
- The actual XSS occurred in content.php where $OOArt->getName() was used in rex_view::title() without escaping
- The fix added rex_escape() around the getName() call in content.php
While the direct vulnerable usage is in content.php, the root cause function is getName() in structure_element.php as it provides raw user-controlled data to output contexts. The high confidence comes from the commit explicitly marking getName() as a taint source and the XSS proof-of-concept demonstrating its unescaped usage.