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

CVE-2026-40103: Vikunja Auth Bypass Vulnerability

CVE-2026-40103 is an authentication bypass flaw in Vikunja's scoped API token enforcement that allows unauthorized project background deletion. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-40103 Overview

CVE-2026-40103 is an authorization bypass vulnerability in Vikunja, an open-source self-hosted task management platform. Prior to version 2.3.0, Vikunja's scoped API token enforcement for custom project background routes suffers from method confusion. A token with only projects.background scope can successfully delete a project background, while a token with only projects.background_delete scope is incorrectly rejected. This represents a scoped-token authorization bypass that allows users to perform unauthorized actions beyond their token's intended permissions.

Critical Impact

Attackers with limited API token scopes can bypass authorization controls to delete project backgrounds, potentially disrupting project configurations and user workflows.

Affected Products

  • Vikunja versions prior to 2.3.0

Discovery Timeline

  • April 10, 2026 - CVE-2026-40103 published to NVD
  • April 13, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40103

Vulnerability Analysis

This vulnerability is classified as CWE-836 (Use of Password Hash Instead of Password for Authentication), though the core issue relates to improper scope enforcement in API token validation. The vulnerability exists in how Vikunja validates scoped API tokens against HTTP methods for project background operations.

The method confusion occurs when the API endpoint checks token permissions for background-related operations. Instead of correctly matching the projects.background_delete scope to DELETE operations, the system accepts the broader projects.background scope for deletion actions. This inverts the expected security model where more specific scopes should be required for destructive operations.

The attack can be conducted over the network by any authenticated user possessing a scoped API token, without requiring user interaction. The impact is limited to integrity concerns, as attackers can delete project backgrounds they should not have permission to modify, but cannot read additional data or cause system-wide denial of service.

Root Cause

The root cause lies in method-confused scope validation within Vikunja's API token enforcement logic. The authorization middleware incorrectly maps HTTP DELETE requests on the project background endpoint to the projects.background scope rather than the intended projects.background_delete scope. This allows tokens with read/write permissions to perform delete operations that should require explicit delete permissions.

Attack Vector

The attack vector is network-based, requiring an authenticated attacker with a scoped API token. The exploitation process involves:

  1. An attacker obtains or creates an API token with projects.background scope (intended for reading/setting backgrounds)
  2. The attacker sends an HTTP DELETE request to the project background endpoint
  3. Due to the method confusion bug, the server incorrectly validates the projects.background scope against the DELETE operation
  4. The project background is deleted despite the attacker lacking projects.background_delete permissions

The vulnerability allows privilege escalation within the scope of background management operations, enabling unauthorized deletion of project customizations.

Detection Methods for CVE-2026-40103

Indicators of Compromise

  • Unexpected deletion of project backgrounds without corresponding projects.background_delete scoped token usage
  • API audit logs showing DELETE operations on /api/v1/projects/{id}/background endpoints authenticated with non-delete scoped tokens
  • User reports of missing project backgrounds that were not intentionally removed

Detection Strategies

  • Review API access logs for DELETE requests to project background endpoints and cross-reference with token scopes
  • Implement token scope auditing to detect tokens with projects.background scope being used for destructive operations
  • Monitor for anomalous patterns of background deletion activity that may indicate exploitation

Monitoring Recommendations

  • Enable detailed API request logging including authentication token identifiers and scopes
  • Set up alerts for DELETE operations on project background endpoints
  • Regularly audit API token permissions and usage patterns across your Vikunja instance

How to Mitigate CVE-2026-40103

Immediate Actions Required

  • Upgrade Vikunja to version 2.3.0 or later immediately
  • Review API tokens with projects.background scope and assess whether they have been misused
  • Audit project backgrounds across your instance to identify any unauthorized deletions
  • Consider temporarily revoking and reissuing scoped API tokens until the upgrade is complete

Patch Information

Vikunja has addressed this vulnerability in version 2.3.0. The fix corrects the method-to-scope mapping in the API token validation logic, ensuring that DELETE operations on project backgrounds correctly require the projects.background_delete scope.

For technical details, refer to:

  • GitHub Security Advisory GHSA-v479-vf79-mg83
  • GitHub Commit 6a0f39b
  • GitHub Pull Request #2584
  • Vikunja v2.3.0 Release

Workarounds

  • If immediate upgrade is not possible, temporarily disable or revoke API tokens with broad scopes like projects.background
  • Implement network-level access controls to restrict API access to trusted networks only
  • Use a reverse proxy to block DELETE requests to project background endpoints for tokens that should not have delete permissions
bash
# Configuration example
# Upgrade Vikunja to patched version
docker pull vikunja/vikunja:2.3.0
docker-compose down && docker-compose up -d

# Or if using binary installation
wget https://github.com/go-vikunja/vikunja/releases/download/v2.3.0/vikunja-linux-amd64
chmod +x vikunja-linux-amd64
systemctl restart vikunja

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:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-836
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request 2584

  • GitHub Release v2.3.0

  • GitHub Security Advisory GHSA-v479-vf79-mg83
  • Related CVEs
  • CVE-2026-35598: Vikunja Auth Bypass Vulnerability

  • CVE-2026-35594: Vikunja Auth Bypass Vulnerability

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

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