CVE-2017-15279:
Umbraco CMS vulnerable to stored XSS
5.4
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.41874%
CWE
Published
5/17/2022
Updated
10/24/2023
KEV Status
No
Technology
C#
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 |
---|---|---|---|
UmbracoCMS.Web | nuget | < 7.7.3 | 7.7.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing HTML encoding in two key UI rendering flows. The commit fe2b86b explicitly adds Server.HtmlEncode() to both locations:
- In Publish.aspx.cs, the page name (doc.Name) was displayed raw during publishing operations
- In notifications.aspx.cs, node names (node.Text) were rendered unencoded in admin notifications Both locations directly output user-controlled node names without sanitization, creating stored XSS vectors. The high confidence comes from the clear before/after contrast in the patches and the CWE-79 classification matching the unencoded web output pattern.