CVE-2018-17366: Mingsoft MCMS CSRF vulnerability
8.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.35118%
CWE
Published
5/14/2022
Updated
10/6/2023
KEV Status
No
Technology
Java
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 |
---|---|---|---|
net.mingsoft:ms-mcms | maven | <= 4.6.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability explicitly references the /ms/basic/manager/save.do
endpoint as the attack vector for admin account creation. In Java web applications, this would typically map to a controller method handling POST requests. The absence of CSRF token validation
in this handler (common in Spring MVC/Struts controllers) would make it vulnerable. While the exact code isn't available, the endpoint structure and CSRF nature strongly indicate the controller method responsible for processing save.do
requests is missing CSRF protections.