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 linked-list-allocator
to version 0.10.2 or higher.
Affected versions of this package are vulnerable to Out-of-bounds Write when a heap is initialized with a size smaller than 3 * size_of::<usize>
because of metadata write operations.
Note: This vulnerability impacts all the initialization functions on the Heap
and LockedHeap
types, including Heap::new
, Heap::init
, Heap::init_from_slice
, and LockedHeap::new
. It also affects multiple uses of the Heap::extend
method.
Users who are not able to update to the fixed version should ensure that the heap is only initialized with a size larger than 3 * size_of::<usize>
and that the Heap::extend
method is only called with sizes larger than 2 * size_of::<usize>()
. Also, it is recommended to ensure that the total heap size is (and stays) a multiple of 2 * size_of::<usize>()
.