Security readout for executives and security teams
Plain-English summary
This is a low-severity denial-of-service issue in TensorFlow. A user who can run or submit specific TensorFlow operations can make FractionalAvgPool crash by causing a division by zero. It does not expose data or alter results, but it can interrupt workloads that process untrusted input or models.
Executive priority
Treat as routine patching unless TensorFlow workloads process untrusted user models or shared tenant inputs. Business impact is service interruption, not data loss or compromise, based on the provided sources.
Technical view
In affected TensorFlow versions, tf.raw_ops.FractionalAvgPool derives output_size from user-controlled input shape and pooling_ratio. When input_size is smaller than pooling_ratio, output_size can become zero. A later GeneratePoolingSequence modulo/division operation then crashes at runtime because debug-only checks do not protect release builds.
Likely exposure
Exposure is limited to systems running affected TensorFlow versions where a user can execute TensorFlow code, submit model graphs, or influence tensors and pooling ratios reaching FractionalAvgPool.
Exploitation context
The CVSS vector is local, high complexity, low privileges required, and availability-only impact. The source bundle marks KEV as false, and it provides no evidence of active exploitation.
Researcher notes
The issue is CWE-369 division by zero. The vulnerable path is caused by user-controlled shape and pooling_ratio producing output_size zero, then reaching GeneratePoolingSequence. The fix is linked in TensorFlow commit 548b5eaf23685d86f722233d8fbc21d0a4aecb96.
Mitigation direction
- Upgrade TensorFlow to 2.5.0 or later where feasible.
- For supported older branches, use 2.4.2, 2.3.3, 2.2.3, or 2.1.4.
- Restrict untrusted users from submitting arbitrary TensorFlow operations or model graphs.
- Check current TensorFlow vendor guidance before relying on unsupported branches.
Validation and detection
- Inventory deployed TensorFlow versions in applications, notebooks, workers, and ML services.
- Confirm no deployed environment remains in the affected version ranges.
- Review whether untrusted inputs can reach tf.raw_ops.FractionalAvgPool.
- Verify dependency scanners or SBOMs report the patched TensorFlow versions.
Public sources used
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
CWE-369: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
Open ATT&CK lookupCVE-2021-29550 mapping review
Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.
Open ATT&CK lookup- Severity
- Low
- CVSS
- 2.5 (3.1)
- Known Exploited
- No
- Published
Vector: CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L
CNA and ADP enrichment extracted from CVE v5
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
CVSS vector scores
1 official scoreWe collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L11.4Primary CVE scoreVulnerability scoring details
Base CVSS 3.1 score
2.5LowVector: CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:L
Source materials
- CVE List V5 sourceCVE List V5
- https://github.com/tensorflow/tensorflow/security/advisories/GHSA-f78g-q7r4-9wcvCVE reference · x_refsource_CONFIRM
- https://github.com/tensorflow/tensorflow/commit/548b5eaf23685d86f722233d8fbc21d0a4aecb96CVE reference · x_refsource_MISC
Products and packages named in the record
CWE details
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
Divide By Zero
Divide By Zero represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.
