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
    • 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-33316

CVE-2026-33316: Vikunja Auth Bypass Vulnerability

CVE-2026-33316 is an authentication bypass flaw in Vikunja that allows disabled users to reactivate their accounts through password reset. This post covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-33316 Overview

CVE-2026-33316 is an authentication bypass vulnerability in Vikunja, an open-source self-hosted task management platform. A critical flaw in Vikunja's password reset logic allows disabled users to regain access to their accounts by exploiting the ResetPassword() function, which sets the user's status to StatusActive after a successful password reset without verifying whether the account was previously disabled by an administrator.

Critical Impact

Disabled users can bypass administrator-imposed account restrictions and reactivate their accounts through the password reset flow, potentially leading to unauthorized access to sensitive task management data and organizational workflows.

Affected Products

  • Vikunja versions prior to 2.2.0
  • Self-hosted Vikunja instances with user account management enabled
  • Vikunja deployments using the built-in password reset functionality

Discovery Timeline

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

Technical Details for CVE-2026-33316

Vulnerability Analysis

This authentication bypass vulnerability (CWE-284: Improper Access Control) exists in Vikunja's password reset implementation. The core issue stems from the ResetPassword() function unconditionally setting a user's account status to StatusActive upon successful password reset completion. This implementation fails to preserve the previous account state, specifically ignoring whether an administrator had intentionally disabled the user account.

The attack flow involves two API endpoints: first, the attacker requests a password reset token via /api/v1/user/password/token, and then completes the reset process via /api/v1/user/password/reset. Upon completion, the function activates the account regardless of its prior disabled state, effectively circumventing administrative security controls.

Root Cause

The root cause is a missing state validation check in the password reset workflow. The ResetPassword() function lacks conditional logic to verify the user's previous account status before modifying it. Instead of preserving the disabled state or rejecting password reset requests for disabled accounts, the function blindly sets the status to active for all users completing the reset flow.

Attack Vector

The attack is network-based and requires low privileges since the attacker needs only a valid email address associated with a disabled account. An attacker whose account has been disabled by an administrator can:

  1. Navigate to the password reset functionality
  2. Request a reset token for their disabled account email via the /api/v1/user/password/token endpoint
  3. Receive the reset token (the system does not check account status when issuing tokens)
  4. Complete the password reset via /api/v1/user/password/reset with the new password
  5. Upon successful reset, the account status is changed from disabled to active
  6. The attacker can now authenticate and access the platform despite administrator-imposed restrictions

This vulnerability allows bypassing administrative account controls entirely, as the legitimate security measure of disabling accounts becomes ineffective against users who can access the associated email address.

Detection Methods for CVE-2026-33316

Indicators of Compromise

  • Successful login events from user accounts that were previously disabled
  • Password reset completion events followed by immediate login activity for accounts in disabled state
  • API calls to /api/v1/user/password/token and /api/v1/user/password/reset for accounts with disabled status
  • Audit log entries showing account status changes from disabled to active without administrator action

Detection Strategies

  • Monitor authentication logs for login attempts by accounts that should be in disabled state
  • Implement alerting on password reset completions for accounts with non-active statuses
  • Review user account status change events that occur outside of administrative workflows
  • Cross-reference password reset API activity with user account status in the database

Monitoring Recommendations

  • Enable detailed logging for all password reset API endpoints
  • Configure alerts for any account status transitions from disabled to active
  • Implement periodic audits of disabled accounts to verify they remain in the expected state
  • Monitor for unusual patterns of password reset requests targeting disabled accounts

How to Mitigate CVE-2026-33316

Immediate Actions Required

  • Upgrade Vikunja to version 2.2.0 or later immediately
  • Audit all user accounts to identify any disabled accounts that may have been reactivated unexpectedly
  • Review authentication logs for signs of exploitation against previously disabled accounts
  • Consider temporarily disabling password reset functionality until the patch is applied

Patch Information

Vikunja version 2.2.0 addresses this vulnerability by implementing proper account status validation during the password reset process. The fix ensures that disabled accounts cannot be reactivated through the password reset flow. Security patches are available through the official Vikunja GitHub repository:

  • GitHub Commit Update
  • GitHub Commit Change
  • GitHub Security Advisory
  • Vikunja Release Changelog

Workarounds

  • Disable the password reset functionality at the application or proxy level until patching is complete
  • Implement additional access controls at the network layer to restrict access to the password reset endpoints
  • Delete email addresses associated with disabled accounts to prevent token generation
  • Monitor and manually re-disable any accounts found to be unexpectedly reactivated
bash
# Configuration example
# Block password reset endpoints at the reverse proxy level (nginx example)
location /api/v1/user/password/token {
    deny all;
    return 403;
}

location /api/v1/user/password/reset {
    deny all;
    return 403;
}

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-284
  • Technical References
  • Vikunja Release Changelog
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Change

  • 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