GHSA-ppvg-hw62-6ph9: TYPO3 Security Misconfiguration in Install Tool Cookie
7.5
CVSS Score
3.1
Basic Information
CVE ID
-
GHSA ID
EPSS Score
-
CWE
Published
5/30/2024
Updated
5/30/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
typo3/cms-core | composer | >= 8.0.0, < 8.7.21 | 8.7.21 |
typo3/cms-core | composer | >= 9.0.0, < 9.5.2 | 9.5.2 |
typo3/cms-core | composer | >= 7.0.0, < 7.6.32 | 7.6.32 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing HttpOnly flag in Install Tool cookies. Session cookie handling in TYPO3's Install Tool is managed by SessionService
. The setSessionCookie
method would be responsible for setting cookie parameters. Since the advisory specifically mentions cookie hardening missing in Install Tool, and HttpOnly is a standard cookie security attribute, the absence of this flag in the cookie-setting function constitutes the vulnerability. This matches the CWE-1004 pattern and TYPO3's component structure.