CVE-2023-3192: Froxlor Session Fixation vulnerability
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.29753%
CWE
Published
6/11/2023
Updated
11/5/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| froxlor/froxlor | composer | < 2.1.0 | 2.1.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing session_regenerate_id() calls in critical authentication/authorization flows. The GitHub patch shows these functions were modified to add session regeneration:
- finishLogin in index.php handles post-authentication session setup
- admin_customers.php handles user switching (su-action)
- admin_index.php handles session restoration from switched users Without session ID regeneration after these privilege-changing actions, attackers could fixate session identifiers before elevation. The direct addition of session_regenerate_id() in these locations in the patch confirms their vulnerable status.