CVE-2022-37059: Subrion CMS 4.2.1 vulnerable to cross-site scripting in admin panel
4.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.26044%
CWE
Published
8/29/2022
Updated
1/27/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| intelliants/subrion | composer | <= 4.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The XSS occurs in the admin login field, indicating input from authentication forms is not properly sanitized before output. CMS admin controllers typically handle form processing and template rendering. The AdminController::login would process login attempts and potentially reflect input in error messages. The iaView::display function (common in MVC frameworks) would be responsible for final HTML generation - if it lacks contextual escaping for user-controlled data like login fields, XSS would occur. Confidence is high for the controller method due to the attack vector description, and medium for the view layer component as it's a common pattern though not explicitly confirmed.