Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-35598

CVE-2026-35598: Vikunja Auth Bypass Vulnerability

CVE-2026-35598 is an authentication bypass vulnerability in Vikunja that allows authenticated CalDAV users to access tasks from unauthorized projects. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-35598 Overview

CVE-2026-35598 is a Broken Access Control vulnerability in Vikunja, an open-source self-hosted task management platform. Prior to version 2.3.0, the CalDAV GetResource and GetResourcesByList methods fetch tasks by UID from the database without verifying that the authenticated user has access to the task's project. This allows any authenticated CalDAV user who knows (or guesses) a task UID to read the full task data from any project on the instance.

Critical Impact

Authenticated users can bypass project-level access controls to read sensitive task data from any project on the Vikunja instance, potentially exposing confidential information across organizational boundaries.

Affected Products

  • Vikunja versions prior to 2.3.0
  • Vikunja CalDAV API endpoints
  • Self-hosted Vikunja instances with CalDAV enabled

Discovery Timeline

  • April 10, 2026 - CVE-2026-35598 published to NVD
  • April 14, 2026 - Last updated in NVD database

Technical Details for CVE-2026-35598

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization), a common weakness where the application fails to perform proper authorization checks before granting access to protected resources. In this case, the CalDAV implementation in Vikunja does not validate whether the requesting user has legitimate access to the project containing the requested task.

The flaw exists in the task retrieval logic where authorization checks are bypassed entirely. When a CalDAV request is made to retrieve a task by its UID, the application directly queries the database and returns the task data without verifying project membership or access permissions. This represents a horizontal privilege escalation scenario where users at the same privilege level can access each other's data.

Root Cause

The root cause is a missing authorization check in the CalDAV GetResource and GetResourcesByList methods. These functions query tasks directly by their UID identifier without implementing proper access control validation. The authentication mechanism confirms the user's identity, but the authorization layer fails to verify whether that authenticated user should have access to the specific task being requested.

Attack Vector

The attack requires network access and low-privilege authenticated access to the Vikunja instance with CalDAV capabilities. An attacker would need to:

  1. Obtain valid authentication credentials for the Vikunja instance
  2. Know or enumerate task UIDs (which may follow predictable patterns)
  3. Send CalDAV requests directly referencing those task UIDs

The vulnerability can be exploited by crafting CalDAV requests that reference task UIDs belonging to other users' projects. Since task UIDs are often based on predictable formats or can be discovered through other means, an attacker can systematically enumerate and retrieve task data from across the entire instance.

Detection Methods for CVE-2026-35598

Indicators of Compromise

  • Unusual CalDAV API access patterns from authenticated users
  • High volume of GetResource or GetResourcesByList requests targeting diverse task UIDs
  • Users accessing task data from projects they are not members of
  • Sequential or enumerated task UID requests in CalDAV logs

Detection Strategies

  • Monitor CalDAV API endpoints for abnormal request patterns
  • Implement alerting on access attempts to tasks outside a user's authorized projects
  • Review web server and application logs for CalDAV requests with unusual UID patterns
  • Deploy application-level logging to track authorization decision outcomes

Monitoring Recommendations

  • Enable detailed logging for CalDAV API endpoints in Vikunja
  • Configure SIEM rules to detect enumeration patterns in CalDAV requests
  • Implement user behavior analytics to identify anomalous data access
  • Monitor for bulk data extraction indicators through CalDAV channels

How to Mitigate CVE-2026-35598

Immediate Actions Required

  • Upgrade Vikunja to version 2.3.0 or later immediately
  • Audit CalDAV access logs for potential exploitation prior to patching
  • Review which users have CalDAV access enabled and restrict if not required
  • Consider temporarily disabling CalDAV functionality until the patch is applied

Patch Information

Vikunja version 2.3.0 addresses this vulnerability by implementing proper authorization checks in the CalDAV resource retrieval methods. The fix ensures that task access requests are validated against the user's project permissions before returning any data.

The security fix is available through:

  • GitHub Release v2.3.0
  • GitHub Commit 879462d717351fe5d276ddec5246bdec31b41661
  • Pull Request #2579

For additional details, see the GitHub Security Advisory GHSA-48ch-p4gq-x46x.

Workarounds

  • Disable CalDAV access for users who do not require it as a temporary measure
  • Implement network-level access controls to restrict CalDAV endpoint access
  • Deploy a reverse proxy with additional authorization checks for CalDAV requests
  • Monitor and audit all CalDAV access until the patch can be applied

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechVikunja

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

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

  • GitHub Pull Request #2579

  • GitHub Release v2.3.0

  • GitHub Security Advisory GHSA-48ch-p4gq-x46x
  • Related CVEs
  • CVE-2026-35594: Vikunja Auth Bypass Vulnerability

  • CVE-2026-35597: Vikunja TOTP Auth Bypass Vulnerability

  • CVE-2026-34727: Vikunja Auth Bypass Vulnerability

  • CVE-2026-40103: Vikunja Auth Bypass 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