CVE-2020-15265Medium· 5.9▾ SunlitSegfault in `tf.quantization.quantize_and_dequantize`
▾ Sunlit zone — Low / medium · no exploitation signal
impact 32.5 · likelihood 0.2 · exploitation 0
Need a working PoC? Pro members can cast a request and our team develops one — it lands right here.
Exploit-prediction probability, daily snapshots since Jul 8.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via OSV
Last analysed / modified upstream
0.9%
0.9% → 0.9%
An attacker can pass an invalid axis value to tf.quantization.quantize_and_dequantize:
tf.quantization.quantize_and_dequantize(
input=[2.5, 2.5], input_min=[0,0], input_max=[1,1], axis=10)
This results in accessing a dimension outside the rank of the input tensor in the C++ kernel implementation:
const int depth = (axis_ == -1) ? 1 : input.dim_size(axis_);
However, dim_size only does a DCHECK to validate the argument and then uses it to access the corresponding element of an array:
int64 TensorShapeBase<Shape>::dim_size(int d) const {
DCHECK_GE(d, 0);
DCHECK_LT(d, dims());
DoStuffWith(dims_[d]);
}
Since in normal builds, DCHECK-like macros are no-ops, this results in segfault and access out of bounds of the array.
We have patched the issue in eccb7ec454e6617738554a255d77f08e60ee0808 and will release TensorFlow 2.4.0 containing the patch. TensorFlow nightly packages after this commit will also have the issue resolved.
Please consult our security guide for more information regarding the security model and how to contact us with issues and questions.
This vulnerability has been reported in #42105
tensorflow < 2.4.0tensorflow-cpu < 2.4.0tensorflow-gpu < 2.4.0Upgrade to a patched release:
tensorflow 2.4.0tensorflow-cpu 2.4.0tensorflow-gpu 2.4.0Connected by shared product, vendor, weakness, or advisory.
CVE-2021-29541Low· 2.5Null pointer dereference in `StringNGrams`
CVE-2021-29525Low· 2.5Division by 0 in `Conv2DBackpropInput`
CVE-2021-29527Low· 2.5Division by 0 in `QuantizedConv2D`
CVE-2021-29524Low· 2.5Division by 0 in `Conv2DBackpropFilter`
CVE-2020-15207High· 8.7Segfault and data corruption in tensorflow-lite
CVE-2021-29535Low· 2.5Heap buffer overflow in `QuantizedMul`