Lucene search
+L

14171 matches found

Github Security Blog
Github Security Blog
added 2023/03/24 9:57 p.m.32 views

TensorFlow has Floating Point Exception in AudioSpectrogram

Impact version:2.11.0 //core/ops/audioops.cc:70 Status SpectrogramShapeFnInferenceContext c ShapeHandle input; TFRETURNIFERRORc-WithRankc-input0, 2, &input; int32t windowsize; TFRETURNIFERRORc-GetAttr"windowsize", &windowsize; int32t stride; TFRETURNIFERRORc-GetAttr"stride", &stride; .....1...

7.5CVSS7.2AI score0.00383EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:57 p.m.36 views

TensorFlow vulnerable to segfault when opening multiframe gif

Impact Integer overflow occurs when 2^31 = numframes height width channels 2^32, for example Full HD screencast of at least 346 frames. python import urllib.request dat =...

7.5CVSS7.4AI score0.00305EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:56 p.m.38 views

TensorFlow has Floating Point Exception in AvgPoolGrad with XLA

Impact If the stride and window size are not positive for tf.rawops.AvgPoolGrad, it can give an FPE. python import tensorflow as tf import numpy as np @tf.functionjitcompile=True def test: y = tf.rawops.AvgPoolGradoriginputshape=1,0,0,0, grad=0.39117979, ksize=1,0,0,0, strides=1,0,0,0,...

7.5CVSS7.3AI score0.00391EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:55 p.m.31 views

TensorFlow has Null Pointer Error in QuantizedMatMulWithBiasAndDequantize

Impact NPE in QuantizedMatMulWithBiasAndDequantize with MKL enable python import tensorflow as tf func = tf.rawops.QuantizedMatMulWithBiasAndDequantize para='a': tf.constant138, dtype=tf.quint8, 'b': tf.constant4, dtype=tf.qint8, 'bias': 31.81644630432129, 47.21876525878906, 109.95201110839844,...

7.5CVSS7.3AI score0.00391EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:55 p.m.26 views

TensorFlow has segmentation fault in tfg-translate

Impact Out-of-bounds access due to mismatched integer type sizes in ValueMap::Manager::GetValueOrCreatePlaceholder. Bug with tfg-translate call to InitMlir. The problem happens with generic functions, as it is already handled for non-generic functions. This is because they, unlike non-generic...

7.5CVSS7.2AI score0.00516EPSS
SaveExploits0References5Affected Software2
OSV
OSV
added 2023/03/24 9:54 p.m.6 views

GHSA-647V-R7QQ-24FH TensorFlow has Floating Point Exception in TensorListSplit with XLA

Impact FPE in TensorListSplit with XLA python import tensorflow as tf func = tf.rawops.TensorListSplit para = 'tensor': 1, 'elementshape': -1, 'lengths': 0 @tf.functionjitcompile=True def fuzzjit: y = funcpara return y printfuzzjit Patches We have patched the issue in GitHub commit...

7.5CVSS6.6AI score0.00391EPSS
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2023/03/24 9:54 p.m.30 views

TensorFlow has Floating Point Exception in TensorListSplit with XLA

Impact FPE in TensorListSplit with XLA python import tensorflow as tf func = tf.rawops.TensorListSplit para = 'tensor': 1, 'elementshape': -1, 'lengths': 0 @tf.functionjitcompile=True def fuzzjit: y = funcpara return y printfuzzjit Patches We have patched the issue in GitHub commit...

7.5CVSS7.3AI score0.00391EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:54 p.m.24 views

TensorFlow has Null Pointer Error in RandomShuffle with XLA enable

Impact NPE in RandomShuffle with XLA enable python import tensorflow as tf func = tf.rawops.RandomShuffle para = 'value': 1e+20, 'seed': -4294967297, 'seed2': -2147483649 @tf.functionjitcompile=True def test: y = funcpara return y test Patches We have patched the issue in GitHub commit...

7.5CVSS7.3AI score0.00391EPSS
SaveExploits0References4Affected Software3
OSV
OSV
added 2023/03/24 9:54 p.m.4 views

GHSA-7X4V-9GXG-9HWJ TensorFlow has Segfault in Bincount with XLA

Impact When running with XLA, tf.rawops.Bincount segfaults when given a parameter weights that is neither the same shape as parameter arr nor a length-0 tensor. python import tensorflow as tf func = tf.rawops.Bincount para='arr': 6, 'size': 804, 'weights': 52, 351 @tf.functionjitcompile=True def...

7.5CVSS5.8AI score0.00391EPSS
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2023/03/24 9:54 p.m.38 views

TensorFlow has Segfault in Bincount with XLA

Impact When running with XLA, tf.rawops.Bincount segfaults when given a parameter weights that is neither the same shape as parameter arr nor a length-0 tensor. python import tensorflow as tf func = tf.rawops.Bincount para='arr': 6, 'size': 804, 'weights': 52, 351 @tf.functionjitcompile=True def...

7.5CVSS7.2AI score0.00391EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:54 p.m.33 views

TensorFlow has null dereference on ParallelConcat with XLA

Impact When running with XLA, tf.rawops.ParallelConcat segfaults with a nullptr dereference when given a parameter shape with rank that is not greater than zero. python import tensorflow as tf func = tf.rawops.ParallelConcat para = 'shape': 0, 'values': 1 @tf.functionjitcompile=True def test: y =...

7.5CVSS7.2AI score0.00391EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:53 p.m.36 views

TensorFlow has double free in Fractional(Max/Avg)Pool

Impact nnops.fractionalavgpoolv2 and nnops.fractionalmaxpoolv2 require the first and fourth elements of their parameter poolingratio to be equal to 1.0, as pooling on batch and channel dimensions is not supported. python import tensorflow as tf import os import numpy as np from...

8CVSS7.3AI score0.00148EPSS
SaveExploits0References4Affected Software3
Github Security Blog
Github Security Blog
added 2023/03/24 9:53 p.m.39 views

TensorFlow has Floating Point Exception in TFLite in conv kernel

Impact Constructing a tflite model with a paramater filterinputchannel of less than 1 gives a FPE. Patches We have patched the issue in GitHub commit 34f8368c535253f5c9cb3a303297743b62442aaa. The fix will be included in TensorFlow 2.12. We will also cherrypick this commit on TensorFlow 2.11.1. Fo...

7.5CVSS7.2AI score0.00391EPSS
SaveExploits0References4Affected Software3
OSV
OSV
added 2023/03/24 9:53 p.m.18 views

GHSA-5W96-866F-6RM8 TensorFlow has Floating Point Exception in TFLite in conv kernel

Impact Constructing a tflite model with a paramater filterinputchannel of less than 1 gives a FPE. Patches We have patched the issue in GitHub commit 34f8368c535253f5c9cb3a303297743b62442aaa. The fix will be included in TensorFlow 2.12. We will also cherrypick this commit on TensorFlow 2.11.1. Fo...

7.5CVSS5.9AI score0.00391EPSS
SaveExploits0References4
OSV
OSV
added 2023/03/24 9:53 p.m.6 views

GHSA-68V3-G9CM-RMM6 TensorFlow vulnerable to Out-of-Bounds Read in GRUBlockCellGrad

Impact Out of bounds read in GRUBlockCellGrad python func = tf.rawops.GRUBlockCellGrad para = 'x': 21.1, 156.2, 83.3, 115.4, 'hprev': array136.5, 136.6, 'wru': array26.7, 0.8, 47.9, 26.1, 26.2, 26.3, 'wc': array 0.4, 31.5, 0.6, 'bru': array0.1, 0.2 , dtype=float32, 'bc': 0x41414141, 'r': array0.3...

7.5CVSS7AI score0.00383EPSS
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2023/03/24 9:53 p.m.23 views

TensorFlow vulnerable to Out-of-Bounds Read in GRUBlockCellGrad

Impact Out of bounds read in GRUBlockCellGrad python func = tf.rawops.GRUBlockCellGrad para = 'x': 21.1, 156.2, 83.3, 115.4, 'hprev': array136.5, 136.6, 'wru': array26.7, 0.8, 47.9, 26.1, 26.2, 26.3, 'wc': array 0.4, 31.5, 0.6, 'bru': array0.1, 0.2 , dtype=float32, 'bc': 0x41414141, 'r': array0.3...

7.5CVSS7.2AI score0.00383EPSS
SaveExploits0References4Affected Software3
Prion
Prion
added 2023/03/22 10:15 p.m.22 views

Cross site scripting

A cross-site scripting XSS vulnerability in MiroTalk P2P before commit f535b35 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name parameter under the settings module...

5.8CVSS5.9AI score0.00556EPSS
SaveExploits1References3Affected Software1
Tenable Nessus
Tenable Nessus
added 2023/03/21 12:00 a.m.91 views

Amazon Linux 2023 : freetype, freetype-demos, freetype-devel (ALAS2023-2023-074)

It is, therefore, affected by multiple vulnerabilities as referenced in the ALAS2023-2023-074 advisory. A heap buffer overflow leading to out-of-bounds write was found in freetype. Memory allocation based on truncated PNG width and height values allows for an out-of-bounds write to occur in...

9.8CVSS8.2AI score0.44303EPSS
SaveExploits4References10
NVD
NVD
added 2023/03/20 1:15 p.m.25 views

CVE-2023-28424

Soko if the code that powers packages.gentoo.org. Prior to version 1.0.2, the two package search handlers, Search and SearchFeed, implemented in pkg/app/handler/packages/search.go, are affected by a SQL injection via the q parameter. As a result, unauthenticated attackers can execute arbitrary SQ...

9.8CVSS9.8AI score0.0115EPSS
SaveExploits0References3
Tenable Nessus
Tenable Nessus
added 2023/03/20 12:00 a.m.25 views

CBL Mariner 2.0 Security Update: tensorflow (CVE-2022-41911)

The version of tensorflow installed on the remote CBL Mariner 2.0 host is prior to tested version. It is, therefore, affected by a vulnerability as referenced in the CVE-2022-41911 advisory. - TensorFlow is an open source platform for machine learning. When printing a tensor, we get it's data as ...

7.5CVSS7.4AI score0.00389EPSS
SaveExploits0References2
Rows per page
Query Builder