Missing validation causes denial of service via `UnsortedSegmentJoin`

Description

Impact

The implementation of tf.raw_ops.UnsortedSegmentJoin does not fully validate the input arguments. This results in a CHECK-failure which can be used to trigger a denial of service attack:

import tensorflow as tf

tf.raw_ops.UnsortedSegmentJoin(
  inputs=tf.constant("this", shape=[12], dtype=tf.string),
  segment_ids=tf.constant(0, shape=[12], dtype=tf.int64),
  num_segments=tf.constant(0, shape=[12], dtype=tf.int64))

The code assumes num_segments is a scalar but there is no validation for this before accessing its value:

const Tensor& num_segments_tensor = context->input(2);
OP_REQUIRES(context, num_segments_tensor.NumElements() != 0,
            errors::InvalidArgument("Number of segments cannot be empty."));
auto num_segments = num_segments_tensor.scalar<NUM_SEGMENTS_TYPE>()();

Patches

We have patched the issue in GitHub commit 13d38a07ce9143e044aa737cfd7bb759d0e9b400.

The fix will be included in TensorFlow 2.9.0. We will also cherrypick this commit on TensorFlow 2.8.1, TensorFlow 2.7.2, and TensorFlow 2.6.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 Neophytos Christou from Secure Systems Lab at Brown University.

Basic information

Type
reviewed
Severity
medium
Advisory on GitHub
Open advisory ↗
Repository advisory
Open repository advisory ↗
Source code
Browse source ↗
Published (advisory)
2022-05-24 22:08:20 UTC
Updated
2023-01-27 05:02:05 UTC
GitHub reviewed
2022-05-24 22:08:20 UTC
NVD published
2022-05-20

EPSS Score

Score Percentile
0.06% 17.38%

CVSS Scores

Base score Version Severity Vector
5.5 3.1
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H Click to expand
Attack vector (AV:L)
They already need access on the box, or another person has to do something wrong; it’s not a remote drive-by.
Attack complexity (AC:L)
Once they can reach the bug, pulling it off is straightforward—no weird race conditions or rare setup.
Privileges required (PR:L)
A normal user session is enough; they don’t have to be admin.
User interaction (UI:N)
Nobody has to click “OK” or open a trap file; it can work without a victim helping.
Scope (S:U)
Damage stays in the same “trust bubble” as the broken component—no big spill into unrelated systems.
Confidentiality (C:N)
Doesn’t really leak secrets in a meaningful way.
Integrity (I:N)
Data isn’t meaningfully altered or forged.
Availability (A:H)
Could take the service down hard or make it unusable for people who depend on it.

Identifiers

CWEs

CWE id Name
CWE-20 Improper Input Validation

Affected packages (9)

Vulnerable version ranges and first patched releases as published by GitHub.

Ecosystem Package Vulnerable range First patched Vulnerable functions
pip tensorflow < 2.6.4 2.6.4
pip tensorflow >= 2.7.0, < 2.7.2 2.7.2
pip tensorflow >= 2.8.0, < 2.8.1 2.8.1
pip tensorflow-cpu < 2.6.4 2.6.4
pip tensorflow-cpu >= 2.7.0, < 2.7.2 2.7.2
pip tensorflow-cpu >= 2.8.0, < 2.8.1 2.8.1
pip tensorflow-gpu < 2.6.4 2.6.4
pip tensorflow-gpu >= 2.7.0, < 2.7.2 2.7.2
pip tensorflow-gpu >= 2.8.0, < 2.8.1 2.8.1

References

cvelogic Threat Intelligence