CVE-2018-9108: QuickAppsCMS Cross-Site Request Forgery (CSRF)
8.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.43027%
CWE
Published
5/14/2022
Updated
4/23/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
quickapps/cms | composer | = 2.0.0-beta2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability manifests in the user creation endpoint's handler function. The provided PoC demonstrates successful admin account creation via a simple POST request without CSRF tokens. In MVC architectures, this would correspond to a controller action (likely add()
in UserManageController
) that failed to implement CSRF protection decorators/annotations or token validation checks before processing sensitive user creation operations.