Skip to content

Heap OOB read in `tf.raw_ops.SparseCountSparseOutput`

Moderate
mihaimaruseac published GHSA-m342-ff57-4jcc Nov 4, 2021

Package

pip tensorflow, tensorflow-cpu, tensorflow-gpu (pip)

Affected versions

< 2.7.0

Patched versions

2.4.4, 2.5.2, 2.6.1

Description

Impact

The shape inference functions for SparseCountSparseOutput can trigger a read outside of bounds of heap allocated array:

import tensorflow as tf

@tf.function
def func():
  return tf.raw_ops.SparseCountSparseOutput(
    indices=[1],
    values=[[1]],
    dense_shape=[10],
    weights=[],
    binary_output= True)

func()

The function fails to check that the first input (i.e., indices) has rank 2:

  auto rank = c->Dim(c->input(0), 1);

Patches

We have patched the issue in GitHub commit 701cfaca222a82afbeeb17496bd718baa65a67d2.

The fix will be included in TensorFlow 2.7.0. We will also cherrypick this commit on TensorFlow 2.6.1, TensorFlow 2.5.2, and TensorFlow 2.4.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 members of the Aivul Team from Qihoo 360.

Severity

Moderate

CVE ID

CVE-2021-41210

Weaknesses

No CWEs