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

CVE-2026-33312: Vikunja Auth Bypass Vulnerability

CVE-2026-33312 is an authorization bypass flaw in Vikunja that allows read-only users to delete project background images. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2026-33312 Overview

CVE-2026-33312 is a Broken Access Control vulnerability affecting Vikunja, an open-source self-hosted task management platform. The vulnerability exists in the DELETE /api/v1/projects/:project/background endpoint, which incorrectly checks for CanRead permission instead of the required CanUpdate permission. This misconfiguration allows any user with read-only access to a project to permanently delete its background image, resulting in unauthorized data modification.

Critical Impact

Users with read-only access can permanently delete project background images, violating the principle of least privilege and potentially disrupting project workflows across affected Vikunja instances.

Affected Products

  • Vikunja versions 0.20.2 through 2.1.x
  • All Vikunja deployments using the affected REST API endpoint
  • Self-hosted Vikunja instances with multi-user project access

Discovery Timeline

  • 2026-03-20 - CVE-2026-33312 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33312

Vulnerability Analysis

This vulnerability is classified under CWE-863 (Incorrect Authorization), which occurs when software performs an authorization check but does not correctly verify the user's privileges for the requested action. In Vikunja's case, the API endpoint responsible for deleting project backgrounds validates only whether the user can read the project rather than whether they have permission to update or modify it.

The flaw allows horizontal privilege abuse where users who should only have viewing capabilities can perform destructive actions on shared projects. This represents a violation of the separation between read and write operations that is fundamental to access control systems.

Root Cause

The root cause is an incorrect permission check in the project background deletion endpoint. The code path evaluates CanRead authorization when it should evaluate CanUpdate authorization. This logic error means that the authorization boundary between read-only and read-write users is not properly enforced for this specific operation.

Attack Vector

The attack is network-based and requires low complexity to execute. An authenticated attacker with only read-only access to a project can exploit this vulnerability by sending a crafted DELETE request to the /api/v1/projects/:project/background endpoint. Upon successful exploitation, the project's background image is permanently deleted.

The attack requires:

  1. Valid authentication to the Vikunja instance
  2. Read-only access to at least one project with a background image
  3. Knowledge of the project ID (easily obtainable through normal read access)

The vulnerability mechanism involves the authorization middleware passing through the request when it confirms read permissions, without checking the more restrictive update permissions required for destructive operations. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33312

Indicators of Compromise

  • Unexpected deletion of project background images, especially in projects where the configured users should only have read access
  • API access logs showing DELETE requests to /api/v1/projects/:project/background from users with read-only permissions
  • User complaints about missing background images without corresponding admin actions

Detection Strategies

  • Review API access logs for DELETE requests to the project background endpoint from users without write permissions
  • Implement alerting on successful DELETE operations to the background endpoint combined with permission auditing
  • Monitor for patterns of unauthorized resource modification across multiple projects

Monitoring Recommendations

  • Enable detailed API request logging for all project modification endpoints
  • Implement role-based access audit trails that capture permission levels at the time of each request
  • Set up automated alerts for any destructive API operations performed by users with limited permissions

How to Mitigate CVE-2026-33312

Immediate Actions Required

  • Upgrade Vikunja to version 2.2.0 or later immediately
  • Audit project background images for unauthorized deletions before upgrading
  • Review access logs to identify any potential exploitation that may have already occurred
  • Consider temporarily restricting API access to sensitive endpoints until the patch is applied

Patch Information

Vikunja version 2.2.0 contains the fix for this vulnerability. The patch corrects the permission check from CanRead to CanUpdate for the project background deletion endpoint. For more information about the fix, see the Vikunja v2.2.0 Release Announcement and the GitHub Security Advisory.

Workarounds

  • If immediate upgrade is not possible, consider implementing a reverse proxy rule to block DELETE requests to /api/v1/projects/*/background
  • Temporarily revoke read-only access for untrusted users until the patch can be applied
  • Backup project configurations including background images to enable recovery if exploitation occurs
bash
# Example nginx rule to block the vulnerable endpoint until patching
location ~ ^/api/v1/projects/[^/]+/background$ {
    if ($request_method = DELETE) {
        return 403;
    }
    proxy_pass http://vikunja_backend;
}

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 Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • Vikunja Changelog Announcement
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33668: Vikunja Auth Bypass Vulnerability

  • CVE-2026-33473: Vikunja Auth Bypass Vulnerability

  • CVE-2026-33678: Vikunja Auth Bypass Vulnerability

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