---
id: CVE-2021-37659
aliases:
  - GHSA-q3g3-h9r4-prrc
  - BIT-tensorflow-2021-37659
  - PYSEC-2021-281
  - PYSEC-2021-572
  - PYSEC-2021-770
title: Reference binding to nullptr and heap OOB in binary cwise ops
summary: Reference binding to nullptr and heap OOB in binary cwise ops
severity: high
cvss: 7.3
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:H'
vendor: tensorflow
product: tensorflow
ecosystem: pip
affected:
  - tensorflow < 2.3.4
  - 'tensorflow >= 2.4.0, < 2.4.3'
  - 'tensorflow >= 2.5.0, < 2.5.1'
  - tensorflow-cpu < 2.3.4
  - 'tensorflow-cpu >= 2.4.0, < 2.4.3'
  - 'tensorflow-cpu >= 2.5.0, < 2.5.1'
  - tensorflow-gpu < 2.3.4
  - 'tensorflow-gpu >= 2.4.0, < 2.4.3'
  - 'tensorflow-gpu >= 2.5.0, < 2.5.1'
patched:
  - tensorflow 2.3.4
  - tensorflow 2.4.3
  - tensorflow 2.5.1
  - tensorflow-cpu 2.3.4
  - tensorflow-cpu 2.4.3
  - tensorflow-cpu 2.5.1
  - tensorflow-gpu 2.3.4
  - tensorflow-gpu 2.4.3
  - tensorflow-gpu 2.5.1
published: '2021-08-25'
updated: '2026-09-10'
sourceUpdated: '2026-09-10T03:49:15.968526345Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-q3g3-h9r4-prrc'
references:
  - url: >-
      https://github.com/tensorflow/tensorflow/security/advisories/GHSA-q3g3-h9r4-prrc
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2021-37659'
  - url: >-
      https://github.com/tensorflow/tensorflow/commit/93f428fd1768df147171ed674fee1fc5ab8309ec
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/tensorflow-cpu/PYSEC-2021-572.yaml
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/tensorflow-gpu/PYSEC-2021-770.yaml
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/tensorflow/PYSEC-2021-281.yaml
  - url: 'https://github.com/tensorflow/tensorflow'
tags:
  - osv
  - pip
epss: 0.00176
epssPercentile: 0.06395
ingestedAt: '2026-09-12T03:13:01.719Z'
---

## Overview

### Impact
An attacker can cause undefined behavior via binding a reference to null pointer in all binary cwise operations that don't require broadcasting (e.g., gradients of binary cwise operations):

```python
import tensorflow as tf

tf.raw_ops.SqrtGrad(y=[4, 16],dy=[])
```
  
The [implementation](https://github.com/tensorflow/tensorflow/blob/84d053187cb80d975ef2b9684d4b61981bca0c41/tensorflow/core/kernels/cwise_ops_common.h#L264) assumes that the two inputs have exactly the same number of elements but does not check that. Hence, when the eigen functor executes it triggers heap OOB reads and undefined behavior due to binding to nullptr.

### Patches
We have patched the issue in GitHub commit [93f428fd1768df147171ed674fee1fc5ab8309ec](https://github.com/tensorflow/tensorflow/commit/93f428fd1768df147171ed674fee1fc5ab8309ec).

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.
  
### For more information
Please consult [our security guide](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md) 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.

## Affected packages

- `tensorflow < 2.3.4`
- `tensorflow >= 2.4.0, < 2.4.3`
- `tensorflow >= 2.5.0, < 2.5.1`
- `tensorflow-cpu < 2.3.4`
- `tensorflow-cpu >= 2.4.0, < 2.4.3`
- `tensorflow-cpu >= 2.5.0, < 2.5.1`
- `tensorflow-gpu < 2.3.4`
- `tensorflow-gpu >= 2.4.0, < 2.4.3`
- `tensorflow-gpu >= 2.5.0, < 2.5.1`

## Remediation

Upgrade to a patched release:

- `tensorflow 2.3.4`
- `tensorflow 2.4.3`
- `tensorflow 2.5.1`
- `tensorflow-cpu 2.3.4`
- `tensorflow-cpu 2.4.3`
- `tensorflow-cpu 2.5.1`
- `tensorflow-gpu 2.3.4`
- `tensorflow-gpu 2.4.3`
- `tensorflow-gpu 2.5.1`
