Lucene search
+L

1076 matches found

OSV
OSV
added 2021/05/31 3:39 p.m.12 views

malware in "RotaJakiro" version all

A new Linux malware labeled "RotaJakiro" has been found for 64bit Linux. When run as a root user the program creates entries in systems to run binaries labeled: /bin/systemd/systemd-daemon /usr/lib/systemd/systemd-daemon When run as a non root user it creates an autostart...

1.5AI score
SaveExploits0References3
CNVD
CNVD
added 2021/05/31 12:0 a.m.4 views

360 Security Guard 360 Isolation Sandbox has a flawed logic vulnerability

360 Security Guard is a computer security and protection software. A logic flaw vulnerability exists in 360 Security Guard 360 Isolation Sandbox. Attackers can use the vulnerability to write files to execute code, and then complete the sandbox escape...

7.4AI score
SaveExploits0
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.53 views

Heap OOB read in TFLite

Impact A specially crafted TFLite model could trigger an OOB read on heap in the TFLite implementation of SplitV: cc const int inputsize = SizeOfDimensioninput, axisvalue; If axisvalue is not a value between 0 and NumDimensionsinput, then the SizeOfDimension function will access data outside the...

7.8CVSS1AI score0.00215EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.63 views

Integer overflow in TFLite memory allocation

Impact The TFLite code for allocating TFLiteIntArrays is vulnerable to an integer overflow issue: cc int TfLiteIntArrayGetSizeInBytesint size static TfLiteIntArray dummy; return sizeofdummy + sizeofdummy.data0 size; An attacker can craft a model such that the size multiplier is so large that the...

7.1CVSS2.2AI score0.0022EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.50 views

Division by zero in TFLite's implementation of hashtable lookup

Impact The TFLite implementation of hashtable lookup is vulnerable to a division by zero error: cc const int numrows = SizeOfDimensionvalue, 0; const int rowbytes = value-bytes / numrows; An attacker can craft a model such that values's first dimension would be 0. Patches We have patched the issu...

5.5CVSS2.1AI score0.00189EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.55 views

Heap OOB write in TFLite

Impact A specially crafted TFLite model could trigger an OOB write on heap in the TFLite implementation of ArgMin/ArgMax: cc TfLiteIntArray outputdims = TfLiteIntArrayCreateNumDimensionsinput - 1; int j = 0; for int i = 0; i dataj = SizeOfDimensioninput, i; ++j; If axisvalue is not a value betwee...

7.8CVSS1.2AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.47 views

Division by zero in TFLite's implementation of `DepthwiseConv`

Impact The implementation of the DepthwiseConv TFLite operator is vulnerable to a division by zero error: cc int numinputchannels = SizeOfDimensioninput, 3; TFLITEENSUREEQcontext, numfilterchannels % numinputchannels, 0; An attacker can craft a model such that input's fourth dimension would be 0...

5.5CVSS2.5AI score0.00189EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.50 views

Integer overflow in TFLite concatentation

Impact The TFLite implementation of concatenation is vulnerable to an integer overflow issue: cc for int d = 0; d dims-size; ++d if d == axis sumaxis += t-dims-dataaxis; else TFLITEENSUREEQcontext, t-dims-datad, t0-dims-datad; An attacker can craft a model such that the dimensions of one of the...

7.1CVSS2.1AI score0.00192EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:28 p.m.55 views

Division by zero in TFLite's implementation of Split

Impact The implementation of the Split TFLite operator is vulnerable to a division by zero error: cc TFLITEENSUREMSGcontext, inputsize % numsplits == 0, "Not an even split"; const int slicesize = inputsize / numsplits; An attacker can craft a model such that numsplits would be 0. Patches We have...

7.8CVSS2.7AI score0.00209EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:27 p.m.42 views

Division by zero in TFLite's implementation of `SVDF`

Impact The implementation of the SVDF TFLite operator is vulnerable to a division by zero error: cc const int rank = params-rank; ... TFLITEENSUREEQcontext, numfilters % rank, 0; An attacker can craft a model such that params-rank would be 0. Patches We have patched the issue in GitHub commit...

7.8CVSS2.7AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:27 p.m.47 views

Division by zero in TFLite's implementation of `EmbeddingLookup`

The implementation of the EmbeddingLookup TFLite operator is vulnerable to a division by zero error: cc const int rowsize = SizeOfDimensionvalue, 0; const int rowbytes = value-bytes / rowsize; An attacker can craft a model such that the first dimension of the value input is 0. Patches We have...

7.8CVSS3.9AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:27 p.m.44 views

Division by zero in TFLite's implementation of `DepthToSpace`

Impact The implementation of the DepthToSpace TFLite operator is vulnerable to a division by zero error: cc const int blocksize = params-blocksize; ... const int inputchannels = input-dims-data3; ... int outputchannels = inputchannels / blocksize / blocksize; An attacker can craft a model such th...

7.8CVSS2.3AI score0.00201EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:27 p.m.51 views

Division by zero in TFLite's convolution code

Impact TFLite's convolution code has multiple division where the divisor is controlled by the user and not checked to be non-zero. For example: cc const int inputsize = NumElementsinput / SizeOfDimensioninput, 0; Patches We have patched the issue in GitHub commit...

7.8CVSS1.8AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:26 p.m.48 views

Null pointer dereference in TFLite's `Reshape` operator

Impact The fix for 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 vulnerability allowed passing a null-buffer-backed tensor with a 1D shape: cc if tensor-data.raw == nullptr && tensor-bytes 0 if...

7.8CVSS0.6AI score0.008EPSS
SaveExploits2References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:26 p.m.36 views

Heap OOB read in TFLite's implementation of `Minimum` or `Maximum`

Impact The implementations of the Minimum and Maximum TFLite operators can be used to read data outside of bounds of heap allocated objects, if any of the two input tensor arguments are empty. This is because the broadcasting implementation indexes in both tensors with the same index but does not...

7.1CVSS2.4AI score0.00198EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:26 p.m.44 views

Division by zero in TFLite's implementation of `GatherNd`

Impact The reference implementation of the GatherNd TFLite operator is vulnerable to a division by zero error: cc ret.dimstocounti = remainflatsize / paramsshape.Dimsi; An attacker can craft a model such that params input would be an empty tensor. In turn, paramsshape.Dims. would be zero, in at...

7.8CVSS2.4AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:26 p.m.58 views

Division by zero in TFLite's implementation of `SpaceToDepth`

Impact The Prepare step of the SpaceToDepth TFLite operator does not check for 0 before division. cc const int blocksize = params-blocksize; const int inputheight = input-dims-data1; const int inputwidth = input-dims-data2; int outputheight = inputheight / blocksize; int outputwidth = inputwidth ...

7.8CVSS2.6AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:26 p.m.40 views

Division by zero in optimized pooling implementations in TFLite

Impact Optimized pooling implementations in TFLite fail to check that the stride arguments are not 0 before calling ComputePaddingHeightWidth. Since users can craft special models which will have params-strideheight,width be zero, this will result in a division by zero. Patches We have patched th...

7.8CVSS2.3AI score0.00201EPSS
SaveExploits1References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/05/21 2:26 p.m.43 views

Division by zero in padding computation in TFLite

Impact The TFLite computation for size of output after padding, ComputeOutSize, does not check that the stride argument is not 0 before doing the division. cc inline int ComputeOutSizeTfLitePadding padding, int imagesize, int filtersize, int stride, int dilationrate = 1 int effectivefiltersize =...

7.8CVSS1.6AI score0.00201EPSS
SaveExploits1References8Affected Software3
OSV
OSV
added 2021/05/21 2:23 p.m.2 views

GHSA-H9PX-9VQG-222H Heap OOB in `QuantizeAndDequantizeV3`

Impact An attacker can read data outside of bounds of heap allocated buffer in tf.rawops.QuantizeAndDequantizeV3: python import tensorflow as tf tf.rawops.QuantizeAndDequantizeV3 input=2.5,2.5, inputmin=0,0, inputmax=1,1, numbits=30, signedinput=False, rangegiven=False, narrowrange=False, axis=3...

2.5CVSS5.9AI score0.00198EPSS
SaveExploits1References7
Rows per page
Query Builder