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 applicationsUpgrade crossbeam
to version 0.4.1 or higher.
crossbeam is a package that provides a set of tools for concurrent programming.
Affected versions of this package are vulnerable to Double Free due to running element's destructor inside the epoch-based garbage collector.
Double free errors occur when free()
is called more than once with the same memory address as an argument.
Calling free()
twice on the same value can lead to memory leak. When a program calls free()
twice with the same argument, the program's memory management data structures become corrupted and could allow a malicious user to write values in arbitrary memory spaces. This corruption can cause the program to crash or, in some circumstances, alter the execution flow. By overwriting particular registers or memory spaces, an attacker can trick the program into executing code of his/her own choosing, often resulting in an interactive shell with elevated permissions.