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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-35595

CVE-2026-35595: Vikunja Privilege Escalation Vulnerability

CVE-2026-35595 is a privilege escalation flaw in Vikunja task management platform that allows users to gain admin permissions by reparenting projects. This post covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-35595 Overview

CVE-2026-35595 is a privilege escalation vulnerability affecting Vikunja, an open-source self-hosted task management platform. The vulnerability exists in the permission checking mechanism during project reparenting operations. Prior to version 2.3.0, the CanUpdate check in pkg/models/project_permissions.go only validates that a user has CanWrite permissions on the new parent project when changing parent_project_id. However, due to how Vikunja's permission model uses a recursive Common Table Expression (CTE) that traverses the project hierarchy to compute permissions, moving a project under a different parent fundamentally alters the permission inheritance chain. This allows an attacker with inherited Write access to escalate their privileges to Admin level by reparenting projects under their own project tree.

Critical Impact

Authenticated users with inherited Write access can escalate to Admin privileges on any project they can reparent, potentially gaining full control over sensitive task data and project configurations.

Affected Products

  • Vikunja versions prior to 2.3.0
  • Self-hosted Vikunja instances with shared project hierarchies
  • Organizations using nested project structures with inherited permissions

Discovery Timeline

  • 2026-04-10 - CVE CVE-2026-35595 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-35595

Vulnerability Analysis

This privilege escalation vulnerability (CWE-269: Improper Privilege Management) stems from an authorization bypass in Vikunja's project permission handling. The core issue lies in the insufficient validation performed during project reparenting operations. When a user attempts to move a project to a different parent, the application only checks if the user has Write permissions on the target parent project, failing to account for the cascading permission changes that occur due to the recursive permission inheritance model.

Vikunja's permission system calculates user access levels by walking up the project hierarchy using a recursive CTE query. When a project's parent is changed, this fundamentally alters which permissions are inherited. An attacker who has inherited Write access from a parent project share can exploit this by moving a child project under a project tree they own. Once the project is under their ownership hierarchy, the recursive CTE resolves their ownership as Admin (permission level 2) on the moved project, effectively bypassing the intended access controls.

Root Cause

The root cause is located in pkg/models/project_permissions.go at lines 139-148, where the CanUpdate check validates only CanWrite permissions on the new parent project without considering the permission inheritance implications. The permission model's reliance on a recursive CTE to walk up the project hierarchy means that changing a project's parent fundamentally transforms which permissions apply to that project. The authorization logic fails to recognize that reparenting is not merely a structural change but a security-significant operation that can alter effective permissions.

Attack Vector

The attack exploits the network-accessible API with low complexity, requiring only authenticated access with inherited Write permissions. An attacker would:

  1. Identify a project where they have inherited Write access through a parent project share
  2. Create or identify a project tree where they have ownership/Admin privileges
  3. Use the project update API to change the parent_project_id of the target project to point to their owned project
  4. The recursive CTE now resolves the attacker's ownership of the new parent as Admin access on the moved project
  5. The attacker gains full Admin control over the moved project and potentially its child projects

The vulnerability is exploited through the standard project update API endpoint by modifying the parent_project_id field. For detailed technical information, refer to the GitHub Security Advisory GHSA-2vq4-854f-5c72.

Detection Methods for CVE-2026-35595

Indicators of Compromise

  • Unexpected changes to parent_project_id values in project records
  • Audit logs showing project reparenting operations by users with only inherited Write access
  • Users with elevated privileges on projects they previously had limited access to
  • Unusual permission inheritance patterns in project hierarchies

Detection Strategies

  • Monitor API calls to project update endpoints for parent_project_id modifications
  • Implement logging for all project hierarchy changes with before/after permission states
  • Alert on project reparenting operations where the user's permission level increases post-operation
  • Review audit trails for patterns of projects being moved under user-owned project trees

Monitoring Recommendations

  • Enable detailed audit logging for all project modification operations
  • Track permission level changes across project hierarchy modifications
  • Monitor for users accessing projects at Admin level where they previously had Write access
  • Implement real-time alerting on project structural changes in sensitive project trees

How to Mitigate CVE-2026-35595

Immediate Actions Required

  • Upgrade Vikunja to version 2.3.0 or later immediately
  • Audit project hierarchies for unauthorized reparenting operations
  • Review user permission levels on projects that have been recently moved
  • Consider temporarily restricting project reparenting capabilities for non-admin users until patched

Patch Information

The vulnerability has been fixed in Vikunja version 2.3.0. The patch is available through the GitHub Release Version 2.3.0. The specific fix can be reviewed in the GitHub Commit Update and the associated GitHub Pull Request.

Workarounds

  • Disable or restrict project reparenting functionality at the application or API gateway level until patching is complete
  • Implement additional authorization checks at the reverse proxy level for project update operations
  • Review and limit the use of inherited permissions through parent project shares
  • Consider flattening project hierarchies to reduce reliance on permission inheritance
bash
# Configuration example
# Verify current Vikunja version
vikunja version

# Upgrade to patched version 2.3.0
# For Docker deployments:
docker pull vikunja/vikunja:2.3.0
docker-compose down && docker-compose up -d

# Review audit logs for suspicious reparenting operations
grep -i "parent_project_id" /var/log/vikunja/audit.log

# Restart Vikunja service after upgrade
systemctl restart vikunja

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechVikunja

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-269
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request

  • GitHub Release Version 2.3.0

  • GitHub Security Advisory GHSA-2vq4-854f-5c72
  • Related CVEs
  • CVE-2026-35602: Vikunja File Size Bypass Vulnerability

  • CVE-2026-35598: Vikunja Auth Bypass Vulnerability

  • CVE-2026-35594: Vikunja Auth Bypass Vulnerability

  • CVE-2026-35601: Vikunja CalDAV XSS Vulnerability
Default Legacy - Prefooter | 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