The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-25763

CVE-2026-25763: OpenProject Git Command Injection RCE Flaw

CVE-2026-25763 is a remote code execution vulnerability in OpenProject that allows attackers to inject git log options and write arbitrary files. This article covers the technical details, affected versions, and patches.

Published: February 13, 2026

CVE-2026-25763 Overview

CVE-2026-25763 is a critical command injection vulnerability in OpenProject, an open-source, web-based project management software. The 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 rev value (for example, rev=--output=/tmp/poc.txt), an attacker can inject git log command-line options, enabling arbitrary file write that can escalate to remote code execution.

Critical Impact

Any authenticated user with the :browse_repository permission can exploit this vulnerability to create or overwrite arbitrary files on the server, potentially leading to full system compromise through remote code execution and access to sensitive files like /etc/passwd.

Affected Products

  • OpenProject versions prior to 16.6.7
  • OpenProject versions prior to 17.0.3
  • OpenProject instances with Git repository integration enabled

Discovery Timeline

  • 2026-02-06 - CVE CVE-2026-25763 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-25763

Vulnerability Analysis

This vulnerability is classified as CWE-78 (OS Command Injection), where improper neutralization of special elements used in an OS command allows attackers to manipulate the underlying git log command execution. The vulnerability can be exploited over the network by any authenticated user who has been granted the :browse_repository permission on a project with a connected Git repository.

The attack requires low complexity with no user interaction needed. When successfully exploited, an attacker gains the ability to write arbitrary files to any location writable by the OpenProject process user. This file write primitive can be escalated to remote code execution by crafting malicious git commits containing shell script content, which when written to strategic locations (such as cron directories or web-accessible paths), enables full system compromise.

Root Cause

The root cause of this vulnerability lies in insufficient input validation and sanitization of the rev parameter in the repository changes endpoint. When processing requests to /projects/:project_id/repository/changes, OpenProject passes the user-supplied rev parameter directly to the git log command without properly sanitizing or validating that it contains only legitimate revision identifiers.

Git's command-line interface interprets arguments starting with -- as options rather than revision specifiers. This allows an attacker to inject arbitrary git log options such as --output=, which instructs git to write its output to a specified file path instead of returning it to the application.

Attack Vector

The attack vector exploits the network-accessible repository changes endpoint. An attacker with valid credentials and :browse_repository permission can craft a malicious HTTP request targeting the vulnerable endpoint:

  1. The attacker sends a request to /projects/:project_id/repository/changes with a crafted rev parameter containing git command-line options (e.g., --output=/tmp/poc.txt)
  2. OpenProject constructs and executes a git log command incorporating the malicious rev value
  3. Git interprets the injected --output flag and writes the log output to the attacker-specified path
  4. To achieve RCE, the attacker can create specially crafted git commits with shell script content in commit messages or file contents
  5. When the git log output containing this malicious content is written to an executable location (such as /etc/cron.d/ or a web-accessible directory), the attacker gains code execution
  6. This can be leveraged to establish a reverse shell, providing full access to the target host and confidential files outside of OpenProject

Detection Methods for CVE-2026-25763

Indicators of Compromise

  • Unusual HTTP requests to /projects/*/repository/changes endpoints containing --output= or other git command-line flags in the rev parameter
  • Unexpected file creation or modification by the OpenProject process user in system directories
  • New or modified files in cron directories, web roots, or other sensitive locations created by the web application user
  • Reverse shell connections originating from the OpenProject server process

Detection Strategies

  • Monitor web application logs for requests to repository endpoints containing suspicious patterns like --output, --format, or other git options in URL parameters
  • Implement file integrity monitoring on critical system directories to detect unauthorized file creation or modification
  • Deploy network monitoring to detect outbound connections from the OpenProject server to unexpected destinations, which may indicate reverse shell activity
  • Review authentication logs for users with :browse_repository permissions accessing repository endpoints with unusual request patterns

Monitoring Recommendations

  • Enable verbose logging for the OpenProject application to capture full request details including query parameters
  • Implement alerting on git process executions with unusual command-line arguments
  • Monitor system process trees for child processes spawned from the OpenProject application that exhibit shell-like behavior
  • Set up file creation alerts for directories commonly targeted in webshell attacks

How to Mitigate CVE-2026-25763

Immediate Actions Required

  • Upgrade OpenProject to version 16.6.7 or 17.0.3 immediately to address this vulnerability
  • Audit user permissions to ensure only trusted users have the :browse_repository permission
  • Review recent activity logs for signs of exploitation attempts on repository endpoints
  • If unable to patch immediately, consider temporarily disabling Git repository integration or restricting access to the repository changes endpoint

Patch Information

OpenProject has released patched versions that address this vulnerability:

  • OpenProject v16.6.7 - Security patch for the 16.x branch
  • OpenProject v17.0.3 - Security patch for the 17.x branch

For detailed information about this vulnerability, refer to the GitHub Security Advisory GHSA-x37c-hcg5-r5m7.

Workarounds

  • Restrict the :browse_repository permission to only highly trusted users until the patch can be applied
  • Implement web application firewall rules to block requests containing git command-line options (patterns like --output, --format, --exec) in URL parameters
  • Consider temporarily disabling external Git repository integration if not critical to operations
  • Apply file system restrictions to limit the directories writable by the OpenProject process user
bash
# Example: Restrict OpenProject process user's write permissions
# Review and limit write access for the openproject user
sudo find /var -type d -user openproject -writable 2>/dev/null
# Remove unnecessary write permissions to sensitive directories
sudo chmod o-w /etc/cron.d /etc/cron.daily /var/www

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpenproject

  • SeverityCRITICAL

  • CVSS Score9.4

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS: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
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Technical References
  • GitHub OpenProject Release v16.6.7

  • GitHub OpenProject Release v17.0.3

  • GitHub Security Advisory GHSA-x37c-hcg5-r5m7
  • Related CVEs
  • CVE-2026-22601: OpenProject RCE Vulnerability

  • CVE-2026-34717: OpenProject SQL Injection Vulnerability

  • CVE-2026-32703: OpenProject XSS Vulnerability

  • CVE-2026-32698: OpenProject SQL Injection Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English