CVE-2019-11401: SiteServer CMS RCE via unsafe file upload
7.2
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.84526%
CWE
Published
5/24/2022
Updated
8/25/2023
KEV Status
No
Technology
C#
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
sscms | nuget | < 6.12 | 6.12 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
Both functions use StringUtils.ReplaceIgnoreCase
to remove 'as' substrings from filenames
without proper validation. This allows crafted extensions like '.aassp' to become '.asp' after processing. The GitHub
issue explicitly references these functions, and the patch (changing to PathUtils.GetSafeFilename
) confirms the vulnerability. The CWE-434
mapping further supports the unsafe file upload mechanism.