CVE-2026-40610: BentoML has Information Disclosure in `bentoml build` via symlink traversal in the build context

Published May 7, 2026
·
Updated

Summary BentoML's bentoml build packaging workflow follows attacker-controlled symlinks inside the build context and copies the referenced file contents into the generated Bento artifact.

If a victim builds an untrusted repository or other attacker-supplied build context, the attacker can place a symlink such as loot.txt -> /tmp/outside-marker.txt or a link to a more sensitive local file. When bentoml build runs, BentoML dereferences the symlink and packages the target file contents into the Bento. The leaked file can then propagate further through export, push, or containerization workflows.

Details The vulnerable code walks files under the build context and copies each matched entry into the Bento source directory:

python for root, , files in os.walk(ctxpath): for f in files: dirpath = os.path.relpath(root, ctxpath) path = os.path.join(dirpath, f).replace(os.sep, "/") if specs.includes(path): srcfile = ctxpath.joinpath(path) dstfile = targetfs.joinpath(destpath) shutil.copy(srcfile, dstfile)

There is no validation that the resolved path of srcfile remains inside ctxpath before shutil.copy dereferences the source path. As a result, a repository-controlled symlink can cross the trust boundary from attacker-controlled repository content to developer/CI host filesystem during the build process.

This is a build-time path traversal / symlink traversal issue in the packaging feature, not a runtime API issue. The resulting Bento may later be exported, pushed to remote storage, or converted into a container image, which amplifies the leakage impact.

PoC The issue was verified in WSL against BentoML 1.4.38. The following script reproduces the vulnerability by using a harmless marker file outside the build directory.

bash mkdir -p /tmp/bento-symlink-poc cd /tmp/bento-symlink-poc

printf 'BENTOMLSYMLINKPOC123456\n' > /tmp/outside-marker.txt

cat > service.py <<'EOF' import bentoml

@bentoml.service class Demo: @bentoml.api def ping(self, x: str) -> str: return x EOF

cat > bentofile.yaml <<'EOF' service: "service:Demo" include: - "service.py" - "loot.txt" EOF

ln -s /tmp/outside-marker.txt loot.txt

bentoml build --output tag bentoml export demo:7pilrpjtlomelwct /tmp/poc.zip

mkdir -p /tmp/poc-unzip unzip -o /tmp/poc.zip -d /tmp/poc-unzip find /tmp/poc-unzip -name loot.txt -print cat /tmp/poc-unzip//src/loot.txt 2>/dev/null || \ find /tmp/poc-unzip -path '/src/loot.txt' -exec cat {} \;

- The script creates /tmp/outside-marker.txt outside the build context as a stand-in for a sensitive local file. - It creates a minimal BentoML service and explicitly includes loot.txt in bentofile.yaml. - It creates loot.txt as a symlink to the external marker file. <img width="1531" height="648" alt="image" src="https://github.com/user-attachments/assets/1312dcf0-74b0-4fb6-a05d-b68644470d82" />

- It runs bentoml build, exports the generated Bento, unzips it, and reads the packaged src/loot.txt. - Successful exploitation is confirmed when the packaged file contains BENTOMLSYMLINKPOC123456, proving that BentoML copied the external file contents rather than keeping only the symlink. <img width="1315" height="121" alt="image" src="https://github.com/user-attachments/assets/6ed34f51-9b68-4fa9-8a42-011deb84d54e" />

<img width="1697" height="760" alt="image" src="https://github.com/user-attachments/assets/9b8a8ae5-4f06-46b4-9e4a-dee25cc5d203" />

Impact An attacker who can cause a developer, release engineer, or CI system to run bentoml build on an attacker-controlled repository can exfiltrate local files from the build host into the Bento artifact.

This can expose secrets such as cloud credentials, SSH keys, API tokens, environment files, or other sensitive local configuration. Because Bento artifacts are commonly exported, uploaded, stored, or containerized after build, the leaked file contents can spread beyond the original build machine.

Other sources

BentoML is a Python library for building online serving systems optimized for AI apps and model inference. In versions 1.4.38 and prior, the build packaging workflow follows attacker-controlled symlinks inside the build context and copies the referenced file contents into the generated Bento artifact. If a victim builds an untrusted repository or other attacker-supplied build context, the attacker can place a symlink such as loot.txt -> /tmp/outside-marker.txt or a link to a more sensitive local file. When bentoml build runs, BentoML dereferences the symlink and packages the target file contents into the Bento. The leaked file can then propagate further through export, push, or containerization workflows. An attacker can exfiltrate local files from the build host into the Bento artifact, exposing secrets such as cloud credentials, SSH keys, API tokens, environment files, or other sensitive local configurations. Because Bento artifacts are commonly exported, uploaded, stored, or containerized after build, the leaked file contents can spread beyond the original build machine. This issue has been fixed in version 1.4.39.

MITRE

Affected Software

2 affected componentsFixes available
pip/bentoml<=1.4.38
1.4.39
BentoML BentoML<1.4.39

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade pip/bentoml to a version that resolves this vulnerability.

    Fixed in 1.4.39
  2. Upgrade

    Upgrade bentoml to a version that resolves this vulnerability.

    Fixed in 1.4.39

Event History

May 7, 2026
Advisory Published
via GitHub·04:39 PM
Data Sourced
via GitHub·04:39 PM
DescriptionSeverityWeaknessAffected Software
May 22, 2026
CVE Published
via MITRE·07:47 PM
Data Sourced
via MITRE·07:47 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·08:16 PM
RemedyDescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What is the severity of CVE-2026-40610?

CVE-2026-40610 has a high severity due to the potential for remote code execution through attacker-controlled symlinks.

2

How do I fix CVE-2026-40610?

To fix CVE-2026-40610, upgrade to BentoML version 1.4.39 or later.

3

What systems are affected by CVE-2026-40610?

CVE-2026-40610 affects BentoML versions up to and including 1.4.38.

4

What can an attacker do with CVE-2026-40610?

An attacker can exploit CVE-2026-40610 to insert malicious files in the Bento artifact during the build process.

5

Is CVE-2026-40610 related to any specific BentoML command?

Yes, CVE-2026-40610 is specifically related to the `bentoml build` command in the BentoML packaging workflow.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203