Exploit maturity not defined.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsA fix was pushed into the master
branch but not yet published.
Affected versions of this package are vulnerable to Exposure of Resource to Wrong Sphere due to the default configuration of pmproxy
which exposes the Redis server backend to the local network. An attacker can execute commands remotely with the privileges of the Redis user by exploiting this configuration when pmproxy
is running. By default, pmproxy
is not running and needs to be started manually, usually from the 'Metrics settings' page of the Cockpit web interface.
Note:
This is only exploitable if pmproxy
is running.
This vulnerability can be mitigated by stopping and disabling the pmproxy.service
or disabling the Redis server backend via the pmproxy
configuration file. To stop and disable the pmproxy.service
, run the following command:
# systemctl disable --now pmproxy.service
To disable the Redis backend server via the pmproxy
configuration file:
# sed -i 's/redis.enabled = true/redis.enabled = false/g' /etc/pcp/pmproxy/pmproxy.conf
# systemctl restart pmproxy.service