CVE-2018-18943: XSS in baserCMS before 4.1.4
4.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.56223%
CWE
Published
5/14/2022
Updated
7/7/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
baserproject/basercms | composer | < 4.1.4 | 4.1.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper neutralization of the category name input during web page generation. The blog post explicitly identifies UploaderCategoriesController.php
as the component processing the vulnerable parameter, and the CVE description confirms the attack vector targets the edit action (admin/uploader/uploader_categories/edit). In CakePHP MVC architecture, the controller's edit()
action would handle form submissions, and the absence of sanitization in this function matches the described XSS behavior.