Lucene search
+L

9239 matches found

OSV
OSV
added 2026/07/13 2:19 p.m.10 views

PYSEC-2026-3348 TensorFlow vulnerable to `CHECK` fail in `RaggedTensorToVariant`

Impact If RaggedTensorToVariant is given a rtnestedsplits list that contains tensors of ranks other than one, it results in a CHECK fail that can be used to trigger a denial of service attack. python import tensorflow as tf batchedinput = True rtnestedsplits = tf.constant0,32,64, shape=3,...

5.9CVSS6.9AI score0.00409EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/13 2:19 p.m.8 views

PYSEC-2026-3215 TensorFlow vulnerable to `CHECK` failure in `AvgPoolOp`

Impact The AvgPoolOp function takes an argument ksize that must be positive but is not checked. A negative ksize can trigger a CHECK failure and crash the program. python import tensorflow as tf import numpy as np value = np.ones1, 1, 1, 1 ksize = 1, 1e20, 1, 1 strides = 1, 1, 1, 1 padding = 'SAM...

5.9CVSS6.9AI score0.006EPSS
SaveExploits0References8
OSV
OSV
added 2026/07/13 2:19 p.m.7 views

PYSEC-2026-3149 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,...

5.9CVSS6.9AI score0.00423EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/13 2:19 p.m.9 views

PYSEC-2026-3128 TensorFlow segfault TFLite converter on per-channel quantized transposed convolutions

Impact When converting transposed convolutions using per-channel weight quantization the converter segfaults and crashes the Python process. python import tensorflow as tf class QuantConv2DTransposedtf.keras.layers.Layer: def buildself, inputshape: self.kernel = self.addweight"kernel", 3, 3,...

5.9CVSS6.1AI score0.00636EPSS
SaveExploits1References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.11 views

PT-2026-59990

Impact tf.raw ops.DynamicStitch specifies input sizes when it is registered. cpp REGISTER OP"DynamicStitch" .Input"indices: N int32" .Input"data: N T" .Output"merged: T" .Attr"N : int = 1" .Attr"T : type" .SetShapeFnDynamicStitchShapeFunction; When it receives a differing number of inputs, such a...

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

PT-2026-59876

Impact An input pooling ratio that is smaller than 1 will trigger a heap OOB in tf.raw ops.FractionalMaxPool and tf.raw ops.FractionalAvgPool. Patches We have patched the issue in GitHub commit 216525144ee7c910296f5b05d214ca1327c9ce48. The fix will be included in TensorFlow 2.11.0. We will also...

9.8CVSS7AI score0.00609EPSS
SaveExploits1References7
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.10 views

PT-2026-59782

Impact If FractionMaxPoolGrad is given outsize inputs row pooling sequence and col pooling sequence, TensorFlow will crash. python import tensorflow as tf tf.raw ops.FractionMaxPoolGrad orig input = 1, 1, 1, 1, 1, orig output = 1, 1, 1, out backprop = 3, 3, 6, row pooling sequence = -0x4000000, 1...

7.5CVSS6.9AI score0.00457EPSS
SaveExploits1References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.16 views

PT-2026-59710

Impact When tf.raw ops.ResizeNearestNeighborGrad is given a large size input, it overflows. import tensorflow as tf align corners = True half pixel centers = False grads = tf.constant1, shape=1,8,16,3, dtype=tf.float16 size = tf.constant1879048192,1879048192, shape=2, dtype=tf.int32 tf.raw...

7.5CVSS6.9AI score0.00457EPSS
SaveExploits1References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.18 views

PT-2026-59997

Impact An input pooling ratio that is smaller than 1 will trigger a heap OOB in tf.raw ops.FractionalMaxPool and tf.raw ops.FractionalAvgPool. Patches We have patched the issue in GitHub commit 216525144ee7c910296f5b05d214ca1327c9ce48. The fix will be included in TensorFlow 2.11.0. We will also...

9.8CVSS7AI score0.00609EPSS
SaveExploits1References7
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.12 views

PT-2026-59991

Impact DenseBincount assumes its input tensor weights to either have the same shape as its input tensor input or to be length-0. A different weights shape will trigger a CHECK fail that can be used to trigger a denial of service attack. python import tensorflow as tf binary output = True input =...

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

PT-2026-59736

Impact If tf.raw ops.TensorListResize is given a nonscalar value for input size, it results CHECK fail which can be used to trigger a denial of service attack. python import numpy as np import tensorflow as tf a = data structures.tf tensor list newelements = tf.constantvalue=3, 4, 5 b = np.zeros0...

7.5CVSS6.9AI score0.00456EPSS
SaveExploits1References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.34 views

PT-2026-59899

Impact If tf.raw ops.TensorListResize is given a nonscalar value for input size, it results CHECK fail which can be used to trigger a denial of service attack. python import numpy as np import tensorflow as tf a = data structures.tf tensor list newelements = tf.constantvalue=3, 4, 5 b = np.zeros0...

7.5CVSS6.9AI score0.00456EPSS
SaveExploits1References8
Positive Technologies
Positive Technologies
added 2026/07/13 12:00 a.m.18 views

PT-2026-59867

Impact DenseBincount assumes its input tensor weights to either have the same shape as its input tensor input or to be length-0. A different weights shape will trigger a CHECK fail that can be used to trigger a denial of service attack. python import tensorflow as tf binary output = True input =...

7.5CVSS6.9AI score0.00423EPSS
SaveExploits0References8
Wolfi
Wolfi
added 2026/07/11 2:16 a.m.47 views

CVE-2026-49851 vulnerabilities

Vulnerabilities for packages: jupyter-base-notebook, kubeflow-pipelines-visualization-server...

8.7CVSS7.2AI score0.0063EPSS
SaveExploits0
Wolfi
Wolfi
added 2026/07/11 2:16 a.m.47 views

GHSA-QCQ2-496W-V96P vulnerabilities

Vulnerabilities for packages: jupyter-base-notebook, kubeflow-pipelines-visualization-server...

5.9AI score
SaveExploits0
Chainguard
Chainguard
added 2026/07/10 8:22 p.m.34 views

GHSA-QCQ2-496W-V96P vulnerabilities

Vulnerabilities for packages: kubeflow-pipelines-visualization-server, tensorflow-cpu-jupyter, jupyter-base-notebook...

5.9AI score
SaveExploits0
Chainguard
Chainguard
added 2026/07/10 8:22 p.m.40 views

CVE-2026-49851 vulnerabilities

Vulnerabilities for packages: kubeflow-pipelines-visualization-server, tensorflow-cpu-jupyter, jupyter-base-notebook...

8.7CVSS7.2AI score0.0063EPSS
SaveExploits0
OSV
OSV
added 2026/07/09 4:49 p.m.7 views

PYSEC-2026-3226 TensorFlow vulnerable to OOB read in `Gather_nd` in TF Lite

Impact The GatherNd function takes arguments that determine the sizes of inputs and outputs. If the inputs given are greater than or equal to the sizes of the outputs, an out-of-bounds memory read is triggered. Patches We have patched the issue in GitHub commit...

7CVSS7AI score0.00471EPSS
SaveExploits0References8
OSV
OSV
added 2026/07/09 4:49 p.m.6 views

PYSEC-2026-3316 TensorFlow vulnerable to `CHECK` failure in tf.reshape via overflows

Impact The implementation of tf.reshape op in TensorFlow is vulnerable to a denial of service via CHECK-failure assertion failure caused by overflowing the number of elements in a tensor: python import tensorflow as tf tf.reshapetensor=1,shape=tf.constant0 for i in range255, dtype=tf.int64 This i...

5.9CVSS6.9AI score0.00423EPSS
SaveExploits0References7
OSV
OSV
added 2026/07/09 4:49 p.m.7 views

PYSEC-2026-3171 TensorFlow vulnerable to OOB write in `scatter_nd` in TF Lite

Impact The ScatterNd function takes an input argument that determines the indices of of the output tensor. An input index greater than the output tensor or less than zero will either write content at the wrong index or trigger a crash. Patches We have patched the issue in GitHub commit...

7CVSS7AI score0.00471EPSS
SaveExploits0References8
Rows per page
Query Builder