Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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.7.2, 2.8.1, 2.9.1 or higher.
tensorflow-gpu is a machine learning framework.
Affected versions of this package are vulnerable to Integer Overflow or Wraparound. The RaggedRangOp
function takes an argument limits
that is eventually used to construct a TensorShape
as an int64
. If limits
is a very large float, it can overflow when converted to an int64
. This triggers an InvalidArgument
but also throws an abort signal that crashes the program.
import tensorflow as tf
tf.raw_ops.RaggedRange(starts=[1.1,0.1],limits=[10.0,1e20],deltas=[1,1])