Lucene search
K

591 matches found

Github Security Blog
Github Security Blog
added 2022/02/09 11:49 p.m.24 views

`CHECK`-failures in Tensorflow

Impact An attacker can trigger denial of service via assertion failure by altering a SavedModel on disk such that AttrDefs of some operation are duplicated. Patches We have patched the issue in GitHub commit c2b31ff2d3151acb230edc3f5b1832d2c713a9e0. The fix will be included in TensorFlow 2.8.0. W...

6.5CVSS3.3AI score0.00118EPSS
Exploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:47 p.m.28 views

Division by zero in TFLite

Impact An attacker can craft a TFLite model that would trigger a division by zero in the implementation of depthwise convolutions. The parameters of the convolution can be user controlled and are also used within a division operation to determine the size of the padding that needs to be added...

6.5CVSS2.8AI score0.00232EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:46 p.m.24 views

Null pointer dereference in TensorFlow

Impact The implementation of QuantizedMaxPool has an undefined behavior where user controlled inputs can trigger a reference binding to null pointer. python import tensorflow as tf tf.rawops.QuantizedMaxPool input = tf.constant4, dtype=tf.quint8, mininput = , maxinput = 1, ksize = 1, 1, 1, 1,...

6.5CVSS0.7AI score0.00221EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:34 p.m.32 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.00022EPSS
Exploits1References4Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:33 p.m.27 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.00221EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:32 p.m.29 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.00309EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:30 p.m.21 views

Stack overflow in TensorFlow

Impact The GraphDef format in TensorFlow does not allow self recursive functions. The runtime assumes that this invariant is satisfied. However, a GraphDef containing a fragment such as the following can be consumed when loading a SavedModel: library function signature name: "SomeOp" description:...

7.5CVSS0.7AI score0.00335EPSS
Exploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:28 p.m.55 views

Reachable Assertion in Tensorflow

Impact When decoding a tensor from protobuf, a TensorFlow process can encounter cases where a CHECK assertion is invalidated based on user controlled arguments, if the tensors have an invalid dtype and 0 elements or an invalid shape. This allows attackers to cause denial of services in TensorFlow...

6.5CVSS3.4AI score0.00118EPSS
Exploits0References6Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:28 p.m.20 views

Crash when type cannot be specialized in Tensorflow

Impact Under certain scenarios, TensorFlow can fail to specialize a type during shape inference: cc void InferenceContext::PreInputInit const OpDef& opdef, const std::vector& inputtensors, const std::vector& inputtensorsasshapes const auto ret = fulltype::SpecializeTypeattrs, opdef;...

6.5CVSS1.2AI score0.00507EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:26 p.m.40 views

Memory leak in decoding PNG images

Impact When decoding PNG images TensorFlow can produce a memory leak if the image is invalid. After calling png::CommonInitDecode..., &decode, the decode value contains allocated buffers which can only be freed by calling png::CommonFreeDecode&decode. However, several error case in the function...

6.5CVSS1.6AI score0.00656EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/09 11:25 p.m.30 views

Out of bounds read and write in Tensorflow

Impact There is a typo in TensorFlow's SpecializeType which results in heap OOB read/write: cc for int i = 0; i argssize; j++ auto arg = t-mutableargsi; // ... Due to a typo, arg is initialized to the ith mutable argument in a loop where the loop index is j. Hence it is possible to assign to arg...

8.8CVSS1.4AI score0.00296EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2022/02/07 10:1 p.m.23 views

Abort caused by allocating a vector that is too large in Tensorflow

Impact During shape inference, TensorFlow can allocate a large vector based on a value from a tensor controlled by the user: cc const auto numdims = Valueshapedim; std::vector dims; dims.reservenumdims; Patches We have patched the issue in GitHub commit 1361fb7e29449629e1df94d44e0427ebec8c83c7. T...

6.5CVSS1.6AI score0.00301EPSS
Exploits1References7Affected Software3
OSV
OSV
added 2021/11/24 9:1 p.m.29 views

GHSA-2XHG-W2G5-W95X CSV Injection in symfony/serializer

Description ----------- CSV Injection, also known as Formula Injection, occurs when websites embed untrusted input inside CSV files. When a spreadsheet program opens a CSV, any cell starting with = is interpreted by the software as a formula and could be abused by an attacker. In Symfony 4.1, we'...

6.5CVSS6.1AI score0.00871EPSS
Exploits0References13
Github Security Blog
Github Security Blog
added 2021/11/10 7:33 p.m.49 views

Overflow/crash in `tf.tile` when tiling tensor is large

Impact If tf.tile is called with a large input argument then the TensorFlow process will crash due to a CHECK-failure caused by an overflow. python import tensorflow as tf import numpy as np tf.keras.backend.tilex=np.ones1,1,1, n=100000000,100000000, 100000000 The number of elements in the output...

5.5CVSS2.2AI score0.00049EPSS
Exploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 7:12 p.m.26 views

Segfault while copying constant resource tensor

Impact During TensorFlow's Grappler optimizer phase, constant folding might attempt to deep copy a resource tensor. This results in a segfault, as these tensors are supposed to not change. Patches We have patched the issue in GitHub commit 7731e8dfbe4a56773be5dc94d631611211156659. The fix will be...

5.5CVSS1.1AI score0.00017EPSS
Exploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 7:2 p.m.26 views

FPE in `ParallelConcat`

Impact The implementation of ParallelConcat misses some input validation and can produce a division by 0: python import tensorflow as tf @tf.function def test: y = tf.rawops.ParallelConcatvalues='tf',shape=0 return y test Patches We have patched the issue in GitHub commit...

5.5CVSS2.1AI score0.00017EPSS
Exploits0References11Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:57 p.m.21 views

Null pointer exception in `DeserializeSparse`

Impact The shape inference code for DeserializeSparse can trigger a null pointer dereference: python import tensorflow as tf dataset = tf.data.Dataset.range3 @tf.function def test: y = tf.rawops.DeserializeSparse serializedsparse=tf.data.experimental.tovariantdataset, dtype=tf.int32 test This is...

5.5CVSS1.8AI score0.00017EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:51 p.m.34 views

Undefined behavior via `nullptr` reference binding in sparse matrix multiplication

Impact The code for sparse matrix multiplication is vulnerable to undefined behavior via binding a reference to nullptr: python import tensorflow as tf tf.rawops.SparseMatMul a=1.0,1.0,1.0, b=,,, transposea=False, transposeb=False, aissparse=False, bissparse=True This occurs whenever the dimensio...

7.8CVSS2AI score0.00019EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:44 p.m.20 views

A use of uninitialized value vulnerability in Tensorflow

Impact TensorFlow's Grappler optimizer has a use of unitialized variable: cc const NodeDef dequeuenode; for const auto& trainnode : trainnodes if IsDequeueOptrainnode dequeuenode = trainnode; break; if dequeuenode ... If the trainnodes vector obtained from the saved model that gets optimized does...

7.8CVSS2.5AI score0.00018EPSS
Exploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:41 p.m.28 views

Heap OOB in `SparseBinCount`

Impact The implementation of SparseBinCount is vulnerable to a heap OOB: python import tensorflow as tf tf.rawops.SparseBincount indices=0,1,2 values=0,-10000000 denseshape=1,1 size=1 weights=3,2,1 binaryoutput=False This is because of missing validation between the elements of the values argumen...

7.1CVSS2.1AI score0.00018EPSS
Exploits1References7Affected Software3
Rows per page
Query Builder