Lucene search
+L

1076 matches found

Github Security Blog
Github Security Blog
added 2021/11/10 6:51 p.m.35 views

Use after free / memory leak in `CollectiveReduceV2`

Impact The async implementation of CollectiveReduceV2 suffers from a memory leak and a use after free: python import tensorflow as tf tf.rawops.CollectiveReduceV2 input=, groupsize=-10, -10, -10, groupkey=-10, -10, instancekey=-10, orderingtoken=, mergeop='Mul', finalop='Div' This occurs due to t...

7.8CVSS2.6AI score0.00204EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:46 p.m.46 views

Heap OOB in `FusedBatchNorm` kernels

Impact The implementation of FusedBatchNorm kernels is vulnerable to a heap OOB: python import tensorflow as tf tf.rawops.FusedBatchNormGrad ybackprop=tf.constanti for i in range9,shape=1,1,3,3,dtype=tf.float32 x=tf.constanti for i in range2,shape=1,1,1,2,dtype=tf.float32 scale=1,1,...

7.1CVSS1.6AI score0.00201EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:45 p.m.36 views

`SparseFillEmptyRows` heap OOB

Impact The implementation of SparseFillEmptyRows can be made to trigger a heap OOB access: python import tensorflow as tf data=tf.rawops.SparseFillEmptyRows indices=0,0,0,0,0,0, values='sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss', denseshape=5,3, defaultvalue='o' This occurs...

7.1CVSS2.2AI score0.00201EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:41 p.m.36 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.00201EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/11/10 6:34 p.m.34 views

Arbitrary memory read in `ImmutableConst`

Impact The ImmutableConst operation in TensorFlow can be tricked into reading arbitrary memory contents: python import tensorflow as tf with open'/tmp/test','wb' as f: f.writeb'\xe2'128 data = tf.rawops.ImmutableConstdtype=tf.string,shape=3,memoryregionname='/tmp/test' printdata This is because t...

6.6CVSS2.7AI score0.0023EPSS
SaveExploits1References8Affected Software3
Patchstack
Patchstack
added 2021/10/11 12:0 a.m.5 views

WordPress Download iPanorama 360 WordPress Virtual Tour Builder plugin <= 1.6.21 - Reflected Cross-Site Scripting (XSS) vulnerability

Reflected Cross-Site Scripting XSS vulnerability discovered by WPScanTeam in WordPress Download iPanorama 360 WordPress Virtual Tour Builder plugin versions = 1.6.21. Solution Update the WordPress Download iPanorama 360 WordPress Virtual Tour Builder plugin to the latest available version at leas...

2.9AI score
SaveExploits0References2Affected Software1
Cvelist
Cvelist
added 2021/09/23 2:11 p.m.22 views

CVE-2021-26750

DLL hijacking in Panda Agent =1.16.11 in Panda Security, S.L.U. Panda Adaptive Defense 360 = 8.0.17 allows attacker to escalate privileges via maliciously crafted DLL file...

7.9AI score0.00258EPSS
SaveExploits0References1
Github Security Blog
Github Security Blog
added 2021/08/25 2:44 p.m.55 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.55 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.47 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.51 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.50 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.51 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.67 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.50 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.41 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.55 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.40 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
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.37 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
Github Security Blog
Github Security Blog
added 2021/08/25 2:43 p.m.41 views

Use after free in boosted trees creation

Impact The implementation for tf.rawops.BoostedTreesCreateEnsemble can result in a use after free error if an attacker supplies specially crafted arguments: python import tensorflow as tf v= tf.Variable0.0 tf.rawops.BoostedTreesCreateEnsemble treeensemblehandle=v.handle, stamptoken=0,...

7.8CVSS7.7AI score0.00173EPSS
SaveExploits0References7Affected Software3
Rows per page
Query Builder