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

CVE-2026-33335: Vikunja Desktop Electron RCE Vulnerability

CVE-2026-33335 is a remote code execution vulnerability in Vikunja Desktop Electron that allows attackers to execute arbitrary commands via malicious links. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33335 Overview

Vikunja is an open-source self-hosted task management platform. A vulnerability exists in the Vikunja Desktop Electron wrapper where URLs from window.open() calls are passed directly to shell.openExternal() without any validation or protocol allowlisting. This security flaw allows attackers to craft malicious links that, when clicked by victims, can invoke arbitrary URI schemes on the victim's operating system.

Critical Impact

An attacker who can place a link with target="_blank" (or that otherwise triggers window.open) in user-generated content can cause the victim's operating system to open arbitrary URI schemes, invoking local applications, opening local files, or triggering custom protocol handlers.

Affected Products

  • Vikunja Desktop versions 0.21.0 through 2.1.x
  • Vikunja Desktop Electron wrapper

Discovery Timeline

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

Technical Details for CVE-2026-33335

Vulnerability Analysis

This vulnerability is classified under CWE-939 (Improper Authorization in Handler for Custom URL Scheme). The Vikunja Desktop application, built on Electron, fails to implement proper validation when handling URLs that trigger external application launches. When the Electron application receives a window.open() call, it passes the URL directly to the operating system's shell.openExternal() function without performing any security checks on the URI scheme.

The lack of protocol allowlisting means that any URI scheme registered on the victim's system can be invoked, not just safe schemes like https:// or mailto:. This could allow attackers to trigger application-specific handlers, file protocol handlers, or other potentially dangerous URI schemes that could lead to code execution or information disclosure.

Root Cause

The root cause is the absence of input validation and URI scheme allowlisting in the Electron wrapper's URL handling logic. When processing window.open() requests, the application should validate that the target URL uses a safe protocol scheme before passing it to shell.openExternal(). Instead, the vulnerable versions pass all URLs directly to the operating system without any security filtering.

Attack Vector

An attacker can exploit this vulnerability by injecting malicious links into user-generated content within the Vikunja platform. When a victim using the Vikunja Desktop application clicks on such a link (one that contains target="_blank" or otherwise triggers window.open), their operating system will process the arbitrary URI scheme specified by the attacker.

Potential attack scenarios include:

  • Invoking local file handlers (file://) to access sensitive files
  • Triggering custom protocol handlers for installed applications
  • Launching system utilities or scripts through registered URI schemes
  • Exploiting vulnerabilities in other applications via their custom protocol handlers

This is a network-accessible attack that requires some user interaction (clicking a malicious link) and low privileges (ability to create content with links).

Detection Methods for CVE-2026-33335

Indicators of Compromise

  • Unexpected application launches after clicking links within Vikunja Desktop
  • Presence of suspicious links with unusual URI schemes in task descriptions or comments
  • System logs showing shell.openExternal() calls with non-standard protocol schemes
  • User reports of unexpected file access or application behavior when using Vikunja Desktop

Detection Strategies

  • Monitor for outbound URI scheme invocations from the Vikunja Desktop application process
  • Implement content filtering to detect and flag links with potentially dangerous URI schemes in Vikunja content
  • Review application logs for window.open() calls with suspicious URL patterns
  • Deploy endpoint detection rules to identify unusual process spawning from Electron-based applications

Monitoring Recommendations

  • Enable verbose logging in the Vikunja Desktop application to track URL handling behavior
  • Monitor endpoint telemetry for unexpected application launches correlated with Vikunja Desktop usage
  • Implement network-level inspection to identify suspicious link patterns in Vikunja traffic
  • Track user-generated content for links containing non-standard URI schemes

How to Mitigate CVE-2026-33335

Immediate Actions Required

  • Upgrade Vikunja Desktop to version 2.2.0 or later immediately
  • Audit existing user-generated content for suspicious links with unusual URI schemes
  • Consider temporarily restricting link creation permissions until the patch is applied
  • Alert users to exercise caution when clicking links within Vikunja until updates are deployed

Patch Information

Version 2.2.0 of Vikunja patches this issue by implementing proper URI scheme validation and protocol allowlisting before passing URLs to shell.openExternal(). The fix ensures that only safe, expected protocols are allowed to trigger external application launches.

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

Workarounds

  • Disable or remove the Vikunja Desktop application and use the web interface instead until patching is complete
  • Implement network-level filtering to block or warn on links with dangerous URI schemes
  • Restrict user permissions to prevent untrusted users from creating content with links
  • Deploy browser/application isolation solutions to contain potential exploitation attempts

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechVikunja

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:N/VI:N/VA:N/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-939
  • Technical References
  • GitHub Security Advisory

  • Vikunja Release Changelog
  • Related CVEs
  • CVE-2026-33336: Vikunja Desktop RCE Vulnerability

  • CVE-2026-33334: Vikunja Desktop RCE Vulnerability

  • 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