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

CVE-2026-33677: Vikunja Information Disclosure Vulnerability

CVE-2026-33677 is an information disclosure flaw in Vikunja that exposes webhook BasicAuth credentials in plaintext to read-only users. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33677 Overview

CVE-2026-33677 is an information disclosure vulnerability in Vikunja, an open-source self-hosted task management platform. Prior to version 2.2.1, the GET /api/v1/projects/:project/webhooks endpoint returns webhook BasicAuth credentials (basic_auth_user and basic_auth_password) in plaintext to any user with read access to the project. While the existing code correctly masks the HMAC secret field, the BasicAuth fields added in a later migration were not given the same treatment. This allows read-only collaborators to steal credentials intended for authenticating against external webhook receivers.

Critical Impact

Read-only project collaborators can access plaintext BasicAuth credentials from webhook configurations, potentially enabling unauthorized access to external systems that trust these credentials for webhook authentication.

Affected Products

  • Vikunja versions prior to 2.2.1

Discovery Timeline

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

Technical Details for CVE-2026-33677

Vulnerability Analysis

This vulnerability falls under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The core issue stems from an inconsistent application of credential masking within the Vikunja API. When the webhook functionality was initially implemented, the developers correctly identified the HMAC secret field as sensitive and implemented masking to prevent its exposure through API responses. However, during a subsequent migration that introduced BasicAuth support for webhooks, the basic_auth_user and basic_auth_password fields were added without the same protective treatment.

As a result, any authenticated user with read access to a project can query the webhooks endpoint and receive the full BasicAuth credentials in the API response. This design flaw violates the principle of least privilege, as read-only collaborators should not have access to sensitive authentication credentials regardless of their project membership status.

Root Cause

The root cause is an incomplete implementation of credential masking logic in the webhook API response serialization. When the BasicAuth fields were added to the webhook model in a later migration, the developers failed to extend the existing masking mechanism to cover these new sensitive fields. The codebase had established a pattern for protecting secrets but the pattern was not followed consistently when new credential fields were introduced.

Attack Vector

The attack vector is network-based and requires low-privileged access. An attacker must have read access to a project within the Vikunja instance—a common permission level for collaborators. The attack is straightforward: the attacker simply makes an authenticated GET request to /api/v1/projects/:project/webhooks for any project they can access. The API response includes the basic_auth_user and basic_auth_password values in plaintext, which the attacker can harvest and use to authenticate against external webhook receiver endpoints.

This vulnerability is particularly concerning in multi-tenant environments or organizations where project access is granted liberally. An attacker could use the stolen credentials to impersonate legitimate webhook traffic, potentially triggering unauthorized actions in external systems that trust the BasicAuth credentials for webhook authentication.

Detection Methods for CVE-2026-33677

Indicators of Compromise

  • Unusual or unexpected requests to /api/v1/projects/:project/webhooks endpoints from read-only collaborators
  • Multiple webhook endpoint queries across different projects from a single user account
  • API access logs showing webhook configuration retrieval by users who do not typically manage integrations
  • External webhook receivers reporting authentication from unexpected source IPs

Detection Strategies

  • Monitor API access logs for the webhook endpoints and correlate with user permission levels
  • Implement alerting for read-only users accessing sensitive configuration endpoints
  • Review audit logs for patterns of systematic project enumeration followed by webhook queries
  • Track failed authentication attempts on external webhook receivers that may indicate credential testing

Monitoring Recommendations

  • Enable verbose logging for the /api/v1/projects/:project/webhooks API endpoint
  • Configure alerts for any user with only read permissions querying webhook configurations
  • Establish baseline access patterns for webhook management and alert on deviations
  • Monitor external systems for unexpected webhook authentications using Vikunja-configured credentials

How to Mitigate CVE-2026-33677

Immediate Actions Required

  • Upgrade Vikunja to version 2.2.1 or later immediately
  • Rotate all BasicAuth credentials configured for webhooks in your Vikunja instance
  • Audit API access logs to identify any potential credential exposure prior to patching
  • Review external systems that receive webhooks for unauthorized activity

Patch Information

Vikunja version 2.2.1 patches this issue by extending the credential masking logic to include the basic_auth_user and basic_auth_password fields in API responses. Users should upgrade to this version or later to remediate the vulnerability. For additional details, refer to the GitHub Security Advisory and the Vikunja Changelog.

Workarounds

  • Remove BasicAuth credentials from webhook configurations until the patch can be applied
  • Restrict project access to only trusted users who require collaboration privileges
  • Use network-level access controls to limit who can reach the Vikunja API
  • Temporarily disable webhook functionality if BasicAuth credentials cannot be removed
bash
# Configuration example
# Verify your Vikunja version to confirm patch status
vikunja version
# Expected output for patched versions: >= 2.2.1

# After upgrading, rotate webhook BasicAuth credentials
# Access your Vikunja admin panel or use the API to update webhook configurations
# with new credentials for all affected projects

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 Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Security Advisory

  • Vikunja Changelog Update
  • Related CVEs
  • CVE-2026-35596: Vikunja Information Disclosure Flaw

  • 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