Lucene search
+L

15656 matches found

Github Security Blog
Github Security Blog
added 2021/08/30 4:17 p.m.59 views

Code injection in nbgitpuller

Impact Due to an unsanitized input, visiting maliciously crafted links could result in arbitrary code execution in the user environment. Patches 0.10.2 Workarounds None, other than upgrade to 0.10.2 or downgrade to 0.8.x. For more information If you have any questions or comments about this...

9.6CVSS8.9AI score0.0173EPSS
SaveExploits0References6Affected Software1
GithubExploit
GithubExploit
added 2021/08/29 11:08 a.m.220 views

Exploit for OS Command Injection in Sophos Unified_Threat_Management

sophucked CVE-2020-25223 RCE PoC, gets reverse shell. Pre-auth...

10CVSS9.7AI score0.96693EPSS
SaveExploits9
The Hacker News
The Hacker News
added 2021/08/27 7:50 a.m.34 views

Critical Cosmos Database Flaw Affected Thousands of Microsoft Azure Customers

Cloud infrastructure security company Wiz on Thursday revealed details of a now-fixed Azure Cosmos database vulnerability that could have been potentially exploited to grant any Azure user full admin access to other customers' database instances without any authorization. The flaw, which grants...

1.6AI score
SaveExploits0
Github Security Blog
Github Security Blog
added 2021/08/25 2:48 p.m.75 views

XStream can cause a Denial of Service

Impact The vulnerability may allow a remote attacker to allocate 100% CPU time on the target system depending on CPU type or parallel execution of such a payload resulting in a denial of service only by manipulating the processed input stream. No user is affected, who followed the recommendation ...

6.5CVSS7.3AI score0.05918EPSS
SaveExploits1References13Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.60 views

Heap out of bounds access in sparse reduction operations

Impact The implementation of sparse reduction operations in TensorFlow can trigger accesses outside of bounds of heap allocated data: python import tensorflow as tf x = tf.SparseTensor indices=773, 773, 773, 773, 773, 773, values=1, 1, denseshape=337, 337, 337 tf.sparse.reducesumx, 1 The...

7.3CVSS7.3AI score0.00167EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.61 views

Floating point exception in `SparseDenseCwiseDiv`

Impact The implementation of tf.rawops.SparseDenseCwiseDiv is vulnerable to a division by 0 error: python import tensorflow as tf import numpy as np tf.rawops.SparseDenseCwiseDiv spindices=np.array4, spvalues=np.array-400, spshape=np.array647., dense=np.array0 The implementation uses a common cla...

5.5CVSS5.9AI score0.00152EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.52 views

Null pointer dereference in `CompressElement`

Impact It is possible to trigger a null pointer dereference in TensorFlow by passing an invalid input to tf.rawops.CompressElement: python import tensorflow as tf tf.rawops.CompressElementcomponents= The implementation was accessing the size of a buffer obtained from the return of a separate...

7.7CVSS6.1AI score0.0016EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.54 views

Null pointer dereference in `RaggedTensorToTensor`

Impact Sending invalid argument for rowpartitiontypes of tf.rawops.RaggedTensorToTensor API results in a null pointer dereference and undefined behavior: python import tensorflow as tf tf.rawops.RaggedTensorToTensor shape=1, values=10, defaultvalue=21, rowpartitiontensors=tf.constant0,0,0,0,...

7.8CVSS7.5AI score0.00167EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.53 views

Null pointer dereference and heap OOB read in operations restoring tensors

Impact When restoring tensors via raw APIs, if the tensor name is not provided, TensorFlow can be tricked into dereferencing a null pointer: python import tensorflow as tf tf.rawops.Restore filepattern='/tmp', tensorname=, defaultvalue=21, dt=tf.int, preferredshard=1 The same undefined behavior c...

8.4CVSS7.5AI score0.00173EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.56 views

Integer division by 0 in sparse reshaping

Impact The implementation of tf.rawops.SparseReshape can be made to trigger an integral division by 0 exception: python import tensorflow as tf tf.rawops.SparseReshape inputindices = np.ones1,3, inputshape = np.array1,1,0, newshape = np.array1,0 The implementation calls the reshaping functor...

5.5CVSS6.1AI score0.00152EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.49 views

Heap OOB in `RaggedGather`

Impact If the arguments to tf.rawops.RaggedGather don't determine a valid ragged tensor code can trigger a read from outside of bounds of heap allocated buffers. python import tensorflow as tf tf.rawops.RaggedGather paramsnestedsplits = 0,0,0, paramsdensevalues = 1,1, indices = 0,0,9,0,0,...

7.3CVSS7.1AI score0.00167EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.71 views

Division by 0 in `ResourceScatterDiv`

Impact The implementation of tf.rawops.ResourceScatterDiv is vulnerable to a division by 0 error: python import tensorflow as tf v= tf.Variable1,2,3 tf.rawops.ResourceScatterDiv resource=v.handle, indices=1, updates=0 The implementation uses a common class for all binary operations but fails to...

5.5CVSS5.9AI score0.00154EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.52 views

Null pointer dereference in `MatrixDiagPartOp`

Impact If a user does not provide a valid padding value to tf.rawops.MatrixDiagPartOp, then the code triggers a null pointer dereference if input is empty or produces invalid behavior, ignoring all values after the first: python import tensorflow as tf tf.rawops.MatrixDiagPartV2...

7.7CVSS7.2AI score0.0016EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.46 views

`std::abort` raised from `TensorListReserve`

Impact Providing a negative element to numelements list argument of tf.rawops.TensorListReserve causes the runtime to abort the process due to reallocating a std::vector to have a negative number of elements: python import tensorflow as tf tf.rawops.TensorListReserve elementshape = tf.constant1,...

5.5CVSS5.9AI score0.00152EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.54 views

Integer overflow due to conversion to unsigned

Impact The implementation of tf.rawops.QuantizeAndDequantizeV4Grad is vulnerable to an integer overflow issue caused by converting a signed integer value to an unsigned one and then allocating memory based on this value. python import tensorflow as tf tf.rawops.QuantizeAndDequantizeV4Grad...

5.5CVSS6.1AI score0.00152EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.64 views

Bad alloc in `StringNGrams` caused by integer conversion

Impact The implementation of tf.rawops.StringNGrams is vulnerable to an integer overflow issue caused by converting a signed integer value to an unsigned one and then allocating memory based on this value. python import tensorflow as tf tf.rawops.StringNGrams data='','', datasplits=0,2, separator...

5.5CVSS6.1AI score0.00154EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.60 views

Null pointer dereference in `SparseTensorSliceDataset`

Impact When a user does not supply arguments that determine a valid sparse tensor, tf.rawops.SparseTensorSliceDataset implementation can be made to dereference a null pointer: python import tensorflow as tf tf.rawops.SparseTensorSliceDataset indices=,,, values=1,2,3, denseshape=3,3 The...

7.7CVSS6AI score0.0016EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.45 views

Null pointer dereference in `UncompressElement`

Impact The code for tf.rawops.UncompressElement can be made to trigger a null pointer dereference: python import tensorflow as tf data = tf.data.Dataset.fromtensors0.0 tf.rawops.UncompressElement compressed=tf.data.experimental.tovariantdata, outputtypes=tf.int64, outputshapes=2 The implementatio...

7.7CVSS6.1AI score0.0016EPSS
SaveExploits0References7Affected Software3
OSV
OSV
added 2021/08/25 2:43 p.m.11 views

GHSA-HPV4-7P9C-MVFR Heap buffer overflow in `FractionalAvgPoolGrad`

Impact The implementation for tf.rawops.FractionalAvgPoolGrad can be tricked into accessing data outside of bounds of heap allocated buffers: python import tensorflow as tf tf.rawops.FractionalAvgPoolGrad originputtensorshape=0,1,2,3, outbackprop = np.array541,541,541,541, rowpoolingsequence=0, 0...

8.4CVSS6.5AI score0.00174EPSS
SaveExploits0References7
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.41 views

Heap buffer overflow in `FractionalAvgPoolGrad`

Impact The implementation for tf.rawops.FractionalAvgPoolGrad can be tricked into accessing data outside of bounds of heap allocated buffers: python import tensorflow as tf tf.rawops.FractionalAvgPoolGrad originputtensorshape=0,1,2,3, outbackprop = np.array541,541,541,541, rowpoolingsequence=0, 0...

7.8CVSS7.9AI score0.00174EPSS
SaveExploits0References7Affected Software3
Rows per page
Query Builder