Cyber Resilience

CVE-2026-25763

RCE in Openproject ≤ 16.6.7

Published
06 February 2026
Modified
13 February 2026
Patch / advisory
CVSS Score v4 9.4
Click a component to see what it means
Raw vectorCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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.0046 38th percentile
Risk Priority 40 floored blend · peak EPSS

Summary

CVE-2026-25763 is a critical-severity OS Command Injection (CWE-78) vulnerability in Openproject Openproject. Its CVSS base score is 9.4 (Critical).

Operationally, exploitation aligns with the MITRE ATT&CK technique Command and Scripting Interpreter (T1059); ranked at the 38th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to SA-11 (Developer Testing and Evaluation) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

CVE-2026-25763 is an arbitrary file write vulnerability in OpenProject, an open-source web-based project management software. The issue affects versions prior to 16.6.7 and 17.0.3, stemming from improper handling of the "rev" parameter in the repository changes endpoint (/projects/:project_id/repository/changes) when rendering the "latest changes" view using git log. Attackers can supply a specially crafted rev value, such as rev=--output=/tmp/poc.txt, to inject git log command-line options. This causes Git to interpret the attacker-controlled input as an option and write output to an arbitrary path writable by the OpenProject process user. The vulnerability is rated at CVSS 9.9 (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H) and maps to CWE-78 (OS Command Injection).

Any authenticated user with the :browse_repository permission on a project can exploit this vulnerability. By injecting options into the git log command, they can create or overwrite files with git log output. Furthermore, by crafting custom commits, attackers can embed valid shell scripts into the output, enabling remote code execution (RCE). Successful RCE allows attackers to establish a reverse shell to the target host and access confidential files outside OpenProject, such as /etc/passwd.

The vulnerability has been patched in OpenProject versions 16.6.7 and 17.0.3. Official mitigation details are available in the project's GitHub security advisory (GHSA-x37c-hcg5-r5m7) and release notes for the patched versions at https://github.com/opf/openproject/releases/tag/v16.6.7 and https://github.com/opf/openproject/releases/tag/v17.0.3. Security practitioners should upgrade affected installations immediately to prevent exploitation.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

OpenProject is an open-source, web-based project management software. Prior to versions 16.6.7 and 17.0.3, an arbitrary file write vulnerability exists in OpenProject’s repository changes endpoint (/projects/:project_id/repository/changes) when rendering the “latest changes” view via git log. By supplying a specially crafted…

more

rev value (for example, rev=--output=/tmp/poc.txt), an attacker can inject git log command-line options. When OpenProject executes the SCM command, Git interprets the attacker-controlled rev as an option and writes the output to an attacker-chosen path. As a result, any user with the :browse_repository permission on the project can create or overwrite arbitrary files that the OpenProject process user is permitted to write. The written contents consist of git log output, but by crafting custom commits the attacker can still upload valid shell scripts, ultimately leading to RCE. The RCE lets the attacker create a reverse shell to the target host and view confidential files outside of OpenProject, such as /etc/passwd. This issue has been patched in versions 16.6.7 and 17.0.3.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1059 Command and Scripting Interpreter Execution
Adversaries may abuse command and script interpreters to execute commands, scripts, or binaries.
T1059.003 Windows Command Shell Execution
Adversaries may abuse the Windows command shell for execution.
T1059.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
T1059.001 PowerShell Execution
Adversaries may abuse PowerShell commands and scripts for execution.
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.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2026-22601Same product: Openproject Openproject
CVE-2026-24685Same product: Openproject Openproject
CVE-2026-24776Same product: Openproject Openproject
CVE-2026-31974Same product: Openproject Openproject
CVE-2019-11600Same product: Openproject Openproject
CVE-2026-32698Same product: Openproject Openproject
CVE-2026-34717Same product: Openproject Openproject
CVE-2026-30234Same product: Openproject Openproject
CVE-2026-40896Same product: Openproject Openproject
CVE-2026-24777Same product: Openproject Openproject

Affected Assets

openproject
openproject
≤ 16.6.7 · 17.0.0 — 17.0.3

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

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

Developer testing and evaluation can discover missing or incorrect command sanitization during development.

Input validation directly neutralizes or rejects special characters that would otherwise alter OS command structure.

Least privilege reduces the permissions available to any process that could be subverted by injected commands.

Least functionality restricts available OS commands and interpreters, limiting the blast radius of injection.

Secure engineering principles require proper neutralization of untrusted input before command construction.

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.

finds

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

References