CVE-2020-10374 Overview
A critical remote command execution vulnerability exists in Paessler PRTG Network Monitor versions 19.2.50 through 20.1.56. The vulnerability resides in a webserver component that allows unauthenticated attackers to execute arbitrary commands on the target system via a specially crafted POST request or through manipulation of the what parameter in the screenshot function within the Contact Support form.
Critical Impact
Unauthenticated remote command execution allows attackers to gain complete control over PRTG Network Monitor servers without requiring any credentials, potentially compromising entire network monitoring infrastructure.
Affected Products
- Paessler PRTG Network Monitor versions 19.2.50 to 20.1.56
Discovery Timeline
- 2020-03-30 - CVE-2020-10374 published to NVD
- 2024-11-21 - Last updated in NVD database
Technical Details for CVE-2020-10374
Vulnerability Analysis
This vulnerability is classified as CWE-20 (Improper Input Validation). The webserver component in PRTG Network Monitor fails to properly validate and sanitize user-supplied input before processing it. Specifically, the Contact Support form's screenshot functionality does not adequately validate the what parameter, allowing attackers to inject operating system commands that are executed with the privileges of the PRTG service.
The attack surface is particularly dangerous because the vulnerability can be exploited by unauthenticated remote attackers over the network. No user interaction is required, and successful exploitation results in complete compromise of the system's confidentiality, integrity, and availability.
Root Cause
The root cause is improper input validation in the webserver component handling the Contact Support form. The application fails to sanitize the what parameter used in the screenshot function, allowing command injection. User-supplied data is passed directly to system command execution routines without proper escaping or validation, enabling arbitrary command execution.
Attack Vector
The attack is conducted over the network and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending a maliciously crafted POST request to the vulnerable endpoint, or by manipulating the what parameter in the screenshot function of the Contact Support form. The injected commands are then executed by the underlying operating system with the same privileges as the PRTG service, which typically runs with elevated permissions.
The vulnerability can be exploited through either:
- A crafted POST request containing malicious payloads
- Manipulation of the what parameter in the Contact Support form's screenshot functionality
Technical details and proof-of-concept information can be found in the Tehtris RCE PenTest Report.
Detection Methods for CVE-2020-10374
Indicators of Compromise
- Suspicious POST requests to the PRTG Contact Support form endpoints
- Unusual command execution originating from the PRTG server process
- Unexpected child processes spawned by the PRTG Network Monitor service
- Web server logs showing malformed or suspicious what parameter values in screenshot-related requests
Detection Strategies
- Monitor web server access logs for POST requests containing command injection patterns targeting Contact Support endpoints
- Implement network intrusion detection rules to identify exploitation attempts targeting PRTG's webserver component
- Deploy endpoint detection to identify suspicious process execution chains originating from the PRTG service
- Review authentication logs for any unauthorized access attempts to the PRTG administrative interface
Monitoring Recommendations
- Enable detailed logging on PRTG Network Monitor and forward logs to a centralized SIEM solution
- Monitor for any unauthorized modifications to PRTG configuration files or system binaries
- Implement alerting for any command execution from the PRTG service that deviates from normal operational patterns
- Continuously monitor outbound network connections from the PRTG server for potential command-and-control traffic
How to Mitigate CVE-2020-10374
Immediate Actions Required
- Upgrade PRTG Network Monitor to version 20.1.57.1745 or later immediately
- If immediate patching is not possible, implement temporary mitigations as detailed in Paessler's guidance
- Restrict network access to the PRTG web interface to trusted IP addresses only
- Review server logs for any signs of prior exploitation attempts
Patch Information
Paessler has released a security patch addressing this vulnerability in PRTG Network Monitor version 20.1.57.1745. Organizations should update to this version or later to remediate the vulnerability. The Paessler PRTG Release History provides details on the patched version. For environments where immediate patching is not feasible, Paessler provides mitigation guidance to reduce risk.
Workarounds
- Restrict access to the PRTG web interface by implementing firewall rules that only allow connections from trusted management networks
- Disable or restrict access to the Contact Support functionality if not operationally required
- Place the PRTG Network Monitor server behind a reverse proxy with web application firewall (WAF) capabilities to filter malicious requests
- Implement network segmentation to limit the potential impact of a successful compromise
# Example: Restrict PRTG web interface access using Windows Firewall
# Allow access only from trusted management subnet
netsh advfirewall firewall add rule name="PRTG Web Access - Trusted Only" dir=in action=allow protocol=TCP localport=443 remoteip=192.168.1.0/24
netsh advfirewall firewall add rule name="PRTG Block External Web Access" dir=in action=block protocol=TCP localport=443 remoteip=any
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


