CVE-2018-10366: User Plugin for October CSS Allows XSS
6.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.64232%
CWE
Published
5/14/2022
Updated
10/6/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| rainlab/user-plugin | composer | <= 1.4.5 | 1.5.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped output in the name field input. The patch replaced form_value('name') with user.name, which implies form_value() lacked built-in escaping. The commit message explicitly states 'form_value() doesn't use escaping', confirming it was the vulnerable function. The XSS occurs when user-supplied input from the name field is rendered without proper sanitization in the template.