VYPR
High severityNVD Advisory· Published Feb 4, 2022· Updated Apr 22, 2025

Use after free in `DecodePng` in Tensorflow

CVE-2022-23584

Description

Tensorflow is an Open Source Machine Learning Framework. A malicious user can cause a use after free behavior when decoding PNG images. After png::CommonFreeDecode(&decode) gets called, the values of decode.width and decode.height are in an unspecified state. The fix will be included in TensorFlow 2.8.0. We will also cherrypick this commit on TensorFlow 2.7.1, TensorFlow 2.6.3, and TensorFlow 2.5.3, as these are also affected and still in supported range.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
tensorflowPyPI
< 2.5.32.5.3
tensorflowPyPI
>= 2.6.0, < 2.6.32.6.3
tensorflowPyPI
>= 2.7.0, < 2.7.12.7.1
tensorflow-cpuPyPI
< 2.5.32.5.3
tensorflow-cpuPyPI
>= 2.6.0, < 2.6.32.6.3
tensorflow-cpuPyPI
>= 2.7.0, < 2.7.12.7.1
tensorflow-gpuPyPI
< 2.5.32.5.3
tensorflow-gpuPyPI
>= 2.6.0, < 2.6.32.6.3
tensorflow-gpuPyPI
>= 2.7.0, < 2.7.12.7.1

Affected products

1

Patches

1
e746adbfcfee

Prevent use after free in `DecodePng` kernel.

https://github.com/tensorflow/tensorflowMihai MaruseacNov 12, 2021via ghsa
1 file changed · +0 1
  • tensorflow/core/kernels/image/decode_image_op.cc+0 1 modified
    @@ -339,7 +339,6 @@ class DecodeImageV2Op : public OpKernel {
         if (width != static_cast<int64_t>(decode.width) || width <= 0 ||
             width >= (1LL << 27) || height != static_cast<int64_t>(decode.height) ||
             height <= 0 || height >= (1LL << 27) || total_size >= (1LL << 29)) {
    -      png::CommonFreeDecode(&decode);
           OP_REQUIRES(context, false,
                       errors::InvalidArgument("PNG size too large for int: ",
                                               decode.width, " by ", decode.height));
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

7

News mentions

0

No linked articles in our index yet.