SCA: security update for diffusers (GHSA-98h9-4798-4q5v)

high Tenable Self-Hosted Container Security Plugin ID 441461

Description

There are packages installed that are affected by a vulnerability referenced in the following CVE:

- Diffusers is the a library for pretrained diffusion models. Prior to 0.38.0, a trust_remote_code bypass in
DiffusionPipeline.from_pretrained allows arbitrary remote code execution despite the user passing
trust_remote_code=False (or omitting it, which is the default). The vulnerability has three variants, all
sharing the same root cause — the trust_remote_code gate was implemented inside
DiffusionPipeline.download() rather than at the actual dynamic-module load site, so any code path that
bypassed or short-circuited download() also bypassed the security check.
DiffusionPipeline.from_pretrained('repoA', custom_pipeline='attacker/repoB', trust_remote_code=False) —
the gate evaluated against repoA's file list rather than repoB's, so repoB's pipeline.py was loaded and
executed. DiffusionPipeline.from_pretrained('/local/snapshot', custom_pipeline='attacker/repoB',
trust_remote_code=False) — the local-path branch never invoked download(), so the gate was never reached
and remote code from repoB executed. DiffusionPipeline.from_pretrained('/local/snapshot',
trust_remote_code=False) where the snapshot contains custom component files (e.g. unet/my_unet_model.py)
referenced from model_index.json — same root cause; the local path skipped download() and custom component
code executed. This vulnerability is fixed in 0.38.0. (CVE-2026-44513)

Solution

Update the diffusers library and its related packages to version 0.38.0 or later.

See Also

https://github.com/advisories/GHSA-98h9-4798-4q5v

Plugin Details

Severity: High

ID: 441461

Version: Revision 1.8

Type: Local

Family: SCA Checks

Published: 5/7/2026

Updated: 7/2/2026

Supported Sensors: Tenable Cloud Security, Tenable Self-Hosted Container Security

Risk Information

VPR

Risk Factor: Medium

Score: 4.9

Percentile: 58.03

Vendor

Vendor Severity: High

CVSS v2

Risk Factor: Critical

Base Score: 10

Temporal Score: 7.8

Vector: CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C

CVSS Score Source: CVE-2026-44513

CVSS v3

Risk Factor: High

Base Score: 8.8

Temporal Score: 7.9

Vector: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Temporal Vector: CVSS:3.0/E:P/RL:O/RC:C

Vulnerability Information

Exploit Available: true

Exploit Ease: Exploits are available

Patch Publication Date: 5/7/2026

Vulnerability Publication Date: 5/7/2026

Reference Information

CVE: CVE-2026-44513

cwe: CWE-94