TensorFlow is an end-to-end open source platform for machine learning. In affected versions providing a negative element to num_elements
list argument of tf.raw_ops.TensorListReserve
causes the runtime to abort the process due to reallocating a std::vector
to have a negative number of elements. The implementation calls std::vector.resize()
with the new size controlled by input given by the user, without checking that this input is valid. We have patched the issue in GitHub commit 8a6e874437670045e6c7dc6154c7412b4a2135e2. The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.4, as these are also affected and still in supported range.
The product contains an assert() or similar statement that can be triggered by an attacker, which leads to an application exit or other behavior that is more severe than necessary.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Tensorflow | 2.3.0 (including) | 2.3.4 (excluding) | |
Tensorflow | 2.4.0 (including) | 2.4.3 (excluding) | |
Tensorflow | 2.5.0 (including) | 2.5.0 (including) | |
Tensorflow | 2.6.0-rc0 (including) | 2.6.0-rc0 (including) | |
Tensorflow | 2.6.0-rc1 (including) | 2.6.0-rc1 (including) | |
Tensorflow | 2.6.0-rc2 (including) | 2.6.0-rc2 (including) |
While assertion is good for catching logic errors and reducing the chances of reaching more serious vulnerability conditions, it can still lead to a denial of service. For example, if a server handles multiple simultaneous connections, and an assert() occurs in one single connection that causes all other connections to be dropped, this is a reachable assertion that leads to a denial of service.