---
id: CVE-2021-37649
aliases:
  - GHSA-6gv8-p3vj-pxvr
  - BIT-tensorflow-2021-37649
  - PYSEC-2021-271
  - PYSEC-2021-562
  - PYSEC-2021-760
title: Null pointer dereference in `UncompressElement`
summary: Null pointer dereference in `UncompressElement`
severity: high
cvss: 7.7
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:H/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-07-08'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-6gv8-p3vj-pxvr'
references:
  - url: >-
      https://github.com/tensorflow/tensorflow/security/advisories/GHSA-6gv8-p3vj-pxvr
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2021-37649'
  - url: >-
      https://github.com/tensorflow/tensorflow/commit/7bdf50bb4f5c54a4997c379092888546c97c3ebd
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/tensorflow-cpu/PYSEC-2021-562.yaml
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/tensorflow-gpu/PYSEC-2021-760.yaml
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/tensorflow/PYSEC-2021-271.yaml
  - url: 'https://github.com/tensorflow/tensorflow'
tags:
  - osv
  - pip
epss: 0.0016
epssPercentile: 0.04345
ingestedAt: '2026-07-08T18:25:46.466Z'
---

## Overview

### Impact
The code for `tf.raw_ops.UncompressElement` can be made to trigger a null pointer dereference: 

```python
import tensorflow as tf

data = tf.data.Dataset.from_tensors([0.0])
tf.raw_ops.UncompressElement(
  compressed=tf.data.experimental.to_variant(data),
  output_types=[tf.int64],
  output_shapes=[2])
```
  
The [implementation](https://github.com/tensorflow/tensorflow/blob/f24faa153ad31a4b51578f8181d3aaab77a1ddeb/tensorflow/core/kernels/data/experimental/compression_ops.cc#L50-L53) obtains a pointer to a `CompressedElement` from a `Variant` tensor and then proceeds to dereference it for decompressing. There is no check that the `Variant` tensor contained a `CompressedElement`, so the pointer is actually `nullptr`.

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

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`
