Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:pypi/tensorflow-cpu@1.15.4
purl pkg:pypi/tensorflow-cpu@1.15.4
Vulnerabilities affecting this package (0)
Vulnerability Summary Fixed by
This package is not known to be affected by vulnerabilities.
Vulnerabilities fixed by this package (13)
Vulnerability Summary Aliases
VCID-3r8v-c8cq-dkfp In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, changing the TensorFlow's `SavedModel` protocol buffer and altering the name of required keys results in segfaults and data corruption while loading the model. This can cause a denial of service in products using `tensorflow-serving` or other inference-as-a-service installments. Fixed were added in commits f760f88b4267d981e13f4b302c437ae800445968 and fcfef195637c6e365577829c4d67681695956e7d (both going into TensorFlow 2.2.0 and 2.3.0 but not yet backported to earlier versions). However, this was not enough, as #41097 reports a different failure mode. The issue is patched in commit adf095206f25471e864a8e63a0f1caef53a0e3a6, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15206
CVE-2020-15206
GHSA-w5gh-2wr2-pm6g
PYSEC-2020-129
PYSEC-2020-286
PYSEC-2020-321
VCID-43f5-tkpy-2udu In eager mode, TensorFlow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1 does not set the session state. Hence, calling `tf.raw_ops.GetSessionHandle` or `tf.raw_ops.GetSessionHandleV2` results in a null pointer dereference In linked snippet, in eager mode, `ctx->session_state()` returns `nullptr`. Since code immediately dereferences this, we get a segmentation fault. The issue is patched in commit 9a133d73ae4b4664d22bd1aa6d654fec13c52ee1, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15204
CVE-2020-15204
GHSA-q8gv-q7wr-9jf8
PYSEC-2020-127
PYSEC-2020-284
PYSEC-2020-319
VCID-521d-c9br-zkfd In tensorflow-lite before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, to mimic Python's indexing with negative values, TFLite uses `ResolveAxis` to convert negative values to positive indices. However, the only check that the converted index is now valid is only present in debug builds. If the `DCHECK` does not trigger, then code execution moves ahead with a negative index. This, in turn, results in accessing data out of bounds which results in segfaults and/or data corruption. The issue is patched in commit 2d88f470dea2671b430884260f3626b1fe99830a, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15207
CVE-2020-15207
GHSA-q4qf-3fc6-8x34
PYSEC-2020-130
PYSEC-2020-287
PYSEC-2020-322
VCID-6hhj-dyd4-h3e1 In TensorFlow Lite before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, saved models in the flatbuffer format use a double indexing scheme: a model has a set of subgraphs, each subgraph has a set of operators and each operator has a set of input/output tensors. The flatbuffer format uses indices for the tensors, indexing into an array of tensors that is owned by the subgraph. This results in a pattern of double array indexing when trying to get the data of each tensor. However, some operators can have some tensors be optional. To handle this scenario, the flatbuffer model uses a negative `-1` value as index for these tensors. This results in special casing during validation at model loading time. Unfortunately, this means that the `-1` index is a valid tensor index for any operator, including those that don't expect optional inputs and including for output tensors. Thus, this allows writing and reading from outside the bounds of heap allocated arrays, although only at a specific offset from the start of these arrays. This results in both read and write gadgets, albeit very limited in scope. The issue is patched in several commits (46d5b0852, 00302787b7, e11f5558, cd31fd0ce, 1970c21, and fff2c83), and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. A potential workaround would be to add a custom `Verifier` to the model loading code to ensure that only operators which accept optional inputs use the `-1` special value and only for the tensors that they expect to be optional. Since this allow-list type approach is erro-prone, we advise upgrading to the patched code. BIT-tensorflow-2020-15211
CVE-2020-15211
GHSA-cvpc-8phh-8f45
PYSEC-2020-134
PYSEC-2020-291
PYSEC-2020-326
VCID-756y-beqv-wue6 In tensorflow-lite before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, a crafted TFLite model can force a node to have as input a tensor backed by a `nullptr` buffer. This can be achieved by changing a buffer index in the flatbuffer serialization to convert a read-only tensor to a read-write one. The runtime assumes that these buffers are written to before a possible read, hence they are initialized with `nullptr`. However, by changing the buffer index for a tensor and implicitly converting that tensor to be a read-write one, as there is nothing in the model that writes to it, we get a null pointer dereference. The issue is patched in commit 0b5662bc, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15209
CVE-2020-15209
GHSA-qh32-6jjc-qprm
PYSEC-2020-132
PYSEC-2020-289
PYSEC-2020-324
VCID-9xz7-2ysn-kfd3 In tensorflow-lite before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, when determining the common dimension size of two tensors, TFLite uses a `DCHECK` which is no-op outside of debug compilation modes. Since the function always returns the dimension of the first tensor, malicious attackers can craft cases where this is larger than that of the second tensor. In turn, this would result in reads/writes outside of bounds since the interpreter will wrongly assume that there is enough data in both tensors. The issue is patched in commit 8ee24e7949a203d234489f9da2c5bf45a7d5157d, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15208
CVE-2020-15208
GHSA-mxjj-953w-2c2v
PYSEC-2020-131
PYSEC-2020-288
PYSEC-2020-323
VCID-ac62-b5tn-13a9 In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, the `SparseFillEmptyRowsGrad` implementation has incomplete validation of the shapes of its arguments. Although `reverse_index_map_t` and `grad_values_t` are accessed in a similar pattern, only `reverse_index_map_t` is validated to be of proper shape. Hence, malicious users can pass a bad `grad_values_t` to trigger an assertion failure in `vec`, causing denial of service in serving installations. The issue is patched in commit 390611e0d45c5793c7066110af37c8514e6a6c54, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1." BIT-tensorflow-2020-15194
CVE-2020-15194
GHSA-9mqp-7v2h-2382
PYSEC-2020-117
PYSEC-2020-274
PYSEC-2020-309
VCID-eqxk-gvxj-eqa5 In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, the `Shard` API in TensorFlow expects the last argument to be a function taking two `int64` (i.e., `long long`) arguments. However, there are several places in TensorFlow where a lambda taking `int` or `int32` arguments is being used. In these cases, if the amount of work to be parallelized is large enough, integer truncation occurs. Depending on how the two arguments of the lambda are used, this can result in segfaults, read/write outside of heap allocated arrays, stack overflows, or data corruption. The issue is patched in commits 27b417360cbd671ef55915e4bb6bb06af8b8a832 and ca8c013b5e97b1373b3bb1c97ea655e69f31a575, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15202
CVE-2020-15202
GHSA-h6fg-mjxg-hqq4
PYSEC-2020-125
PYSEC-2020-282
PYSEC-2020-317
VCID-fsde-cbqa-37cd In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, the `tf.raw_ops.Switch` operation takes as input a tensor and a boolean and outputs two tensors. Depending on the boolean value, one of the tensors is exactly the input tensor whereas the other one should be an empty tensor. However, the eager runtime traverses all tensors in the output. Since only one of the tensors is defined, the other one is `nullptr`, hence we are binding a reference to `nullptr`. This is undefined behavior and reported as an error if compiling with `-fsanitize=null`. In this case, this results in a segmentation fault The issue is patched in commit da8558533d925694483d2c136a9220d6d49d843c, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15190
CVE-2020-15190
GHSA-4g9f-63rx-5cw4
PYSEC-2020-113
PYSEC-2020-270
PYSEC-2020-305
VCID-nnq7-5ej9-a7a9 In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, the `data_splits` argument of `tf.raw_ops.StringNGrams` lacks validation. This allows a user to pass values that can cause heap overflow errors and even leak contents of memory In the linked code snippet, all the binary strings after `ee ff` are contents from the memory stack. Since these can contain return addresses, this data leak can be used to defeat ASLR. The issue is patched in commit 0462de5b544ed4731aa2fb23946ac22c01856b80, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15205
CVE-2020-15205
GHSA-g7p5-5759-qv46
PYSEC-2020-128
PYSEC-2020-285
PYSEC-2020-320
VCID-pxu1-2kwn-fyh8 In tensorflow-lite before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, if a TFLite saved model uses the same tensor as both input and output of an operator, then, depending on the operator, we can observe a segmentation fault or just memory corruption. We have patched the issue in d58c96946b and will release patch releases for all versions between 1.15 and 2.3. We recommend users to upgrade to TensorFlow 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15210
CVE-2020-15210
GHSA-x9j7-x98r-r4w2
PYSEC-2020-133
PYSEC-2020-290
PYSEC-2020-325
VCID-ttt7-31wd-tbh1 In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, by controlling the `fill` argument of tf.strings.as_string, a malicious attacker is able to trigger a format string vulnerability due to the way the internal format use in a `printf` call is constructed. This may result in segmentation fault. The issue is patched in commit 33be22c65d86256e6826666662e40dbdfe70ee83, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15203
CVE-2020-15203
GHSA-xmq7-7fxm-rr79
PYSEC-2020-126
PYSEC-2020-283
PYSEC-2020-318
VCID-zr9p-f8f6-5qez In Tensorflow before versions 1.15.4, 2.0.3, 2.1.2, 2.2.1 and 2.3.1, the implementation of `SparseFillEmptyRowsGrad` uses a double indexing pattern. It is possible for `reverse_index_map(i)` to be an index outside of bounds of `grad_values`, thus resulting in a heap buffer overflow. The issue is patched in commit 390611e0d45c5793c7066110af37c8514e6a6c54, and is released in TensorFlow versions 1.15.4, 2.0.3, 2.1.2, 2.2.1, or 2.3.1. BIT-tensorflow-2020-15195
CVE-2020-15195
GHSA-63xm-rx5p-xvqr
PYSEC-2020-118
PYSEC-2020-275
PYSEC-2020-310

Date Actor Action Vulnerability Source VulnerableCode Version
2026-05-31T11:09:36.913790+00:00 GithubOSV Importer Fixing VCID-fsde-cbqa-37cd https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-4g9f-63rx-5cw4/GHSA-4g9f-63rx-5cw4.json 38.6.0
2026-05-31T11:09:32.823582+00:00 GithubOSV Importer Fixing VCID-3r8v-c8cq-dkfp https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-w5gh-2wr2-pm6g/GHSA-w5gh-2wr2-pm6g.json 38.6.0
2026-05-31T11:09:30.869488+00:00 GithubOSV Importer Fixing VCID-ttt7-31wd-tbh1 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-xmq7-7fxm-rr79/GHSA-xmq7-7fxm-rr79.json 38.6.0
2026-05-31T11:09:27.195430+00:00 GithubOSV Importer Fixing VCID-ac62-b5tn-13a9 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-9mqp-7v2h-2382/GHSA-9mqp-7v2h-2382.json 38.6.0
2026-05-31T11:09:24.927442+00:00 GithubOSV Importer Fixing VCID-521d-c9br-zkfd https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-q4qf-3fc6-8x34/GHSA-q4qf-3fc6-8x34.json 38.6.0
2026-05-31T11:09:16.121440+00:00 GithubOSV Importer Fixing VCID-zr9p-f8f6-5qez https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-63xm-rx5p-xvqr/GHSA-63xm-rx5p-xvqr.json 38.6.0
2026-05-31T11:09:14.502777+00:00 GithubOSV Importer Fixing VCID-eqxk-gvxj-eqa5 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-h6fg-mjxg-hqq4/GHSA-h6fg-mjxg-hqq4.json 38.6.0
2026-05-31T11:09:13.079201+00:00 GithubOSV Importer Fixing VCID-9xz7-2ysn-kfd3 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-mxjj-953w-2c2v/GHSA-mxjj-953w-2c2v.json 38.6.0
2026-05-31T11:09:11.666638+00:00 GithubOSV Importer Fixing VCID-43f5-tkpy-2udu https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-q8gv-q7wr-9jf8/GHSA-q8gv-q7wr-9jf8.json 38.6.0
2026-05-31T11:09:10.132844+00:00 GithubOSV Importer Fixing VCID-pxu1-2kwn-fyh8 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-x9j7-x98r-r4w2/GHSA-x9j7-x98r-r4w2.json 38.6.0
2026-05-31T11:09:05.165186+00:00 GithubOSV Importer Fixing VCID-6hhj-dyd4-h3e1 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-cvpc-8phh-8f45/GHSA-cvpc-8phh-8f45.json 38.6.0
2026-05-31T11:09:02.921912+00:00 GithubOSV Importer Fixing VCID-756y-beqv-wue6 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-qh32-6jjc-qprm/GHSA-qh32-6jjc-qprm.json 38.6.0
2026-05-31T11:09:00.623439+00:00 GithubOSV Importer Fixing VCID-nnq7-5ej9-a7a9 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/09/GHSA-g7p5-5759-qv46/GHSA-g7p5-5759-qv46.json 38.6.0
2026-05-31T09:38:37.743891+00:00 PyPI Importer Fixing VCID-nnq7-5ej9-a7a9 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:37.673209+00:00 PyPI Importer Fixing VCID-ttt7-31wd-tbh1 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:37.386181+00:00 PyPI Importer Fixing VCID-3r8v-c8cq-dkfp https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:30.304415+00:00 PyPI Importer Fixing VCID-pxu1-2kwn-fyh8 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:28.470193+00:00 PyPI Importer Fixing VCID-ac62-b5tn-13a9 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:25.546424+00:00 PyPI Importer Fixing VCID-521d-c9br-zkfd https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:23.894856+00:00 PyPI Importer Fixing VCID-eqxk-gvxj-eqa5 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:23.833399+00:00 PyPI Importer Fixing VCID-756y-beqv-wue6 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:22.975029+00:00 PyPI Importer Fixing VCID-9xz7-2ysn-kfd3 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:22.120007+00:00 PyPI Importer Fixing VCID-fsde-cbqa-37cd https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:22.012722+00:00 PyPI Importer Fixing VCID-43f5-tkpy-2udu https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:21.593462+00:00 PyPI Importer Fixing VCID-zr9p-f8f6-5qez https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T09:38:21.527561+00:00 PyPI Importer Fixing VCID-6hhj-dyd4-h3e1 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-05-31T00:53:49.405410+00:00 GHSA Importer Fixing VCID-pxu1-2kwn-fyh8 https://github.com/advisories/GHSA-x9j7-x98r-r4w2 38.6.0
2026-05-31T00:53:48.148918+00:00 GHSA Importer Fixing VCID-6hhj-dyd4-h3e1 https://github.com/advisories/GHSA-cvpc-8phh-8f45 38.6.0
2026-05-31T00:53:46.982992+00:00 GHSA Importer Fixing VCID-756y-beqv-wue6 https://github.com/advisories/GHSA-qh32-6jjc-qprm 38.6.0
2026-05-31T00:53:46.518796+00:00 GHSA Importer Fixing VCID-9xz7-2ysn-kfd3 https://github.com/advisories/GHSA-mxjj-953w-2c2v 38.6.0
2026-05-31T00:53:45.886729+00:00 GHSA Importer Fixing VCID-521d-c9br-zkfd https://github.com/advisories/GHSA-q4qf-3fc6-8x34 38.6.0
2026-05-31T00:53:44.555431+00:00 GHSA Importer Fixing VCID-43f5-tkpy-2udu https://github.com/advisories/GHSA-q8gv-q7wr-9jf8 38.6.0
2026-05-31T00:53:44.394933+00:00 GHSA Importer Fixing VCID-3r8v-c8cq-dkfp https://github.com/advisories/GHSA-w5gh-2wr2-pm6g 38.6.0
2026-05-31T00:53:43.292185+00:00 GHSA Importer Fixing VCID-nnq7-5ej9-a7a9 https://github.com/advisories/GHSA-g7p5-5759-qv46 38.6.0
2026-05-31T00:53:42.325377+00:00 GHSA Importer Fixing VCID-ttt7-31wd-tbh1 https://github.com/advisories/GHSA-xmq7-7fxm-rr79 38.6.0
2026-05-31T00:53:41.999631+00:00 GHSA Importer Fixing VCID-eqxk-gvxj-eqa5 https://github.com/advisories/GHSA-h6fg-mjxg-hqq4 38.6.0
2026-05-31T00:53:40.949455+00:00 GHSA Importer Fixing VCID-zr9p-f8f6-5qez https://github.com/advisories/GHSA-63xm-rx5p-xvqr 38.6.0
2026-05-31T00:53:38.856690+00:00 GHSA Importer Fixing VCID-ac62-b5tn-13a9 https://github.com/advisories/GHSA-9mqp-7v2h-2382 38.6.0
2026-05-31T00:53:37.684335+00:00 GHSA Importer Fixing VCID-fsde-cbqa-37cd https://github.com/advisories/GHSA-4g9f-63rx-5cw4 38.6.0
2026-05-30T20:20:08.673883+00:00 Pypa Importer Fixing VCID-3r8v-c8cq-dkfp https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-286.yaml 38.6.0
2026-05-30T20:20:04.171711+00:00 Pypa Importer Fixing VCID-pxu1-2kwn-fyh8 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-290.yaml 38.6.0
2026-05-30T20:20:02.847254+00:00 Pypa Importer Fixing VCID-ac62-b5tn-13a9 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-274.yaml 38.6.0
2026-05-30T20:19:56.844472+00:00 Pypa Importer Fixing VCID-521d-c9br-zkfd https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-287.yaml 38.6.0
2026-05-30T20:19:54.498166+00:00 Pypa Importer Fixing VCID-43f5-tkpy-2udu https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-284.yaml 38.6.0
2026-05-30T20:19:54.384751+00:00 Pypa Importer Fixing VCID-756y-beqv-wue6 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-289.yaml 38.6.0
2026-05-30T20:19:52.449396+00:00 Pypa Importer Fixing VCID-nnq7-5ej9-a7a9 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-285.yaml 38.6.0
2026-05-30T20:19:50.679087+00:00 Pypa Importer Fixing VCID-9xz7-2ysn-kfd3 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-288.yaml 38.6.0
2026-05-30T20:19:50.104890+00:00 Pypa Importer Fixing VCID-eqxk-gvxj-eqa5 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-282.yaml 38.6.0
2026-05-30T20:19:49.982412+00:00 Pypa Importer Fixing VCID-fsde-cbqa-37cd https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-270.yaml 38.6.0
2026-05-30T20:19:47.251230+00:00 Pypa Importer Fixing VCID-6hhj-dyd4-h3e1 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-291.yaml 38.6.0
2026-05-30T20:19:43.217667+00:00 Pypa Importer Fixing VCID-ttt7-31wd-tbh1 https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-283.yaml 38.6.0
2026-05-30T20:19:42.492638+00:00 Pypa Importer Fixing VCID-zr9p-f8f6-5qez https://github.com/pypa/advisory-database/blob/main/vulns/tensorflow-cpu/PYSEC-2020-275.yaml 38.6.0