Heap OOB access in `Dilation2DBackpropInput`
Package
Affected versions
< 2.1.4
>= 2.2.0, < 2.2.3
>= 2.3.0, < 2.3.3
>= 2.4.0, < 2.4.2
Patched versions
2.1.4
2.2.3
2.3.3
2.4.2
< 2.1.4
>= 2.2.0, < 2.2.3
>= 2.3.0, < 2.3.3
>= 2.4.0, < 2.4.2
2.1.4
2.2.3
2.3.3
2.4.2
< 2.1.4
>= 2.2.0, < 2.2.3
>= 2.3.0, < 2.3.3
>= 2.4.0, < 2.4.2
2.1.4
2.2.3
2.3.3
2.4.2
Description
Published by the National Vulnerability Database
May 14, 2021
Reviewed
May 18, 2021
Published to the GitHub Advisory Database
May 21, 2021
Last updated
Nov 1, 2024
Impact
An attacker can write outside the bounds of heap allocated arrays by passing invalid arguments to
tf.raw_ops.Dilation2DBackpropInput
:This is because the implementation does not validate before writing to the output array.
in_backprop(b, h_in_max, w_in_max, d) += out_backprop(b, h_out, w_out, d);
The values for
h_out
andw_out
are guaranteed to be in range forout_backprop
(as they are loop indices bounded by the size of the array). However, there are no similar guarantees relatingh_in_max
/w_in_max
andin_backprop
.Patches
We have patched the issue in GitHub commit 3f6fe4dfef6f57e768260b48166c27d148f3015f.
The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range.
For more information
Please consult our security guide for more information regarding the security model and how to contact us with issues and questions.
Attribution
This vulnerability has been reported by Yakun Zhang and Ying Wang of Baidu X-Team.
References