Lucene search
+L

114 matches found

OSV
OSV
added 2021/05/21 2:23 p.m.26 views

GHSA-XGC3-M89P-VR3X Heap buffer overflow in `Conv2DBackpropFilter`

Impact An attacker can cause a heap buffer overflow to occur in Conv2DBackpropFilter: python import tensorflow as tf inputtensor = tf.constant386.078431372549, 386.07843139643234, shape=1, 1, 1, 2, dtype=tf.float32 filtersizes = tf.constant1, 1, 1, 1, shape=4, dtype=tf.int32 outbackprop =...

2.5CVSS7.2AI score0.00215EPSS
SaveExploits1References7
OSV
OSV
added 2021/05/21 2:23 p.m.1 views

GHSA-G4H2-GQM3-C9WQ Segfault in tf.raw_ops.ImmutableConst

Impact Calling tf.rawops.ImmutableConst with a dtype of tf.resource or tf.variant results in a segfault in the implementation as code assumes that the tensor contents are pure scalars. python import tensorflow as tf tf.rawops.ImmutableConstdtype=tf.resource, shape=, memoryregionname="/tmp/test.tx...

2.5CVSS6.2AI score0.00189EPSS
SaveExploits1References7
OSV
OSV
added 2021/05/21 2:22 p.m.4 views

GHSA-3QXP-QJQ7-W4HF CHECK-fail in tf.raw_ops.EncodePng

Impact An attacker can trigger a CHECK fail in PNG encoding by providing an empty input tensor as the pixel data: python import tensorflow as tf image = tf.zeros0, 0, 3 image = tf.castimage, dtype=tf.uint8 tf.rawops.EncodePngimage=image This is because the implementation only validates that the...

2.5CVSS6.2AI score0.00189EPSS
SaveExploits1References7
OSV
OSV
added 2021/05/21 2:21 p.m.55 views

GHSA-WCV5-QRJ6-9PFM Heap buffer overflow in `Conv3DBackprop*`

Impact Missing validation between arguments to tf.rawops.Conv3DBackprop operations can result in heap buffer overflows: python import tensorflow as tf inputsizes = tf.constant1, 1, 1, 1, 2, shape=5, dtype=tf.int32 filtertensor = tf.constant734.6274508233133, -10.0, -10.0, -10.0, -10.0, -10.0,...

2.5CVSS7.1AI score0.00224EPSS
SaveExploits1References7
OSV
OSV
added 2021/05/21 2:20 p.m.19 views

GHSA-84MW-34W6-2Q43 Null pointer dereference via invalid Ragged Tensors

Impact Calling tf.rawops.RaggedTensorToVariant with arguments specifying an invalid ragged tensor results in a null pointer dereference: python import tensorflow as tf inputtensor = tf.constant, shape=0, 0, 0, 0, 0, dtype=tf.float32 filtertensor = tf.constant, shape=0, 0, 0, 0, 0, dtype=tf.float3...

2.5CVSS6AI score0.00198EPSS
SaveExploits1References6
PyPA
PyPA
added 2021/05/14 8:15 p.m.7 views

PYSEC-2021-229

TensorFlow is an end-to-end open source platform for machine learning. The fix for CVE-2020-15209https://vulners.com/cve/CVE-2020-15209 missed the case when the target shape of Reshape operator is given by the elements of a 1-D tensor. As such, the fix for the...

7.8CVSS6.9AI score0.008EPSS
SaveExploits2References2Affected Software1
ATTACKERKB
ATTACKERKB
added 2021/05/14 8:15 p.m.4 views

CVE-2021-29551

TensorFlow is an end-to-end open source platform for machine learning. The implementation of MatrixTriangularSolvehttps://github.com/tensorflow/tensorflow/blob/8cae746d8449c7dda5298327353d68613f16e798/tensorflow/core/kernels/linalg/matrixtriangularsolveopimpl.hL160-L240 fails to terminate kernel...

5.5CVSS6.3AI score0.00217EPSS
SaveExploits1References3Affected Software1
PyPA
PyPA
added 2021/05/14 8:15 p.m.13 views

PYSEC-2021-202

TensorFlow is an end-to-end open source platform for machine learning. An attacker can trigger a null pointer dereference in the implementation of tf.rawops.SparseFillEmptyRows. This is because of missing...

5.5CVSS6.9AI score0.00189EPSS
SaveExploits1References2Affected Software1
PyPA
PyPA
added 2021/05/14 8:15 p.m.11 views

PYSEC-2021-457

TensorFlow is an end-to-end open source platform for machine learning. An attacker can trigger a heap buffer overflow in tf.rawops.QuantizedResizeBilinear by manipulating input values so that float rounding results in off-by-one error in accessing image elements. This is because the...

7.8CVSS7.6AI score0.00251EPSS
SaveExploits1References2Affected Software1
OSV
OSV
added 2020/12/10 7:7 p.m.11 views

GHSA-M648-33QF-V3GP CHECK-fail in LSTM with zero-length input in TensorFlow

Impact Running an LSTM/GRU model where the LSTM/GRU layer receives an input with zero-length results in a CHECK failure when using the CUDA backend. This can result in a query-of-death vulnerability, via denial of service, if users can control the input to the layer. Patches We have patched the...

4.8CVSS5.9AI score0.00171EPSS
SaveExploits0References7
OSV
OSV
added 2020/12/10 7:7 p.m.9 views

GHSA-QHXX-J73R-QPM2 Uninitialized memory access in TensorFlow

Impact Under certain cases, a saved model can trigger use of uninitialized values during code execution. This is caused by having tensor buffers be filled with the default value of the type but forgetting to default initialize the quantized floating point types in Eigen: cc struct QUInt8 QUInt8 /...

4.8CVSS6.1AI score0.00251EPSS
SaveExploits1References7
OSV
OSV
added 2020/09/25 6:28 p.m.10 views

GHSA-P5F8-GFW5-33W4 Heap buffer overflow in Tensorflow

Impact The RaggedCountSparseOutput implementation does not validate that the input arguments form a valid ragged tensor. In particular, there is no validation that the values in the splits tensor generate a valid partitioning of the values tensor. Hence, this code is prone to heap buffer overflow...

6.3CVSS6AI score0.00568EPSS
SaveExploits1References8
OSV
OSV
added 2020/09/25 6:28 p.m.6 views

GHSA-63XM-RX5P-XVQR Heap buffer overflow in Tensorflow

Impact The implementation of SparseFillEmptyRowsGrad uses a double indexing pattern: https://github.com/tensorflow/tensorflow/blob/0e68f4d3295eb0281a517c3662f6698992b7b2cf/tensorflow/core/kernels/sparsefillemptyrowsop.ccL263-L269 It is possible for reverseindexmapi to be an index outside of bound...

8.5CVSS7.1AI score0.0095EPSS
SaveExploits1References9
OSV
OSV
added 2020/09/25 6:28 p.m.11 views

GHSA-X5CP-9PCF-PP3H Denial of Service in Tensorflow

Impact The RaggedCountSparseOutput does not validate that the input arguments form a valid ragged tensor. In particular, there is no validation that the splits tensor has the minimum required number of elements. Code uses this quantity to initialize a different data structure:...

8.2CVSS6.3AI score0.00812EPSS
SaveExploits1References8
Rows per page
Query Builder