Lucene search
+L

483 matches found

Kitploit
Kitploit
added 2022/03/02 8:30 p.m.42 views

Searpy - Search Engine Tookit

1. Install git clone https://github.com/j3ers3/Searpy pip install -r requirement.txt 配置API及账号 ./config.py python Searpy -h 2. Help baidu Engine --google Using google Engine --so Using 360so Engine --bing Using bing Engine --shodan Using shodan Engine --fofa Using fofa Engine --zoomeye Using...

7.4AI score
SaveExploits0References3
OSV
OSV
added 2022/02/19 12:15 a.m.7 views

CVE-2021-44302

BaiCloud-cms v2.5.7 was discovered to contain multiple SQL injection vulnerabilities via the tongji and baidumap parameters in /user/ztconfig.php...

8.8CVSS7.3AI score0.01089EPSS
SaveExploits1References1
ATTACKERKB
ATTACKERKB
added 2022/02/19 12:15 a.m.3 views

CVE-2021-44302

BaiCloud-cms v2.5.7 was discovered to contain multiple SQL injection vulnerabilities via the tongji and baidumap parameters in /user/ztconfig.php...

8.8CVSS7.3AI score0.01089EPSS
SaveExploits1References2
CNNVD
CNNVD
added 2022/02/19 12:0 a.m.6 views

Baicloud Cms 安全漏洞

Baicloud Cms is a Chinese lightweight open source content management system Cms based on Php and MySQL, running on Linux, Windows and other platforms. BaiCloud cms v2.5.7 suffers from a SQL injection vulnerability that allows attackers to pass the tongji and baidumap parameters in...

8.8CVSS8.2AI score0.01089EPSS
SaveExploits1References2
Github Security Blog
Github Security Blog
added 2021/11/10 6:44 p.m.44 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.0019EPSS
SaveExploits1References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:41 p.m.29 views

`CHECK`-fail in `MapStage`

Impact An attacker can trigger a denial of service via a CHECK-fail in tf.rawops.MapStage: python import tensorflow as tf tf.rawops.MapStage key=tf.constant, shape=0, 0, 0, 0, dtype=tf.int64, indices=tf.constant0, dtype=tf.int32, values=tf.constant0, dtype=tf.int32, dtypes=tf.int32, tf.int64,...

5.5CVSS5.8AI score0.00154EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:41 p.m.48 views

Incomplete validation in `MaxPoolGrad`

Impact An attacker can trigger a denial of service via a segmentation fault in tf.rawops.MaxPoolGrad caused by missing validation: python import tensorflow as tf tf.rawops.MaxPoolGrad originput = tf.constant, shape=3, 0, 0, 2, dtype=tf.float32, origoutput = tf.constant, shape=3, 0, 0, 2,...

5.5CVSS6.5AI score0.00179EPSS
SaveExploits0References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:41 p.m.50 views

Division by 0 in most convolution operators

Impact Most implementations of convolution operators in TensorFlow are affected by a division by 0 vulnerability where an attacker can trigger a denial of service via a crash: python import tensorflow as tf tf.compat.v1.disablev2behavior tf.rawops.Conv2D input = tf.constant, shape=0, 0, 0, 0,...

5.5CVSS5.8AI score0.0016EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:41 p.m.39 views

Reference binding to nullptr in shape inference

Impact An attacker can cause undefined behavior via binding a reference to null pointer in tf.rawops.SparseFillEmptyRows: python import tensorflow as tf tf.compat.v1.disablev2behavior tf.rawops.SparseFillEmptyRows indices = tf.constant, shape=0, 0, dtype=tf.int64, values = tf.constant, shape=0,...

7.8CVSS7.5AI score0.00173EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:41 p.m.35 views

Missing validation in shape inference for `Dequantize`

Impact The shape inference code for tf.rawops.Dequantize has a vulnerability that could trigger a denial of service via a segfault if an attacker provides invalid arguments: python import tensorflow as tf tf.compat.v1.disablev2behavior tf.rawops.Dequantize inputtensor = tf.constant-10.0,...

5.5CVSS6AI score0.00148EPSS
SaveExploits0References7Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:40 p.m.35 views

Division by zero in TFLite

Impact The implementation of fully connected layers in TFLite is vulnerable to a division by zero error: cc const int batchsize = inputsize / filter-dims-data1; An attacker can craft a model such that filter-dims-data1 is 0. Patches We have patched the issue in GitHub commit...

5.5CVSS5.9AI score0.00152EPSS
SaveExploits0References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:40 p.m.37 views

Heap OOB in TFLite

Impact TFLite's expanddims.cc contains a vulnerability which allows reading one element outside of bounds of heap allocated data: cc if axis size; ++i if i datai = inputdims.datai; else if i == axis outputdims-datai = 1; else outputdims-datai = inputdims.datai - 1; If axis is a large negative val...

5.5CVSS5.9AI score0.00172EPSS
SaveExploits0References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:40 p.m.55 views

Heap OOB in TFLite's `Gather*` implementations

Impact TFLite's GatherNd implementation does not support negative indices but there are no checks for this situation. Hence, an attacker can read arbitrary data from the heap by carefully crafting a model with negative values in indices. Similar issue exists in Gather implementation. python impor...

5.5CVSS6AI score0.00191EPSS
SaveExploits0References10Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:39 p.m.33 views

Null pointer dereference in TFLite

Impact An attacker can craft a TFLite model that would trigger a null pointer dereference, which would result in a crash and denial of service: python import tensorflow as tf model = tf.keras.models.Sequential model.addtf.keras.Inputshape=1, 2, 3 model.addtf.keras.layers.Dense0, activation='relu'...

7.8CVSS5.8AI score0.00165EPSS
SaveExploits0References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:39 p.m.43 views

Null pointer dereference in TFLite MLIR optimizations

Impact An attacker can craft a TFLite model that would trigger a null pointer dereference, which would result in a crash and denial of service: This is caused by the MLIR optimization of L2NormalizeReduceAxis operator. The implementation unconditionally dereferences a pointer to an iterator to a...

7.8CVSS5.8AI score0.00165EPSS
SaveExploits0References8Affected Software3
Github Security Blog
Github Security Blog
added 2021/08/25 2:39 p.m.48 views

FPE in LSH in TFLite

Impact An attacker can craft a TFLite model that would trigger a division by zero error in LSH implementation. cc int RunningSignBitconst TfLiteTensor input, const TfLiteTensor weight, float seed int inputitembytes = input-bytes / SizeOfDimensioninput, 0; // ... There is no check that the first...

5.5CVSS5.9AI score0.00152EPSS
SaveExploits0References7Affected Software3
FreeBSD
FreeBSD
added 2021/08/25 12:0 a.m.37 views

py-tflite -- denial of service vulnerability

Yakun Zhang of Baidu Security reports: An attacker can craft a TFLite model that would trigger a null pointer dereference, which would result in a crash and denial of service...

7.8CVSS5.8AI score0.00165EPSS
SaveExploits0References1
vulnersOsv
vulnersOsv
added 2021/08/13 3:22 p.m.7 views

com.baidu.xuper:xuper-java-sdk (>=0.1.0 <=0.2.0), com.bitpay:bitpay_sdk (>=5.0.2011 <=6.3.2109) +131 more potentially affected by CVE-2020-15522 via org.bouncycastle:bcprov-jdk15to18 (>=1.63 <=1.65)

org.bouncycastle:bcprov-jdk15to18 MAVEN version =1.63, =0.1.0, =5.0.2011, =0.1.0, =1.0.1, =0.2, =2.0.0, =0.1.0, =1.0.0, =0.3, =1.0.0-6, =2.1.0, =0.0.1, =0.0.2 and more Source cves: CVE-2020-15522 Source advisory: OSV:GHSA-6XX3-RG99-GC3P...

5.9CVSS6.7AI score0.01522EPSS
SaveExploits0
CNNVD
CNNVD
added 2021/07/14 12:0 a.m.9 views

Baidu Rust SGX SDK 安全漏洞

Baidu Rust SGX SDK is a Rust language development kit for Intel SGX Trusted Computing Platform from Baidu, China. Baidu Rust SGX SDK suffers from a security vulnerability, which originates from a side-channel vulnerability in base64 PEM file decoding in Rust SGX 1.1.3. An attacker can exploit the...

4.9CVSS5.5AI score0.02221EPSS
SaveExploits0References3
CNVD
CNVD
added 2021/07/09 12:0 a.m.37 views

MipCMS server-side request forgery vulnerability

MipCMS is an application software. A content management system based on Baidu Mobile Accelerator MIP and an SEO website building system. mipCMS 5.0.1 has a server-side request forgery vulnerability that can be exploited by attackers to access sensitive information...

7.5CVSS3.9AI score0.01067EPSS
SaveExploits1References1
Rows per page
Query Builder