CVE-2026-31228
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedThe Adversarial Robustness Toolbox (ART) thru 1.20.1 contains a remote code execution vulnerability in its Kubeflow component. The robustness evaluation function for PyTorch models uses the unsafe eval() function to dynamically evaluate user-supplied strings for the LossFn and Optimizer parameters without any sanitization or security restrictions. An attacker can exploit this by providing a specially crafted string that contains arbitrary Python code, which will be executed when eval() is called, leading to complete compromise of the system running the ART evaluation.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe Adversarial Robustness Toolbox (ART) through 1.20.1 has a critical RCE vulnerability in its Kubeflow component where the PyTorch model robustness evaluation function uses unsafe eval() to process user-supplied LossFn and Optimizer parameters without any sanitization. Attackers can inject arbitrary Python code via these parameters for immediate execution, achieving full system compromise.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify if ART is installedRun 'pip show adversarial-robustness-toolbox' or check your requirements/dependencies for the adversarial-robustness-toolbox packageAffected if The package is not installed or not present in dependencies
-
Check ART versionRun 'pip show adversarial-robustness-toolbox' and note the Version field, or import art and print art.__version__Affected if The installed version is 1.20.1 or earlier (any version up to and including 1.20.1)
-
Verify Kubeflow component is in useSearch your codebase for imports from art.toolbox.kubeflow, or check if your project uses ART's Kubeflow-related functions for PyTorch model evaluationAffected if Your environment imports or uses any Kubeflow-related module from ART for model evaluation
-
Identify if LossFn or Optimizer parameters accept user inputReview your code that invokes ART's PyTorch model evaluation functions (such as for robustness assessment) and inspect how LossFn and Optimizer arguments are populatedAffected if LossFn or Optimizer parameters are populated from user-provided data, external APIs, or untrusted input sources without sanitization
You are affected if you use ART version 1.20.1 or earlier, utilize the Kubeflow component for PyTorch model evaluation, and pass user-supplied or untrusted input to the LossFn or Optimizer parameters.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedReplace the unsafe eval() calls with a secure expression evaluator (such as Python's ast.literal_eval for literal values, a restricted expression parser, or allowlisting pre-defined loss/optimizer classes) and implement strict input validation before evaluation.
ART version > 1.20.1 (latest stable release)
- Identify the current version of the Adversarial Robustness Toolbox (ART) installed in your environment using pip show adversarial-robustness-toolbox or your package manager
- Upgrade to the latest version of ART available on PyPI or the official GitHub repository: pip install --upgrade adversarial-robustness-toolbox
- If a fixed version is specifically mentioned in ART's release notes or security advisory, upgrade to that version instead (version > 1.20.1)
- After upgrading, verify the upgrade was successful by checking the new version: pip show adversarial-robustness-toolbox
- Test your pipeline to ensure the evaluation functionality still works correctly with the updated library
- If using the Kubeflow component, ensure any serialized artifacts or pipelines that passed unsafe strings to LossFn or Optimizer parameters are reviewed and updated to use safe alternatives
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing6.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $6,176.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-31228 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-31228 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data