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

CVE-2026-35599: Vikunja DoS Vulnerability

CVE-2026-35599 is a denial of service flaw in Vikunja that allows attackers to exhaust CPU resources through malicious repeating tasks. This article covers technical details, affected versions, impact, and mitigation.

Published: April 17, 2026

CVE-2026-35599 Overview

CVE-2026-35599 is an algorithmic complexity vulnerability affecting Vikunja, an open-source self-hosted task management platform. Prior to version 2.3.0, the addRepeatIntervalToTime function contains an inefficient O(n) loop that advances a date by the task's RepeatAfter duration until it exceeds the current time. By creating a repeating task with a 1-second interval and a due date far in the past, an attacker can trigger billions of loop iterations, consuming CPU resources and holding database connections for extended periods per request.

Critical Impact

Authenticated attackers can cause significant service degradation or denial of service by exhausting server CPU resources and database connection pools through specially crafted repeating task requests.

Affected Products

  • Vikunja versions prior to 2.3.0

Discovery Timeline

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

Technical Details for CVE-2026-35599

Vulnerability Analysis

This vulnerability is classified under CWE-407 (Inefficient Algorithmic Complexity), which describes flaws where an algorithm's performance degrades dramatically based on input characteristics. The addRepeatIntervalToTime function in Vikunja's task scheduling logic implements a naive iterative approach to calculate the next occurrence of a repeating task. Rather than using mathematical computation to determine the target date directly, the function repeatedly adds the repeat interval to the task's due date until it exceeds the current system time.

When an attacker creates a task with a minimal repeat interval (1 second) combined with a due date set far in the past (potentially years), the function must iterate through an enormous number of cycles. For example, a due date set 10 years in the past would require approximately 315 million iterations. Each iteration consumes CPU cycles and, critically, maintains an active database connection throughout the operation.

Root Cause

The root cause lies in the algorithmic design of the addRepeatIntervalToTime function. Instead of calculating the number of intervals needed and jumping directly to the target date using arithmetic, the implementation uses a simple loop that increments the date one interval at a time. This creates a linear time complexity where execution time scales directly with the number of intervals between the original due date and the current time.

Attack Vector

The attack is network-accessible and requires low-privilege authentication to the Vikunja platform. An authenticated user can exploit this vulnerability by creating or modifying a repeating task with the following characteristics:

  1. A RepeatAfter interval set to the minimum value (1 second)
  2. A due date configured far in the past (months or years ago)

When the server processes this task to calculate the next occurrence, it becomes trapped in the inefficient loop. Multiple concurrent malicious requests can exhaust the server's thread pool, database connection pool, and CPU resources, effectively denying service to legitimate users.

The vulnerability does not require any special permissions beyond basic task creation capabilities, making it accessible to any authenticated user of the platform.

Detection Methods for CVE-2026-35599

Indicators of Compromise

  • Abnormally high CPU utilization on servers hosting Vikunja instances
  • Database connection pool exhaustion or connection timeout errors
  • Task creation or modification requests with unusually old due dates combined with small repeat intervals
  • Server response times degrading significantly for task-related API endpoints
  • Log entries showing long-running database transactions or connection holds

Detection Strategies

  • Monitor API requests for task creation/modification with RepeatAfter values of 1 second or similarly small intervals combined with due dates more than several months in the past
  • Implement alerting on sustained high CPU usage patterns on Vikunja application servers
  • Track database connection pool utilization and alert on persistent high usage or pool exhaustion
  • Analyze application logs for unusually long request processing times on task-related endpoints

Monitoring Recommendations

  • Deploy application performance monitoring (APM) to track request latency distributions and identify outlier requests
  • Configure database connection pool monitoring with alerts for connection starvation conditions
  • Implement rate limiting on task creation and modification endpoints as a defensive measure
  • Enable detailed request logging to capture task parameters for forensic analysis

How to Mitigate CVE-2026-35599

Immediate Actions Required

  • Upgrade Vikunja to version 2.3.0 or later immediately
  • Review existing tasks for suspicious configurations with minimal repeat intervals and past due dates
  • Consider implementing request timeout limits at the reverse proxy or load balancer level as a temporary protective measure
  • Monitor server resources closely for signs of exploitation attempts

Patch Information

The vulnerability has been addressed in Vikunja version 2.3.0. The fix is available through the official release and can be referenced via the following resources:

  • GitHub Security Advisory GHSA-r4fg-73rc-hhh7
  • GitHub Pull Request #2577
  • GitHub Commit 6df0d6c
  • Vikunja v2.3.0 Release

The patch replaces the iterative loop with an efficient calculation that directly computes the target date, eliminating the algorithmic complexity vulnerability.

Workarounds

  • Implement request timeouts at the application gateway or reverse proxy level to terminate long-running requests (e.g., 30-60 second limits)
  • Add input validation rules to reject tasks with repeat intervals below a reasonable threshold (e.g., minimum 60 seconds)
  • Configure database connection timeouts to prevent indefinite connection holds
  • Deploy rate limiting on task-related API endpoints to limit the frequency of task creation and modification requests

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechVikunja

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.05%

  • 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-407
  • Technical References
  • GitHub Commit Summary

  • GitHub Pull Request

  • GitHub Release v2.3.0

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33474: Vikunja Task Management DOS Vulnerability

  • CVE-2026-35602: Vikunja File Size Bypass Vulnerability

  • CVE-2026-35598: Vikunja Auth Bypass Vulnerability

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