Lucene search
+L

485 matches found

Github Security Blog
Github Security Blog
added 2022/09/16 10:14 p.m.42 views

TensorFlow vulnerable to `CHECK` fail in `SetSize`

Impact When SetSize receives an input setshape that is not a 1D tensor, it gives a CHECK fails that can be used to trigger a denial of service attack. python import tensorflow as tf arg0=1 arg1=1,1 arg2=1 arg3=True arg4='' tf.rawops.SetSizesetindices=arg0, setvalues=arg1, setshape=arg2,...

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

TensorFlow vulnerable to segfault in `BlockLSTMGradV2`

Impact The implementation of BlockLSTMGradV2 does not fully validate its inputs. - wci, wcf, wco, b must be rank 1 - w, csprev, hprev must be rank 2 - x must be rank 3 This results in a a segfault that can be used to trigger a denial of service attack. python import tensorflow as tf usepeephole =...

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

TensorFlow vulnerable to `CHECK` failures in `UnbatchGradOp`

Impact The UnbatchGradOp function takes an argument id that is assumed to be a scalar. A nonscalar id can trigger a CHECK failure and crash the program. python import numpy as np import tensorflow as tf id is not scalar tf.rawops.UnbatchGradoriginalinput= tf.constant1,batchindex=tf.constant0,0,0 ...

7.5CVSS7.5AI score0.00579EPSS
SaveExploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:12 p.m.35 views

TensorFlow vulnerable to Int overflow in `RaggedRangeOp`

Impact The RaggedRangOp function takes an argument limits that is eventually used to construct a TensorShape as an int64. If limits is a very large float, it can overflow when converted to an int64. This triggers an InvalidArgument but also throws an abort signal that crashes the program. python...

7.5CVSS7.7AI score0.00567EPSS
SaveExploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:11 p.m.36 views

TensorFlow vulnerable to `CHECK` fail in `CollectiveGather`

Impact When CollectiveGather receives an scalar input input, it gives a CHECK fails that can be used to trigger a denial of service attack. python import tensorflow as tf arg0=1 arg1=1 arg2=1 arg3=1 arg4=3, 3,3 arg5='auto' arg6=0 arg7='' tf.rawops.CollectiveGatherinput=arg0, groupsize=arg1,...

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

TensorFlow vulnerable to `CHECK` failure in `TensorListReserve` via missing validation

Impact In core/kernels/listkernels.cc's TensorListReserve, numelements is assumed to be a tensor of size 1. When a numelements of more than 1 element is provided, then tf.rawops.TensorListReserve fails the CHECKEQ in CheckIsAlignedAndSingleElement. python import tensorflow as tf...

7.5CVSS7.5AI score0.00567EPSS
SaveExploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:11 p.m.40 views

TensorFlow vulnerable to floating point exception in `Conv2D`

Impact If Conv2D is given empty input and the filter and padding sizes are valid, the output is all-zeros. This causes division-by-zero floating point exceptions that can be used to trigger a denial of service attack. python import tensorflow as tf import numpy as np with tf.device"CPU": also can...

7.5CVSS7.4AI score0.00411EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:11 p.m.43 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.00398EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 10:9 p.m.34 views

TensorFlow vulnerable to `CHECK` fail in `EmptyTensorList`

Impact If EmptyTensorList receives an input elementshape with more than one dimension, it gives a CHECK fail that can be used to trigger a denial of service attack. python import tensorflow as tf tf.rawops.EmptyTensorListelementshape=tf.onesdtype=tf.int32, shape=1, 0,...

7.5CVSS7.4AI score0.0042EPSS
SaveExploits0References5Affected Software1
Github Security Blog
Github Security Blog
added 2022/09/16 10:9 p.m.33 views

TensorFlow vulnerable to null dereference on MLIR on empty function attributes

Impact Eig can be fed an incorrect Tout input, resulting in a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf import numpy as np arg0=tf.constantvalue=np.random.randomsize=2, 2, shape=2, 2, dtype=tf.float32 arg1=tf.complex128 arg2=True arg3=''...

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

TensorFlow vulnerable to `CHECK` fail in `DrawBoundingBoxes`

Impact When DrawBoundingBoxes receives an input boxes that is not of dtype float, it gives a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf import numpy as np arg0=tf.constantvalue=np.random.randomsize=1, 3, 2, 3, shape=1, 3, 2, 3, dtype=tf.half...

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

TensorFlow vulnerable to null-dereference in `mlir::tfg::GraphDefImporter::ConvertNodeDef`

Impact When mlir::tfg::GraphDefImporter::ConvertNodeDef tries to convert NodeDefs without an op name, it crashes. cpp Status GraphDefImporter::ConvertNodeDefOpBuilder &builder, ConversionState &s, const NodeDef &node VLOG4 opdef; else auto it = functionopdefs.findnode.op; if it ==...

7.5CVSS7.6AI score0.00567EPSS
SaveExploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:57 p.m.37 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.00439EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:39 p.m.34 views

TensorFlow vulnerable to `CHECK` fail in `RandomPoissonV2`

Impact When RandomPoissonV2 receives large input shape and rates, it gives a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf arg0=tf.random.uniformshape=4,, dtype=tf.int32, maxval=65536 arg1=tf.random.uniformshape=4, 4, 4, 4, 4, dtype=tf.float32, maxval=None...

7.5CVSS7.4AI score0.00411EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:28 p.m.36 views

TensorFlow vulnerable to `CHECK` fail in `FakeQuantWithMinMaxVarsGradient`

Impact When tf.quantization.fakequantwithminmaxvarsgradient receives input min or max that is nonscalar, it gives a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf import numpy as np arg0=tf.constantvalue=np.random.randomsize=2, 2, shape=2, 2, dtype=tf.float...

7.5CVSS7.5AI score0.00411EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:25 p.m.37 views

TensorFlow vulnerable to `CHECK` fail in `AudioSummaryV2`

Impact When AudioSummaryV2 receives an input samplerate with more than one element, it gives a CHECK fails that can be used to trigger a denial of service attack. python import tensorflow as tf arg0='' arg1=tf.random.uniformshape=1,1, dtype=tf.float32, maxval=None arg2=tf.random.uniformshape=2,1,...

7.5CVSS7.4AI score0.00411EPSS
SaveExploits0References5Affected Software3
OSV
OSV
added 2022/09/16 9:23 p.m.6 views

GHSA-MV8M-8X97-937Q TensorFlow vulnerable to `CHECK` fail in `tf.random.gamma`

Impact When tf.random.gamma receives large input shape and rates, it gives a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf arg0=tf.random.uniformshape=4,, dtype=tf.int32, maxval=65536 arg1=tf.random.uniformshape=4, 4, dtype=tf.float64, maxval=None...

5.9CVSS7AI score0.0042EPSS
SaveExploits0References5
Github Security Blog
Github Security Blog
added 2022/09/16 9:23 p.m.33 views

TensorFlow vulnerable to `CHECK` fail in `tf.random.gamma`

Impact When tf.random.gamma receives large input shape and rates, it gives a CHECK fail that can trigger a denial of service attack. python import tensorflow as tf arg0=tf.random.uniformshape=4,, dtype=tf.int32, maxval=65536 arg1=tf.random.uniformshape=4, 4, dtype=tf.float64, maxval=None...

7.5CVSS7.4AI score0.0042EPSS
SaveExploits0References5Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:20 p.m.36 views

TensorFlow vulnerable to integer overflow in math ops

Impact When RangeSize receives values that do not fit into an int64t, it crashes. cpp auto size = std::isintegral::value ? Eigen::numext::abslimit - start + Eigen::numext::absdelta - T1 / Eigen::numext::absdelta : Eigen::numext::ceil Eigen::numext::abslimit - start / delta; // This check does not...

7.5CVSS7.5AI score0.00567EPSS
SaveExploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/09/16 9:19 p.m.36 views

TensorFlow vulnerable to assertion fail on MLIR empty edge names

Impact When mlir::tfg::ConvertGenericFunctionToFunctionDef is given empty function attributes, it crashes. cpp // We pre-allocate the array of operands and populate it using the // outputnametoposition and controloutputtoposition populated // previously. SmallVector retvalsfunc.retsize +...

7.5CVSS7.5AI score0.00567EPSS
SaveExploits0References6Affected Software3
Rows per page
Query Builder