Lucene search
+L

9211 matches found

Github Security Blog
Github Security Blog
added 2022/02/09 11:43 p.m.36 views

Undefined behavior in `SparseTensorSliceDataset`

Impact The implementation of SparseTensorSliceDataset has an undefined behavior: under certain condition it can be made to dereference a nullptr value: python import tensorflow as tf import numpy as np tf.rawops.SparseTensorSliceDataset indices=, values=, denseshape=1,1 The 3 input arguments...

7.6CVSS1.7AI score0.00746EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:39 p.m.70 views

Integer overflows in Tensorflow

Impact The implementations of SparseCwise ops are vulnerable to integer overflows. These can be used to trigger large allocations so, OOM based denial of service or CHECK-fails when building new TensorShape objects so, assert failures based denial of service: python import tensorflow as tf import...

6.5CVSS3AI score0.01097EPSS
SaveExploits1References9Affected Software3
OSV
OSV
added 2022/02/09 11:39 p.m.9 views

GHSA-RRX2-R989-2C43 Integer overflows in Tensorflow

Impact The implementations of SparseCwise ops are vulnerable to integer overflows. These can be used to trigger large allocations so, OOM based denial of service or CHECK-fails when building new TensorShape objects so, assert failures based denial of service: python import tensorflow as tf import...

7.1CVSS5.8AI score0.01097EPSS
SaveExploits1References9
OSV
OSV
added 2022/02/09 11:39 p.m.28 views

GHSA-6445-FM66-FVQ2 Integer overflows in Tensorflow

Impact The implementation of AddManySparseToTensorsMap is vulnerable to an integer overflow which results in a CHECK-fail when building new TensorShape objects so, an assert failure based denial of service: python import tensorflow as tf import numpy as np tf.rawops.AddManySparseToTensorsMap...

7.1CVSS6AI score0.008EPSS
SaveExploits1References8
Github Security Blog
Github Security Blog
added 2022/02/09 11:39 p.m.47 views

Integer overflows in Tensorflow

Impact The implementation of AddManySparseToTensorsMap is vulnerable to an integer overflow which results in a CHECK-fail when building new TensorShape objects so, an assert failure based denial of service: python import tensorflow as tf import numpy as np tf.rawops.AddManySparseToTensorsMap...

6.5CVSS2.3AI score0.008EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:38 p.m.42 views

`CHECK`-fails when building invalid tensor shapes in Tensorflow

Impact Multiple operations in TensorFlow can be used to trigger a denial of service via CHECK-fails i.e., assertion failures. This is similar to TFSA-2021-198 CVE-2021-41197 and has similar fixes. Patches We have patched the reported issues in multiple GitHub commits. It is possible that other...

6.5CVSS1.6AI score0.00458EPSS
SaveExploits0References6Affected Software3
OSV
OSV
added 2022/02/09 11:38 p.m.10 views

GHSA-QJ5R-F9MV-RFFH `CHECK`-fails when building invalid tensor shapes in Tensorflow

Impact Multiple operations in TensorFlow can be used to trigger a denial of service via CHECK-fails i.e., assertion failures. This is similar to TFSA-2021-198 CVE-2021-41197 and has similar fixes. Patches We have patched the reported issues in multiple GitHub commits. It is possible that other...

7.1CVSS6.4AI score0.00458EPSS
SaveExploits0References6
OSV
OSV
added 2022/02/09 11:38 p.m.13 views

GHSA-H6GW-R52C-724R NULL Pointer Dereference and Access of Uninitialized Pointer in TensorFlow

Impact The code for boosted trees in TensorFlow is still missing validation. This allows malicious users to read and write outside of bounds of heap allocated data as well as trigger denial of service via dereferencing nullptrs or via CHECK-failures. This follows after CVE-2021-41208 where these...

9.3CVSS7AI score
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2022/02/09 11:38 p.m.71 views

NULL Pointer Dereference and Access of Uninitialized Pointer in TensorFlow

Impact The code for boosted trees in TensorFlow is still missing validation. This allows malicious users to read and write outside of bounds of heap allocated data as well as trigger denial of service via dereferencing nullptrs or via CHECK-failures. This follows after CVE-2021-41208 where these...

8.8CVSS1.6AI score0.00168EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:37 p.m.44 views

Improper Validation of Integrity Check Value in TensorFlow

Impact The implementation of tf.sparse.split does not fully validate the input arguments. Hence, a malicious user can trigger a denial of service via a segfault or a heap OOB read: python import tensorflow as tf data = tf.random.uniform1, 32, 32, dtype=tf.float32 axis = 1, 2 x =...

7.8CVSS2.1AI score0.00174EPSS
SaveExploits0References5Affected Software3
OSV
OSV
added 2022/02/09 11:34 p.m.19 views

GHSA-WCV5-VRVR-3RX2 Integer Overflow or Wraparound in TensorFlow

Impact The Grappler component of TensorFlow is vulnerable to a denial of service via CHECK-failure assertion failure in constant folding: cc for const auto& outputprop : outputprops const PartialTensorShape outputshapeoutputprop.shape; // ... The outputprop tensor has a shape that is controlled b...

5.5CVSS6.1AI score
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2022/02/09 11:34 p.m.35 views

Integer Overflow or Wraparound in TensorFlow

Impact The Grappler component of TensorFlow is vulnerable to a denial of service via CHECK-failure assertion failure in constant folding: cc for const auto& outputprop : outputprops const PartialTensorShape outputshapeoutputprop.shape; // ... The outputprop tensor has a shape that is controlled b...

5.5CVSS4.1AI score0.00307EPSS
SaveExploits1References4Affected Software3
OSV
OSV
added 2022/02/09 11:33 p.m.10 views

GHSA-9P77-MMRW-69C7 Null-dereference in Tensorflow

Impact When decoding a tensor from protobuf, TensorFlow might do a null-dereference if attributes of some mutable arguments to some operations are missing from the proto. This is guarded by a DCHECK: cc const auto attr = attrs.Findarg-s; DCHECKattr != nullptr; if attr-valuecase == AttrValue::kLis...

7.1CVSS6.8AI score0.00992EPSS
SaveExploits1References7
Github Security Blog
Github Security Blog
added 2022/02/09 11:33 p.m.44 views

Null-dereference in Tensorflow

Impact When decoding a tensor from protobuf, TensorFlow might do a null-dereference if attributes of some mutable arguments to some operations are missing from the proto. This is guarded by a DCHECK: cc const auto attr = attrs.Findarg-s; DCHECKattr != nullptr; if attr-valuecase == AttrValue::kLis...

6.5CVSS0.8AI score0.00992EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:33 p.m.35 views

Null pointer dereference in TensorFlow

Impact When building an XLA compilation cache, if default settings are used, TensorFlow triggers a null pointer dereference: cc string allowedgpus = flr-configproto-gpuoptions.visibledevicelist; In the default scenario, all devices are allowed, so flr-configproto is nullptr. Patches We have patch...

6.5CVSS1.9AI score0.00774EPSS
SaveExploits1References7Affected Software3
OSV
OSV
added 2022/02/09 11:33 p.m.4 views

GHSA-FPCP-9H7M-FFPX Null pointer dereference in TensorFlow

Impact When building an XLA compilation cache, if default settings are used, TensorFlow triggers a null pointer dereference: cc string allowedgpus = flr-configproto-gpuoptions.visibledevicelist; In the default scenario, all devices are allowed, so flr-configproto is nullptr. Patches We have patch...

6CVSS6.6AI score0.00774EPSS
SaveExploits1References7
OSV
OSV
added 2022/02/09 11:32 p.m.32 views

GHSA-9X52-887G-FHC2 Out of bounds read in Tensorflow

Impact The TFG dialect of TensorFlow MLIR makes several assumptions about the incoming GraphDef before converting it to the MLIR-based dialect. If an attacker changes the SavedModel format on disk to invalidate these assumptions and the GraphDef is then converted to MLIR-based IR then they can...

8.8CVSS6.1AI score0.00142EPSS
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2022/02/09 11:32 p.m.43 views

Out of bounds read in Tensorflow

Impact The TFG dialect of TensorFlow MLIR makes several assumptions about the incoming GraphDef before converting it to the MLIR-based dialect. If an attacker changes the SavedModel format on disk to invalidate these assumptions and the GraphDef is then converted to MLIR-based IR then they can...

8.8CVSS1.5AI score0.00142EPSS
SaveExploits0References4Affected Software3
OSV
OSV
added 2022/02/09 11:32 p.m.18 views

GHSA-GWCX-JRX4-92W2 Segfault in `simplifyBroadcast` in Tensorflow

Impact The simplifyBroadcast function in the MLIR-TFRT infrastructure in TensorFlow is vulnerable to a segfault hence, denial of service, if called with scalar shapes. cc sizet maxRank = 0; for auto shape : llvm::enumerateshapes auto foundshape = analysis.dimensionsForShapeTensorshape.value; if...

8.2CVSS6.4AI score0.0087EPSS
SaveExploits1References7
Github Security Blog
Github Security Blog
added 2022/02/09 11:32 p.m.48 views

Segfault in `simplifyBroadcast` in Tensorflow

Impact The simplifyBroadcast function in the MLIR-TFRT infrastructure in TensorFlow is vulnerable to a segfault hence, denial of service, if called with scalar shapes. cc sizet maxRank = 0; for auto shape : llvm::enumerateshapes auto foundshape = analysis.dimensionsForShapeTensorshape.value; if...

7.5CVSS1.3AI score0.0087EPSS
SaveExploits1References7Affected Software3
Rows per page
Query Builder