Lucene search
+L

32 matches found

PyPA
PyPA
added 2026/07/13 2:19 p.m.24 views

TensorFlow vulnerable to `CHECK` fail in `QuantizeAndDequantizeV3`

ImpactIf QuantizeAndDequantizeV3 is given a nonscalar numbits input tensor, it results in a CHECK fail that can be used to trigger a denial of service attack.pythonimport tensorflow as tfsignedinput = Truerangegiven = Falsenarrowrange = Falseaxis = -1input = tf.constant-3.5, shape=1,...

7.5CVSS6.9AI score0.00478EPSS
SaveExploits0References7Affected Software1
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.15 views

PT-2026-59974

Impact The implementation of Conv2DBackpropInput requires input sizes to be 4-dimensional. Otherwise, it gives a CHECK failure which can be used to trigger a denial of service attack: python import tensorflow as tf strides = 1, 1, 1, 1 padding = "SAME" use cudnn on gpu = True explicit paddings =...

7.5CVSS6.9AI score0.00462EPSS
SaveExploits0References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.21 views

PT-2026-59878

Impact The implementation of AvgPoolGrad does not fully validate the input orig input shape. This results in a CHECK failure which can be used to trigger a denial of service attack: python import tensorflow as tf ksize = 1, 2, 2, 1 strides = 1, 2, 2, 1 padding = "VALID" data format = "NHWC" orig...

7.5CVSS6.9AI score0.00478EPSS
SaveExploits0References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.19 views

PT-2026-59860

Impact If QuantizedRelu or QuantizedRelu6 are given nonscalar inputs for min features or max features, it results in a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf out type = tf.quint8 features = tf.constant28, shape=4,2, dtype=tf.quint8 min...

7.5CVSS6.9AI score0.0051EPSS
SaveExploits0References8
PyPA
PyPA
added 2026/07/07 10:17 a.m.21 views

TensorFlow vulnerable to segfault in `Requantize`

ImpactIf Requantize is given inputmin, inputmax, requestedoutputmin, requestedoutputmax tensors of a nonzero rank, it results in a segfault that can be used to trigger a denial of service attack.pythonimport tensorflow as tfouttype = tf.quint8input = tf.constant1, shape=3, dtype=tf.qint32inputmin...

7.5CVSS7AI score0.0051EPSS
SaveExploits0References7Affected Software1
OSV
OSV
added 2026/07/06 8:03 a.m.13 views

PYSEC-2026-1004 Missing validation causes denial of service via `DeleteSessionTensor`

Impact The implementation of tf.rawops.DeleteSessionTensor does not fully validate the input arguments. This results in a CHECK-failure which can be used to trigger a denial of service attack: python import tensorflow as tf handle = tf.constant"", shape=0, dtype=tf.string...

5.5CVSS5.9AI score0.00328EPSS
SaveExploits1References11
Github Security Blog
Github Security Blog
added 2022/11/21 8:40 p.m.28 views

Overflow in `ImageProjectiveTransformV2`

Impact When tf.rawops.ImageProjectiveTransformV2 is given a large output shape, it overflows. python import tensorflow as tf interpolation = "BILINEAR" fillmode = "REFLECT" images = tf.constant0.184634328, shape=2,5,8,3, dtype=tf.float32 transforms = tf.constant0.378575385, shape=2,8,...

7.5CVSS7.5AI score0.00463EPSS
SaveExploits1References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:26 p.m.40 views

TensorFlow vulnerable to `CHECK` fail in `FractionalMaxPoolGrad`

Impact FractionalMaxPoolGrad validates its inputs with CHECK failures instead of with returning errors. If it gets incorrectly sized inputs, the CHECK failure can be used to trigger a denial of service attack: python import tensorflow as tf overlapping = True originput = tf.constant.453409232,...

7.5CVSS7.4AI score0.00478EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:26 p.m.36 views

TensorFlow vulnerable to segfault in `QuantizedRelu` and `QuantizedRelu6`

Impact If QuantizedRelu or QuantizedRelu6 are given nonscalar inputs for minfeatures or maxfeatures, it results in a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf outtype = tf.quint8 features = tf.constant28, shape=4,2, dtype=tf.quint8 minfeatures...

7.5CVSS7.5AI score0.0051EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:23 p.m.44 views

TensorFlow vulnerable to segfault in `QuantizeDownAndShrinkRange`

Impact If QuantizeDownAndShrinkRange is given nonscalar inputs for inputmin or inputmax, it results in a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf outtype = tf.quint8 input = tf.constant1, shape=3, dtype=tf.qint32 inputmin = tf.constant,...

7.5CVSS7.5AI score0.0051EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:22 p.m.38 views

TensorFlow vulnerable to segfault in `QuantizedMatMul`

Impact If QuantizedMatMul is given nonscalar input for: - mina - maxa - minb - maxb It gives a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf Toutput = tf.qint32 transposea = False transposeb = False Tactivation = tf.quint8 a = tf.constant7,...

7.5CVSS7.4AI score0.0051EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:20 p.m.49 views

TensorFlow vulnerable to segfault in `QuantizedBiasAdd`

Impact If QuantizedBiasAdd is given mininput, maxinput, minbias, maxbias tensors of a nonzero rank, it results in a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf outtype = tf.qint32 input = tf.constant85,170,255, shape=3, dtype=tf.quint8 bias =...

7.5CVSS7.2AI score0.00493EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:20 p.m.41 views

TensorFlow vulnerable to `CHECK` fail in `FakeQuantWithMinMaxVars`

Impact If FakeQuantWithMinMaxVars is given min or max tensors of a nonzero rank, it results in a CHECK fail that can be used to trigger a denial of service attack. python import tensorflow as tf numbits = 8 narrowrange = False inputs = tf.constant0, shape=2,3, dtype=tf.float32 min = tf.constant0,...

7.5CVSS7.5AI score0.00462EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:17 p.m.33 views

TensorFlow vulnerable to segfault in `QuantizedInstanceNorm`

Impact If QuantizedInstanceNorm is given xmin or xmax tensors of a nonzero rank, it results in a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf outputrangegiven = False givenymin = 0 givenymax = 0 varianceepsilon = 1e-05 minseparation = 0.001 x =...

7.5CVSS7.5AI score0.0051EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:17 p.m.46 views

TensorFlow vulnerable to `CHECK` fail in `Conv2DBackpropInput`

Impact The implementation of Conv2DBackpropInput requires inputsizes to be 4-dimensional. Otherwise, it gives a CHECK failure which can be used to trigger a denial of service attack: python import tensorflow as tf strides = 1, 1, 1, 1 padding = "SAME" usecudnnongpu = True explicitpaddings =...

7.5CVSS7.4AI score0.00462EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:16 p.m.44 views

TensorFlow vulnerable to `CHECK` fail in `AvgPoolGrad`

Impact The implementation of AvgPoolGrad does not fully validate the input originputshape. This results in a CHECK failure which can be used to trigger a denial of service attack: python import tensorflow as tf ksize = 1, 2, 2, 1 strides = 1, 2, 2, 1 padding = "VALID" dataformat = "NHWC"...

7.5CVSS7.4AI score0.00478EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:14 p.m.47 views

TensorFlow vulnerable to segfault in `LowerBound` and `UpperBound`

Impact If LowerBound or UpperBound is given an emptysortedinputs input, it results in a nullptr dereference, leading to a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf outtype = tf.int32 sortedinputs = tf.constant, shape=10,0, dtype=tf.float32...

7.5CVSS7.5AI score0.00462EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:11 p.m.52 views

TensorFlow vulnerable to `CHECK` failures in `AvgPool3DGrad`

Impact The implementation of AvgPool3DGradOp does not fully validate the input originputshape. This results in an overflow that results in a CHECK failure which can be used to trigger a denial of service attack: python import tensorflow as tf ksize = 1, 1, 1, 1, 1 strides = 1, 1, 1, 1, 1 padding ...

7.5CVSS7.6AI score0.00462EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:57 p.m.44 views

TensorFlow vulnerable to segfault in `Requantize`

Impact If Requantize is given inputmin, inputmax, requestedoutputmin, requestedoutputmax tensors of a nonzero rank, it results in a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf outtype = tf.quint8 input = tf.constant1, shape=3, dtype=tf.qint32...

7.5CVSS7.4AI score0.0051EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:15 p.m.105 views

TensorFlow vulnerable to `CHECK` fail in `QuantizeAndDequantizeV3`

Impact If QuantizeAndDequantizeV3 is given a nonscalar numbits input tensor, it results in a CHECK fail that can be used to trigger a denial of service attack. python import tensorflow as tf signedinput = True rangegiven = False narrowrange = False axis = -1 input = tf.constant-3.5, shape=1,...

7.5CVSS7.4AI score0.00478EPSS
SaveExploits0References5Affected Software3
Rows per page
Query Builder