Cyber Resilience

CVE-2026-29514

HighPublic PoC

Published: 04 May 2026

Published
04 May 2026
Modified
21 May 2026
KEV Added
Patch
CVSS Score v4 8.7 CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0078 51.4th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-29514 is a high-severity Permissive List of Allowed Inputs (CWE-183) vulnerability. Its CVSS base score is 8.7 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked in the top 48.6% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 AC-6 (Least Privilege) and SI-10 (Information Input Validation).

Deeper analysis

CVE-2026-29514 is a remote code execution vulnerability in NetBox versions 4.3.5 through 4.5.4. The flaw exists in the RenderTemplateMixin.get_environment_params() method, which allows authenticated users with exporttemplate or configtemplate permissions to inject malicious Python callables into the environment_params field. This bypasses Jinja2 SandboxedEnvironment protections by setting the finalize parameter to any importable Python callable, such as subprocess.getoutput, which is invoked on every rendered expression outside the sandbox's call interception mechanism.

An attacker with the requisite permissions can exploit this vulnerability remotely over the network with low complexity and no user interaction. Successful exploitation grants arbitrary code execution as the NetBox service user, providing high confidentiality, integrity, and availability impact. The vulnerability carries a CVSS v3.1 base score of 8.8 (AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H) and is classified under CWE-183.

Advisories from VulnCheck and Chocapikk detail the issue, while the NetBox GitHub repository includes discussion in issue #22079 and a patch in pull request #22078, published on 2026-05-04.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

NetBox versions 4.3.5 through 4.5.4 contain a remote code execution vulnerability in the RenderTemplateMixin.get_environment_params() method that allows authenticated users with exporttemplate or configtemplate permissions to execute arbitrary code by specifying malicious Python callables in the environment_params field. Attackers can bypass…

more

Jinja2 SandboxedEnvironment protections by setting the finalize parameter to any importable Python callable such as subprocess.getoutput, which is invoked on every rendered expression outside the sandbox's call interception mechanism, achieving remote code execution as the NetBox service user.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1059.006 Python Execution
Adversaries may abuse Python commands and scripts for execution.
Why these techniques?

RCE in public-facing NetBox web app via authenticated SSTI bypass of Jinja2 sandbox directly maps to T1190 exploitation and T1059.006 Python command execution (subprocess.getoutput etc.).

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2025-53762Shared CWE-183
CVE-2026-41387Shared CWE-183
CVE-2026-42043Shared CWE-183
CVE-2026-33979Shared CWE-183

Affected Assets

NetBox
inferred from references and description; NVD did not file a CPE for this CVE

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Timely flaw remediation through patching NetBox directly eliminates the RCE vulnerability in the RenderTemplateMixin.get_environment_params() method.

prevent

Enforcing least privilege restricts exporttemplate and configtemplate permissions to only essential users, preventing unauthorized exploitation by authenticated attackers.

prevent

Information input validation on the environment_params field blocks injection of malicious Python callables, addressing the core bypass of Jinja2 sandbox protections.

References