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

CVE-2026-33474: Vikunja Task Management DOS Vulnerability

CVE-2026-33474 is a denial of service vulnerability in Vikunja task management platform caused by unbounded image decoding that allows attackers to exhaust system resources. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-33474 Overview

CVE-2026-33474 is a Resource Exhaustion vulnerability affecting Vikunja, an open-source self-hosted task management platform. Starting in version 1.0.0-rc0 and prior to version 2.2.0, unbounded image decoding and resizing during preview generation allows an attacker to exhaust CPU and memory resources by uploading highly compressed but extremely large-dimension images. This vulnerability enables authenticated attackers to cause a denial of service condition against the Vikunja server.

Critical Impact

Authenticated attackers can exhaust server CPU and memory resources by uploading specially crafted images, leading to denial of service and potential system instability.

Affected Products

  • Vikunja versions 1.0.0-rc0 through 2.1.x
  • Vikunja self-hosted installations with image preview generation enabled
  • Docker and standalone deployments running vulnerable versions

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-33474 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33474

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption). The issue exists in Vikunja's image preview generation functionality, which processes uploaded images without implementing proper bounds checking on image dimensions. When a user uploads an image attachment, Vikunja automatically generates preview thumbnails. However, the image decoding and resizing operations do not validate or limit the dimensions of the input image before processing.

An attacker can craft a highly compressed image file (such as a PNG bomb or decompression bomb) that has a small file size but decompresses to extremely large dimensions. When Vikunja attempts to decode and resize such an image, the server allocates massive amounts of memory to handle the uncompressed image data, and CPU cycles are consumed processing the resize operation.

Root Cause

The root cause of this vulnerability is the absence of dimension validation and resource limits in the image processing pipeline. The preview generation code trusts the compressed image data without first checking the declared or actual image dimensions against reasonable upper bounds. This allows attackers to bypass file size restrictions that may be in place, since the attack relies on compression ratio exploitation rather than large file uploads.

Attack Vector

This vulnerability is exploitable over the network by any authenticated user with permissions to upload attachments. The attacker uploads a specially crafted image file designed to consume excessive resources when decompressed. The attack requires low privileges (authenticated user account) and no user interaction from administrators or other users.

The exploitation process involves:

  1. Creating a decompression bomb image with small file size but massive decoded dimensions
  2. Uploading the malicious image as an attachment to a task or project
  3. The server automatically processes the image for preview generation
  4. Resource exhaustion occurs as the server attempts to decode and resize the image

For technical implementation details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33474

Indicators of Compromise

  • Abnormally high memory consumption during image upload operations
  • Sustained CPU spikes correlated with attachment uploads
  • Server out-of-memory (OOM) events in system logs
  • Repeated image processing timeouts or failures

Detection Strategies

  • Monitor system resource utilization for sudden spikes during file upload operations
  • Implement application-level logging for image processing events including dimensions and processing time
  • Review uploaded attachments for suspicious image files with unusually small file sizes
  • Set up alerting for OOM killer events targeting Vikunja processes

Monitoring Recommendations

  • Configure resource monitoring dashboards to track Vikunja service memory and CPU consumption
  • Enable detailed logging of image processing operations including input image dimensions
  • Implement rate limiting alerts for rapid successive upload attempts from single users
  • Monitor container or process health for unexpected restarts or crashes

How to Mitigate CVE-2026-33474

Immediate Actions Required

  • Upgrade Vikunja to version 2.2.0 or later immediately
  • Review recent upload activity logs for potential exploitation attempts
  • Consider temporarily disabling image preview generation if immediate patching is not possible
  • Implement resource limits (memory and CPU) for the Vikunja service at the container or system level

Patch Information

The vulnerability has been patched in Vikunja version 2.2.0. The fix implements proper bounds checking on image dimensions before processing, preventing resource exhaustion attacks via oversized images. Users should upgrade to version 2.2.0 or later to remediate this vulnerability. For detailed release information, see the Vikunja Release Notes v2.2.0.

Workarounds

  • Deploy container resource limits to constrain memory and CPU available to Vikunja
  • Implement reverse proxy rules to reject uploads exceeding reasonable image dimension thresholds
  • Use cgroups or similar OS-level resource controls to limit the Vikunja process
  • Temporarily disable or restrict attachment upload functionality until patching is complete
bash
# Docker resource limits example
docker run -d \
  --name vikunja \
  --memory="1g" \
  --memory-swap="1g" \
  --cpus="2" \
  vikunja/vikunja:2.2.0

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.04%

  • 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-400
  • Technical References
  • GitHub Security Advisory

  • Vikunja Release Notes v2.2.0
  • Related CVEs
  • CVE-2026-33668: Vikunja Auth Bypass Vulnerability

  • CVE-2026-33473: Vikunja Auth Bypass Vulnerability

  • CVE-2026-33677: Vikunja Information Disclosure Vulnerability

  • CVE-2026-33679: Vikunja Task Management SSRF 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