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

CVE-2026-33678: Vikunja Auth Bypass Vulnerability

CVE-2026-33678 is an authentication bypass flaw in Vikunja that allows authenticated users to access unauthorized attachments across projects. This post covers technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-33678 Overview

CVE-2026-33678 is a critical Insecure Direct Object Reference (IDOR) vulnerability in Vikunja, an open-source self-hosted task management platform. Prior to version 2.2.1, the TaskAttachment.ReadOne() function queries attachments by ID only (WHERE id = ?), ignoring the task ID from the URL path. The permission check in CanRead() validates access to the task specified in the URL, but ReadOne() loads a different attachment that may belong to a task in another project. This flaw allows any authenticated user to download or delete any attachment in the system by providing their own accessible task ID with a target attachment ID. Since attachment IDs are sequential integers, enumeration is trivial.

Critical Impact

Authenticated attackers can download or delete arbitrary attachments across all projects, leading to unauthorized data access and potential data loss system-wide.

Affected Products

  • Vikunja versions prior to 2.2.1
  • All self-hosted Vikunja deployments running vulnerable versions

Discovery Timeline

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

Technical Details for CVE-2026-33678

Vulnerability Analysis

This vulnerability is classified as CWE-639 (Authorization Bypass Through User-Controlled Key), commonly known as an Insecure Direct Object Reference (IDOR). The core issue lies in a mismatch between the authorization check and the data retrieval logic within Vikunja's attachment handling system.

When a user requests an attachment, the application performs two separate operations: first, it validates whether the user has permission to access the task specified in the URL path through the CanRead() function; second, it retrieves the attachment data through ReadOne(). However, these two operations reference different identifiers—CanRead() uses the task ID from the URL, while ReadOne() only uses the attachment ID parameter, completely disregarding the task context.

This architectural flaw creates an authorization bypass where an attacker can specify a task they legitimately have access to in the URL path (passing the CanRead() check), while simultaneously specifying an attachment ID belonging to a completely different task or project (which ReadOne() will happily retrieve).

Root Cause

The root cause stems from inconsistent parameter usage between the authorization and data access layers. The ReadOne() function constructs its database query using only the attachment ID (WHERE id = ?) without including the task ID as an additional constraint. This means any valid attachment ID will be returned regardless of which task was specified in the authorization check. The sequential nature of attachment IDs further exacerbates this issue by making it trivial to enumerate all attachments in the system.

Attack Vector

The attack can be executed over the network by any authenticated user with access to at least one task containing attachments. An attacker would:

  1. Obtain a valid task ID from a project they have legitimate access to
  2. Enumerate attachment IDs by incrementing integer values (starting from 1)
  3. Construct requests using their accessible task ID in the URL path but substituting different attachment IDs
  4. Successfully download or delete attachments belonging to tasks in other projects they should not have access to

The vulnerability requires low privilege (any authenticated user) and no user interaction, making exploitation straightforward once an attacker has authenticated to the platform.

Detection Methods for CVE-2026-33678

Indicators of Compromise

  • Unusual patterns of attachment access requests with sequential or enumerated attachment IDs
  • Users accessing attachments from tasks they don't normally interact with
  • Sudden increases in attachment download or deletion activity from a single user account
  • HTTP request logs showing mismatched task IDs and attachment IDs in API calls

Detection Strategies

  • Monitor API endpoints related to attachment operations (/api/v1/tasks/*/attachments/*) for anomalous access patterns
  • Implement logging that correlates task IDs in URL paths with the actual task ownership of retrieved attachments
  • Set up alerts for users accessing attachments at rates significantly higher than normal usage patterns
  • Audit trails should capture both the requested task ID and the actual attachment's parent task for comparison

Monitoring Recommendations

  • Enable detailed access logging for all attachment-related API endpoints
  • Deploy application-layer monitoring to detect sequential ID enumeration attempts
  • Review authentication logs for unusual session activity preceding attachment access spikes
  • Implement rate limiting on attachment download endpoints to slow enumeration attacks

How to Mitigate CVE-2026-33678

Immediate Actions Required

  • Upgrade Vikunja to version 2.2.1 or later immediately
  • Review audit logs for signs of unauthorized attachment access prior to patching
  • Consider temporarily disabling attachment functionality if immediate upgrade is not possible
  • Reset attachment access permissions and verify data integrity after patching

Patch Information

The vulnerability is resolved in Vikunja version 2.2.1. The fix modifies the ReadOne() function to include the task ID in the database query, ensuring that attachments can only be retrieved when they belong to the task specified in the URL path. This ensures the authorization check and data retrieval operate on the same object context.

For detailed patch information, refer to the GitHub Security Advisory and the Vikunja Release Changelog.

Workarounds

  • Restrict network access to Vikunja instances to trusted networks only until patching is complete
  • Implement additional authentication controls or access restrictions at the reverse proxy level
  • Monitor and alert on attachment-related API calls with enhanced logging
  • Consider disabling public or external access to the application temporarily
bash
# Vikunja upgrade example
# Stop the running Vikunja instance
systemctl stop vikunja

# Download and install the patched version (2.2.1 or later)
wget https://dl.vikunja.io/vikunja/2.2.1/vikunja-2.2.1-linux-amd64.zip
unzip vikunja-2.2.1-linux-amd64.zip -d /opt/vikunja

# Restart the service
systemctl start vikunja

# Verify the version
vikunja version

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

  • SeverityHIGH

  • CVSS Score8.1

  • 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:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • GitHub Security Advisory

  • Vikunja Release Changelog
  • Related CVEs
  • CVE-2026-33668: Vikunja Auth Bypass Vulnerability

  • CVE-2026-33473: Vikunja Auth Bypass Vulnerability

  • CVE-2026-33700: Vikunja Auth Bypass Vulnerability

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