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 applicationsThere is no fixed version for stackvector
.
Affected versions of this package are vulnerable to Out-of-Bounds. StackVec::extend
used the lower and upper bounds from an Iterator's size_hint
to determine how many items to push into the stack based vector.
If the size_hint
implementation returned a lower bound that was larger than the upper bound, StackVec
would write out of bounds and overwrite memory on the stack.
As mentioned by the size_hint documentation, size_hint
is mainly for optimization and incorrect implementations should not lead to memory safety issues.