CVE-2020-10236: Froxlor Information Disclosure
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.34842%
CWE
Published
5/24/2022
Updated
4/25/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
froxlor/froxlor | composer | < 0.10.14 | 0.10.14 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the _createUserdataConf
function's original implementation that used a hardcoded temporary filename
. The GitHub patch shows this function was modified to use tempnam()
for unpredictable filenames
, directly addressing CWE-20 (Improper Input Validation) by removing static path reliance. The vulnerability description explicitly mentions this function as the root cause, and the commit diff confirms the insecure pattern was present in this function's code path.