CVE-2017-11127: Bolt CMS Stored XSS
5.4
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.43188%
CWE
Published
5/17/2022
Updated
10/31/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
bolt/bolt | composer | <= 3.2.14 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper input sanitization during SVG file uploads. Bolt CMS validates the MIME type ('image/svg+xml') but does not inspect or sanitize the SVG's XML content. The FileUploadController
's upload()
method is the logical entry point for handling file uploads, where content validation should occur. Since the attack requires only a valid Content-Type header and malicious SVG content, the absence of XML/script sanitization in this handler directly enables the stored XSS vulnerability.