CVE-2008-4104:
Joomla! Open Redirect vulnerability
5.8
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.00576%
CWE
Published
5/2/2022
Updated
2/19/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:N/I:P/A:P
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
joomla/framework | composer | >= 1.5.0, < 1.5.7 | 1.5.7 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability description explicitly references improper URL validation in redirect handling. Joomla's framework uses JResponse::redirect
for HTTP redirection. Prior to 1.5.7, this function lacked proper validation of the input URL, allowing external URLs to be injected via parameters like 'return'. The CWE-601 classification and references to 'passed in' URLs align with this function's role in processing redirects. The fix in 1.5.7 likely added JURI::isInternal()
validation, confirming this as the vulnerable point.