Lucene search
+L

9236 matches found

OSV
OSV
added 2022/11/21 8:42 p.m.5 views

GHSA-H246-CGH4-7475 `CHECK` fail in `BCast` overflow

Impact If BCast::ToShape is given input larger than an int32, it will crash, despite being supposed to handle up to an int64. An example can be seen in tf.experimental.numpy.outer by passing in large input to the input b. python import tensorflow as tf value = tf.constantshape=2, 1024, 1024, 1024...

4.8CVSS6.9AI score0.00456EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2022/11/21 8:42 p.m.36 views

`CHECK` fail in `BCast` overflow

Impact If BCast::ToShape is given input larger than an int32, it will crash, despite being supposed to handle up to an int64. An example can be seen in tf.experimental.numpy.outer by passing in large input to the input b. python import tensorflow as tf value = tf.constantshape=2, 1024, 1024, 1024...

7.5CVSS7.5AI score0.00456EPSS
SaveExploits1References5Affected Software3
OSV
OSV
added 2022/11/21 8:42 p.m.8 views

GHSA-XXCJ-RHQG-M46G Segfault via invalid attributes in `pywrap_tfe_src.cc`

Impact If a list of quantized tensors is assigned to an attribute, the pywrap code fails to parse the tensor and returns a nullptr, which is not caught. An example can be seen in tf.compat.v1.extractvolumepatches by passing in quantized tensors as input ksizes. python import numpy as np import...

5.5CVSS7.1AI score0.00419EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2022/11/21 8:42 p.m.39 views

Segfault via invalid attributes in `pywrap_tfe_src.cc`

Impact If a list of quantized tensors is assigned to an attribute, the pywrap code fails to parse the tensor and returns a nullptr, which is not caught. An example can be seen in tf.compat.v1.extractvolumepatches by passing in quantized tensors as input ksizes. python import numpy as np import...

7.5CVSS7.6AI score0.00419EPSS
SaveExploits1References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/11/21 8:41 p.m.37 views

FPE in `tf.image.generate_bounding_box_proposals`

Impact When running on GPU, tf.image.generateboundingboxproposals receives a scores input that must be of rank 4 but is not checked. python import tensorflow as tf a = tf.constantvalue=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 b = tf.constantvalue=1...

7.5CVSS7.5AI score0.00456EPSS
SaveExploits1References5Affected Software3
OSV
OSV
added 2022/11/21 8:41 p.m.79 views

GHSA-6X99-GV2V-Q76V FPE in `tf.image.generate_bounding_box_proposals`

Impact When running on GPU, tf.image.generateboundingboxproposals receives a scores input that must be of rank 4 but is not checked. python import tensorflow as tf a = tf.constantvalue=1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 b = tf.constantvalue=1...

4.8CVSS6.9AI score0.00456EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2022/11/21 8:41 p.m.43 views

Overflow in `tf.keras.losses.poisson`

Impact tf.keras.losses.poisson receives a ypred and ytrue that are passed through functor::mul in BinaryOp. If the resulting dimensions overflow an int32, TensorFlow will crash due to a size mismatch during broadcast assignment. python import numpy as np import tensorflow as tf truevalue =...

7.5CVSS7.7AI score0.00456EPSS
SaveExploits1References6Affected Software3
OSV
OSV
added 2022/11/21 8:41 p.m.15 views

GHSA-8FVV-46HW-VPG3 Overflow in `tf.keras.losses.poisson`

Impact tf.keras.losses.poisson receives a ypred and ytrue that are passed through functor::mul in BinaryOp. If the resulting dimensions overflow an int32, TensorFlow will crash due to a size mismatch during broadcast assignment. python import numpy as np import tensorflow as tf truevalue =...

4.8CVSS7.1AI score0.00456EPSS
SaveExploits1References6
Github Security Blog
Github Security Blog
added 2022/11/21 8:40 p.m.26 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.00446EPSS
SaveExploits1References5Affected Software3
OSV
OSV
added 2022/11/21 8:40 p.m.17 views

GHSA-54PP-C6PP-7FPX 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,...

4.8CVSS5.8AI score0.00446EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2022/11/21 8:40 p.m.36 views

Overflow in `FusedResizeAndPadConv2D`

Impact When tf.rawops.FusedResizeAndPadConv2D is given a large tensor shape, it overflows. python import tensorflow as tf mode = "REFLECT" strides = 1, 1, 1, 1 padding = "SAME" resizealigncorners = False input = tf.constant147, shape=3,3,1,1, dtype=tf.float16 size =...

7.5CVSS7.2AI score0.00446EPSS
SaveExploits1References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/11/21 8:39 p.m.36 views

Seg fault in `ndarray_tensor_bridge` due to zero and large inputs

Impact If a numpy array is created with a shape such that one element is zero and the others sum to a large number, an error will be raised. E.g. the following raises an error: python np.ones0, 231, 231 An example of a proof of concept: python import numpy as np import tensorflow as tf inputval =...

7.5CVSS7.5AI score0.00343EPSS
SaveExploits1References4Affected Software3
OSV
OSV
added 2022/11/21 8:39 p.m.5 views

GHSA-JQ6X-99HJ-Q636 Seg fault in `ndarray_tensor_bridge` due to zero and large inputs

Impact If a numpy array is created with a shape such that one element is zero and the others sum to a large number, an error will be raised. E.g. the following raises an error: python np.ones0, 231, 231 An example of a proof of concept: python import numpy as np import tensorflow as tf inputval =...

4.8CVSS7AI score0.00343EPSS
SaveExploits1References4
OSV
OSV
added 2022/11/21 8:39 p.m.14 views

GHSA-W58W-79XV-6VCJ Out of bounds segmentation fault due to unequal op inputs in Tensorflow

Impact tf.rawops.DynamicStitch specifies input sizes when it is registered. cpp REGISTEROP"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 as...

6.8CVSS7AI score0.00363EPSS
SaveExploits1References6
Github Security Blog
Github Security Blog
added 2022/11/21 8:39 p.m.37 views

Out of bounds segmentation fault due to unequal op inputs in Tensorflow

Impact tf.rawops.DynamicStitch specifies input sizes when it is registered. cpp REGISTEROP"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 as...

7.5CVSS7.5AI score0.00363EPSS
SaveExploits1References6Affected Software3
Veracode
Veracode
added 2022/11/21 11:51 a.m.27 views

Denial Of Service (DoS)

tensorflow is vulnerable to denial of service. The vulnerability exists in the FusedResizeAndPadConv2D function of nnops.cc due to improper buffer size checking which allows an attacker to cause an application crash by providing malicious input...

7.5CVSS7.1AI score0.00446EPSS
SaveExploits1References9Affected Software3
Positive Technologies
Positive Technologies
added 2022/11/21 12:00 a.m.11 views

PT-2022-26134

Name of the Vulnerable Software and Affected Versions TensorFlow versions prior to 2.11.0 TensorFlow versions 2.8.4, 2.9.3, and 2.10.1 are affected, but will be patched with a cherrypick commit. Description The function MakeGrapplerFunctionItem takes arguments that determine the sizes of inputs a...

9.1CVSS7.2AI score0.00453EPSS
SaveExploits0References17
Positive Technologies
Positive Technologies
added 2022/11/21 12:00 a.m.9 views

PT-2022-26141

Name of the Vulnerable Software and Affected Versions TensorFlow versions prior to 2.11.0 TensorFlow versions 2.8.4 through 2.10.1 Description The issue is related to the function MakeGrapplerFunctionItem which takes arguments that determine the sizes of inputs and outputs. If the inputs given ar...

9.1CVSS7.2AI score0.00404EPSS
SaveExploits0References17
FreeBSD
FreeBSD
added 2022/11/21 12:00 a.m.26 views

py-tensorflow -- denial of service vulnerability

Kang Hong Jin, Neophytos Christou, 刘力源 and Pattarakrit Rattankul report: Another instance of CVE-2022-35935, where SobolSample is vulnerable to a denial of service via assumed scalar inputs, was found and fixed. Pattarakrit Rattankul reports: Another instance of CVE-2022-35991, where...

7.5CVSS7.4AI score0.00471EPSS
SaveExploits0References2
Snyk
Snyk
added 2022/11/20 9:12 a.m.9 views

Denial of Service (DoS)

Overview Affected versions of this package are vulnerable to Denial of Service DoS when SparseFillEmptyRowsGrad is given empty inputs. Details Denial of Service DoS describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users. Unlike other...

7.5CVSS7AI score0.00457EPSS
SaveExploits1References2
Rows per page
Query Builder