CVE-2010-3671: TYPO3 is vulnerable to Session Fixation
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.74908%
CWE
Published
4/21/2022
Updated
2/7/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
typo3/cms-install | composer | < 4.1.14 | 4.1.14 |
typo3/cms-install | composer | >= 4.2.0, < 4.2.13 | 4.2.13 |
typo3/cms-install | composer | >= 4.3.0, < 4.3.4 | 4.3.4 |
typo3/cms-install | composer | >= 4.4.0, < 4.4.1 | 4.4.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from the install tool's session management not regenerating session IDs during critical phases. Commit 199cc2d and related patches show modifications to startSession() and setAuthorized() where session_regenerate_id() equivalent (renewSession()) was added. These functions were vulnerable because they previously reused existing session IDs during authentication, allowing fixation. The direct correlation between the CWE-384 description and the patched functions confirms their role in the vulnerability.