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

CVE-2026-35596: Vikunja Information Disclosure Flaw

CVE-2026-35596 is an information disclosure vulnerability in Vikunja that allows authenticated users to access unauthorized label data. This article covers technical details, affected versions, impact, and mitigation.

Published: April 17, 2026

CVE-2026-35596 Overview

CVE-2026-35596 is an authorization bypass vulnerability affecting Vikunja, an open-source self-hosted task management platform. The vulnerability exists in the hasAccessToLabel function, which contains a SQL operator precedence bug that allows any authenticated user to read any label that has at least one task association, regardless of project access. This flaw exposes sensitive information including label titles, descriptions, colors, and creator information to unauthorized users.

Critical Impact

Any authenticated user can bypass access controls and read label information from projects they should not have access to, potentially exposing sensitive organizational data and project structures.

Affected Products

  • Vikunja versions prior to 2.3.0

Discovery Timeline

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

Technical Details for CVE-2026-35596

Vulnerability Analysis

This vulnerability is classified as CWE-863 (Incorrect Authorization). The flaw resides in the hasAccessToLabel function within Vikunja's codebase. Due to improper SQL operator precedence handling, the authorization check fails to properly restrict label access based on project permissions.

When a user queries for labels, the underlying SQL query does not correctly evaluate the logical conditions that should enforce project-based access controls. This allows any authenticated user to enumerate and retrieve label metadata from any project where labels are associated with at least one task, even if the user has no legitimate access to that project.

The information exposed through this vulnerability includes label titles, descriptions, colors, and creator information, which could reveal sensitive project categorization schemes, workflow details, or organizational structure to unauthorized parties.

Root Cause

The root cause is a SQL operator precedence bug in the hasAccessToLabel function. In SQL, logical operators have a defined precedence order (AND is evaluated before OR). When complex boolean expressions are constructed without proper parenthesization, the query may not enforce the intended access control logic.

The vulnerable code path likely combines multiple conditions using AND and OR operators without proper grouping, causing the authorization check to be bypassed when certain conditions are met. The fix in version 2.3.0 addresses this by correcting the operator precedence in the SQL query construction.

Attack Vector

The attack is network-based and requires authentication. An attacker with a valid user account on a Vikunja instance can exploit this vulnerability by making API requests to enumerate labels. The attack does not require any special privileges beyond basic authentication, and no user interaction is needed.

The exploitation is straightforward:

  1. An attacker authenticates to the Vikunja platform with any valid user credentials
  2. The attacker makes API requests to retrieve label information
  3. Due to the SQL operator precedence bug, the authorization check incorrectly allows access
  4. The attacker receives label data from projects they should not have access to

For technical details on the vulnerability and fix, see the GitHub Security Advisory and the associated pull request.

Detection Methods for CVE-2026-35596

Indicators of Compromise

  • Unusual API requests to label endpoints from users with limited project access
  • Pattern of label enumeration requests across multiple projects from a single user session
  • Access log entries showing label retrieval for projects where the authenticated user lacks membership

Detection Strategies

  • Monitor API access logs for label endpoint requests that return data from projects the user is not a member of
  • Implement anomaly detection for users accessing labels across an unusually high number of projects
  • Review authentication logs for accounts performing bulk label enumeration activities
  • Cross-reference label access patterns with project membership records to identify unauthorized access

Monitoring Recommendations

  • Enable detailed API logging for all label-related endpoints
  • Configure alerts for failed authorization attempts that subsequently succeed (indicating potential bypass)
  • Regularly audit user access patterns to identify anomalous label retrieval behavior
  • Monitor for automated or scripted access patterns targeting label APIs

How to Mitigate CVE-2026-35596

Immediate Actions Required

  • Upgrade Vikunja to version 2.3.0 or later immediately
  • Review API access logs for any evidence of exploitation prior to patching
  • Audit sensitive labels that may have been exposed to unauthorized users
  • Consider rotating or updating any sensitive information that was previously stored in label metadata

Patch Information

The vulnerability is fixed in Vikunja version 2.3.0. The patch is available through the official release:

  • GitHub Release v2.3.0
  • Commit fc216c38afaa51dd56dde7a97343d2148ecf24c1

The fix corrects the SQL operator precedence in the hasAccessToLabel function to properly enforce project-based access controls.

Workarounds

  • Restrict network access to the Vikunja instance to trusted users only until the patch can be applied
  • Implement additional network-level access controls or API gateway rules to limit label endpoint access
  • Avoid storing sensitive information in label titles, descriptions, or metadata until the upgrade is complete
  • Monitor and audit label access patterns closely as a compensating control
bash
# Upgrade Vikunja to patched version
# Using Docker (recommended method)
docker pull vikunja/vikunja:2.3.0
docker stop vikunja
docker rm vikunja
docker run -d --name vikunja -p 3456:3456 vikunja/vikunja:2.3.0

# Verify the installed version
docker exec vikunja vikunja version

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

  • Vulnerability Details
  • TypeInformation Disclosure

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

  • GitHub Pull Request #2578

  • GitHub Release v2.3.0

  • GitHub Security Advisory GHSA-hj5c-mhh2-g7jq
  • Related CVEs
  • CVE-2026-33677: Vikunja Information Disclosure Vulnerability

  • CVE-2026-33676: Vikunja Information Disclosure Flaw

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

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