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-27723

CVE-2026-27723: OpenProject Auth Bypass Vulnerability

CVE-2026-27723 is an authentication bypass vulnerability in OpenProject that allows attackers to create wiki pages in unpermitted projects. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 6, 2026

CVE-2026-27723 Overview

CVE-2026-27723 is an Improper Access Control vulnerability affecting OpenProject, an open-source, web-based project management software. Prior to versions 17.0.5 and 17.1.2, an attacker can create wiki pages belonging to unpermitted projects through an improperly authenticated request. This vulnerability allows authenticated users to bypass project-level authorization controls and create content in projects they should not have access to.

Critical Impact

Authenticated attackers can bypass project permissions to create unauthorized wiki pages in restricted projects, potentially leading to data tampering, misinformation injection, or unauthorized information disclosure within organizational project management workflows.

Affected Products

  • OpenProject versions prior to 17.0.5
  • OpenProject versions prior to 17.1.2

Discovery Timeline

  • 2026-03-05 - CVE-2026-27723 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-27723

Vulnerability Analysis

This vulnerability stems from improper access control (CWE-284) in OpenProject's wiki page creation functionality. The application fails to properly validate user permissions when processing wiki page creation requests, allowing authenticated users to create pages in projects where they lack the necessary authorization.

The flaw exists in how OpenProject handles authentication checks for wiki-related API endpoints. While the application properly validates user authentication, it does not adequately verify that the authenticated user has the specific project-level permissions required to create wiki content in the target project. This creates a horizontal privilege escalation scenario where a user with access to one project can manipulate wiki content in other projects they should not be able to modify.

Root Cause

The root cause is an improper authentication check in the wiki page creation request handler. The endpoint validates that the user is authenticated to the OpenProject instance but fails to enforce project-specific authorization checks. This means any authenticated user can craft a request specifying a project identifier for which they lack write permissions, and the application will process the wiki page creation without properly validating the user's relationship to that project.

Attack Vector

The attack is network-based and requires low privileges (an authenticated user account). An attacker with a valid OpenProject account can exploit this vulnerability by sending a crafted HTTP request to the wiki page creation endpoint, specifying a target project ID for a project they do not have access to. The improperly authenticated request processing allows the wiki page to be created despite the lack of proper authorization.

The attack requires no user interaction and can be executed directly against the vulnerable endpoint. Since this is an access control bypass rather than a complete authentication bypass, the attacker must have valid credentials to any project within the OpenProject instance to exploit the vulnerability.

Detection Methods for CVE-2026-27723

Indicators of Compromise

  • Unexpected wiki pages appearing in projects with restricted access controls
  • Audit logs showing wiki page creation events from users not assigned to the target project
  • API request logs showing wiki creation attempts targeting project IDs inconsistent with user permissions
  • User activity patterns indicating cross-project wiki operations that violate established access policies

Detection Strategies

  • Monitor OpenProject audit logs for wiki page creation events and cross-reference with project membership data
  • Implement alerting on wiki creation API calls where the requesting user is not a member of the target project
  • Review web server access logs for suspicious patterns in wiki-related endpoint requests
  • Deploy application-layer monitoring to detect authorization bypass attempts

Monitoring Recommendations

  • Enable detailed audit logging for all wiki-related operations in OpenProject
  • Configure SIEM rules to correlate wiki creation events with user-project membership data
  • Establish baseline user behavior patterns for wiki operations and alert on anomalies
  • Regularly review wiki content across projects to identify unauthorized additions

How to Mitigate CVE-2026-27723

Immediate Actions Required

  • Upgrade OpenProject to version 17.0.5 or 17.1.2 immediately
  • Review wiki content across all projects for unauthorized pages created prior to patching
  • Audit user activity logs to identify potential exploitation attempts
  • Temporarily restrict wiki creation permissions to trusted users until patching is complete

Patch Information

OpenProject has released patched versions that address this vulnerability. Organizations should upgrade to one of the following versions:

  • OpenProject v17.0.5 - Patched release for the 17.0.x branch
  • OpenProject v17.1.2 - Patched release for the 17.1.x branch

For detailed information about this security issue, refer to the GitHub Security Advisory GHSA-9gc6-3xjq-pwc9.

Workarounds

  • Restrict wiki creation permissions at the application level to only trusted administrators until patching is feasible
  • Implement network-level access controls to limit which users can access wiki-related API endpoints
  • Enable mandatory review workflows for wiki content creation to catch unauthorized additions
  • Consider temporarily disabling wiki functionality if it is not business-critical until the patch is applied
bash
# Example: Check current OpenProject version
openproject version

# Example: Upgrade OpenProject using packaged installation
sudo openproject reconfigure

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpenproject

  • SeverityMEDIUM

  • CVSS Score4.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Release v17.0.5

  • GitHub Release v17.1.2

  • GitHub Security Advisory GHSA-9gc6-3xjq-pwc9
  • Related CVEs
  • CVE-2026-30239: OpenProject Auth Bypass Vulnerability

  • CVE-2026-24777: OpenProject Auth Bypass Vulnerability

  • CVE-2026-24772: OpenProject Auth Bypass Vulnerability

  • CVE-2026-23646: OpenProject Auth Bypass 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