CVE-2018-16704: Gleez CMS Vulnerability Allows Forced Browsing to Profile Page of Other Users
4.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.36939%
CWE
Published
5/13/2022
Updated
4/25/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
gleez/cms | composer | <= 1.2.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability manifests in profile viewing functionality where user-controlled ID parameters (e.g., /user/3) are used to retrieve user records. In MVC frameworks like Kohana (which Gleez CMS uses), this would typically map to a view action in the User
controller. The lack of authorization checks before displaying sensitive profile information matches the IDOR pattern described. The high confidence comes from: 1) The URL structure matching common MVC routing patterns 2) The vulnerability's direct relationship to profile viewing functionality 3) The CWE-639
classification indicating missing authorization on user-controlled keys 4) The reproduction steps showing direct parameter manipulation in the URL path.