CVE-2020-15883:
MunkiReport Managed Installs module Reflected Cross-Site Scripting (XSS) vulnerability
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.66248%
CWE
Published
5/24/2022
Updated
11/15/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
munkireport/managedinstalls | composer | < 2.6 | 2.6 |
munkireport/munkireport | composer | >= 2.5.3, < 5.6.3 | 5.6.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper handling of URL parameters in the Managedinstalls module. The commit diff shows the vulnerable version used rawurldecode()
on the parameters and passed them to the view, while the patched version introduced addslashes()
and decodeURIComponent()
to mitigate XSS. The listing function in managedinstalls_controller.php
directly processes these untrusted inputs, making it the entry point for the vulnerability. The JavaScript changes further indicate the parameters were used in DOM contexts requiring proper escaping, which was missing in the vulnerable version.