Cyber Resilience

CVE-2026-44454

RCE in Coder ≤ 2.29.7

Published
07 July 2026
Modified
08 July 2026
Patch / advisory
CVSS Score v3.1 8.1
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
EPSS Score 0.014 69th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-44454 is a high-severity OS Command Injection (CWE-78) vulnerability in Coder Coder. Its CVSS base score is 8.1 (High).

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

The strongest mitigations our analysis identified map to SC-18 (Mobile Code) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

Coder allows organizations to provision remote development environments via Terraform. Prior to versions 2.29.7 and 2.30.2, the `dotfiles` registry module passed unsanitized user input to shell commands, allowing arbitrary code execution inside a provisioned workspace. Any user who supplied a…

more

crafted `dotfiles_uri` value (for example, one containing shell command substitution such as `$(...)`) could achieve command execution in their own workspace. The Create Workspace page's `mode=auto` deep links amplified this into a one-click attack: an attacker could craft a URL that prefilled `param.dotfiles_uri` and silently provisioned a workspace with the attacker-controlled value, with no explicit user confirmation. In versions 2.29.7 and 2.30.2, input validation was added to the dotfiles module to reject URIs and usernames containing special characters, and the unsafe `eval`/`sh -c` usage was removed. This eliminated the command injection at its source.

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.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
T1204.001 Malicious Link Execution
An adversary may rely upon a user clicking a malicious link in order to gain execution.
Why these techniques?

CVE-2026-44454 is a command injection (CWE-78) in the dotfiles registry module that accepts unsanitized user input containing shell metacharacters (e.g., $(...)) and passes it directly to eval/sh -c, enabling arbitrary command execution inside a provisioned workspace (T1059.004). The vulnerability is exposed through a public-facing web application endpoint (Create Workspace page) and can be triggered via a crafted deep-link URL (mode=auto) that pre-fills param.dotfiles_uri, constituting exploitation of a public-facing application (T1190) and a one-click malicious link (T1204.001).

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

CVEs Like This One

CVE-2026-55427Same product: Coder Coder
CVE-2026-55431Same product: Coder Coder
CVE-2026-55079Same product: Coder Coder
CVE-2026-55429Same product: Coder Coder
CVE-2026-55438Same product: Coder Coder
CVE-2026-55432Same product: Coder Coder
CVE-2026-45796Same product: Coder Coder
CVE-2026-55430Same product: Coder Coder
CVE-2026-46354Same product: Coder Coder
CVE-2026-55076Same product: Coder Coder

Affected Assets

coder
coder
≤ 2.29.7 · 2.30.0 — 2.30.2

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • SI-10 Information Input Validation
  • SC-18 Mobile Code
  • CM-7 Least Functionality
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V1.2.5
  • V1.2.8
  • V15.2.5

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly enforces validation of untrusted user input (dotfiles_uri) before it reaches shell commands, blocking the command-injection vector.

prevent

Restricts the use of mobile or user-supplied code (dotfiles scripts) that can be executed without proper sandboxing or validation.

prevent

Limits the system to only the functionality required, reducing the attack surface that allows arbitrary shell execution via crafted URIs.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

PR.PS-06's SDLC practices directly require secure coding and input handling that blocks command-injection defects, yet the single broad outcome leaves many specific neutralization vectors and verification gaps unaddressed.

PR.PS-02 partial match
prevents

Routine patching/maintenance can remediate known command-injection CVEs in dependencies (partial forward) but does nothing to stop developers from introducing improper neutralization in custom code (none reverse).

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

detects

Security testing and code review target insecure use of operating-system command interfaces, catching command-injection flaws introduced during development.

References