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 tensorflow-gpu
to version 2.8.1, 2.9.0 or higher.
tensorflow-gpu is a machine learning framework.
Affected versions of this package are vulnerable to Heap-based Buffer Overflow. The TensorKey
hash function used total estimated AllocatedBytes()
, which (a)
is an estimate per tensor, and (b)
is a very poor hash function for constants (e.g. int32_t
). It also access individual tensor bytes through tensor.data()
of size AllocatedBytes()
. This behavior results in ASAN failures because the AllocatedBytes()
is an estimate of total bytes allocated by a tensor, including any pointed-to constructs (e.g. strings), and does not refer to contiguous bytes in the .data()
buffer.