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

CVE-2026-23646: OpenProject Auth Bypass Vulnerability

CVE-2026-23646 is an authentication bypass vulnerability in OpenProject that allows users to delete other users' sessions through improper validation. This post covers the technical details, affected versions, and patches.

Published: January 23, 2026

CVE-2026-23646 Overview

A vulnerability has been identified in OpenProject, an open-source web-based project management software, that allows authenticated users to terminate other users' sessions through an Insecure Direct Object Reference (IDOR) flaw. The vulnerability exists in the session management functionality accessible via Account Settings → Sessions, where the application fails to properly validate session ownership before deletion.

When a user attempts to delete a session through the DELETE /my/sessions/:id endpoint, the application does not verify that the session belongs to the requesting user. Because session object identifiers use predictable incremental integers, an attacker can enumerate and delete arbitrary user sessions, effectively forcing other users to be unauthenticated from the application.

Critical Impact

Authenticated attackers can terminate any user's active sessions by iterating through session IDs, causing widespread denial of service and disrupting project management workflows across the organization.

Affected Products

  • OpenProject versions prior to 16.6.5
  • OpenProject versions prior to 17.0.1

Discovery Timeline

  • 2026-01-19 - CVE-2026-23646 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2026-23646

Vulnerability Analysis

This vulnerability is classified as CWE-488 (Exposure of Data Element to Wrong Session). The core issue lies in the absence of authorization checks within the session deletion functionality. When users access the session management interface, they can view and terminate their own active sessions—a legitimate security feature. However, the backend implementation fails to enforce ownership validation when processing session deletion requests.

The attack requires only low-privileged authenticated access to the OpenProject instance. Once authenticated, an attacker can craft HTTP DELETE requests to the /my/sessions/:id endpoint with arbitrary session identifiers. Since the session IDs follow a predictable sequential integer pattern, attackers can systematically iterate through ID values to terminate sessions belonging to other users.

While the vulnerability does not expose sensitive session information such as browser identifiers, IP addresses, or authentication tokens, it creates a significant availability impact. Targeted attacks could log out administrators during critical operations, or mass enumeration could disrupt all active users across an organization.

Root Cause

The root cause is improper access control in the session management controller. The application implements session deletion functionality without verifying that the session ID in the request corresponds to a session owned by the authenticated user making the request. This authorization bypass occurs because the controller trusts the user-supplied session ID without cross-referencing it against the current user's session records.

Additionally, the use of sequential integer identifiers for session objects creates a predictable enumeration vector. Combined with the missing ownership check, this design flaw transforms a minor ID predictability issue into an exploitable denial of service vulnerability.

Attack Vector

The attack is network-based and requires low-privileged authentication to the OpenProject application. An attacker proceeds through the following steps:

  1. Authenticate to the OpenProject instance with any valid user account
  2. Navigate to Account Settings → Sessions to observe the session management interface
  3. Capture a legitimate session deletion request to understand the API endpoint structure
  4. Modify the session ID parameter in the DELETE request to target other session IDs
  5. Iterate through sequential integer values to terminate sessions belonging to other users

The vulnerability can be exploited through simple HTTP request manipulation. An attacker would send requests to the endpoint DELETE /my/sessions/:id while incrementing or decrementing the ID value to target sessions belonging to other users. This can be automated to quickly terminate all active sessions in the system, causing mass user disconnection.

For technical implementation details, refer to the GitHub Security Advisory GHSA-w422-xf8f-v4vp.

Detection Methods for CVE-2026-23646

Indicators of Compromise

  • Unusual volume of DELETE requests to /my/sessions/:id endpoint from a single user
  • Sequential or patterned session ID values in deletion requests
  • Correlation between session deletion requests and unexpected user logout events
  • Multiple users reporting simultaneous session terminations without explicit logout actions

Detection Strategies

  • Monitor web server logs for excessive DELETE requests to the session management endpoint from individual user accounts
  • Implement rate limiting detection on the /my/sessions/:id endpoint to identify enumeration attempts
  • Create alerts for session deletion events where the target session ID does not belong to the requesting user
  • Deploy application-layer intrusion detection rules to identify sequential parameter manipulation patterns

Monitoring Recommendations

  • Enable detailed request logging for the session management API endpoints
  • Configure SIEM rules to correlate session deletion events with unexpected authentication failures
  • Implement user behavior analytics to detect anomalous session management activity patterns
  • Monitor for spikes in authenticated API requests to session-related endpoints

How to Mitigate CVE-2026-23646

Immediate Actions Required

  • Upgrade OpenProject to version 16.6.5 or 17.0.1 immediately
  • Review application logs for signs of session enumeration or mass session termination activity
  • Alert users about potential unauthorized session terminations and advise password resets if compromise is suspected
  • Consider temporarily restricting access to the OpenProject instance until patching is complete

Patch Information

OpenProject has released security patches addressing this vulnerability in versions 16.6.5 and 17.0.1. The patches implement proper authorization checks to ensure users can only delete sessions that belong to their own account.

  • OpenProject Release v16.6.5
  • OpenProject Release v17.0.1

For full technical details on the vulnerability and remediation, consult the GitHub Security Advisory GHSA-w422-xf8f-v4vp.

Workarounds

  • No known workarounds are available for this vulnerability
  • The vulnerability does not depend on specific permissions or features that can be temporarily disabled
  • Applying the official patch is the only effective remediation

Organizations should prioritize upgrading to the patched versions as no configuration changes or temporary mitigations can address this authorization bypass vulnerability.

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 Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-488
  • Technical References
  • GitHub OpenProject Release v16.6.5

  • GitHub OpenProject Release v17.0.1

  • GitHub Security Advisory GHSA-w422-xf8f-v4vp
  • Related CVEs
  • CVE-2026-30239: OpenProject Auth Bypass Vulnerability

  • CVE-2026-27723: OpenProject Auth Bypass Vulnerability

  • CVE-2026-24777: OpenProject Auth Bypass Vulnerability

  • CVE-2026-24772: 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