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 applicationsLearn about Incorrect Authorization vulnerabilities in an interactive lesson.
Start learningUpgrade zincati
to version 0.0.30 or higher.
zincati is an auto-update agent for Fedora CoreOS hosts
Affected versions of this package are vulnerable to Incorrect Authorization in a polkit rule, which grants org.projectatomic.rpmostree1.deploy
and org.projectatomic.rpmostree1.finalize-deployment
to all users and not only the system user as intended. A user with access to the system D-Bus socket may use this to perform a download attack on the target OS.
This incorrect privilege assignment can be preempted by adding an earlier rule containing
polkit.addRule(function(action, subject) {
if (action.id == "org.projectatomic.rpmostree1.deploy" ||
action.id == "org.projectatomic.rpmostree1.finalize-deployment" ||
action.id == "org.projectatomic.rpmostree1.cleanup") {
if (subject.user != "zincati") {
return polkit.Result.NO;
}
}
});