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

CVE-2026-35600: Vikunja Task Management XSS Vulnerability

CVE-2026-35600 is a cross-site scripting flaw in Vikunja that allows attackers to inject phishing links and tracking pixels into email notifications. This post covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-35600 Overview

CVE-2026-35600 is a Cross-Site Scripting (XSS) vulnerability affecting Vikunja, an open-source self-hosted task management platform. Prior to version 2.3.0, task titles are embedded directly into Markdown link syntax in overdue email notifications without escaping Markdown special characters. When rendered by goldmark and sanitized by bluemonday (which allows <a> and <img> tags), injected Markdown constructs produce phishing links and tracking pixels in legitimate notification emails.

Critical Impact

Attackers can inject malicious Markdown into task titles, resulting in phishing links and tracking pixels being rendered in legitimate overdue notification emails sent to users.

Affected Products

  • Vikunja versions prior to 2.3.0

Discovery Timeline

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

Technical Details for CVE-2026-35600

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting. The flaw exists in how Vikunja processes task titles when generating overdue email notifications. The application fails to properly escape Markdown special characters before embedding task titles into Markdown link syntax within email content.

When the email content is subsequently processed by the goldmark Markdown renderer and sanitized by bluemonday, the injected Markdown constructs are interpreted and rendered as valid HTML elements. Since bluemonday's configuration allows <a> (anchor) and <img> (image) tags, attackers can leverage this to inject phishing links that appear legitimate within the context of official notification emails, as well as tracking pixels that can be used to monitor when users open emails.

Root Cause

The root cause of this vulnerability is improper input validation and insufficient output encoding. Task titles containing Markdown special characters are directly concatenated into Markdown link syntax without sanitization. The combination of goldmark rendering and bluemonday's permissive tag allowlist (specifically <a> and <img> tags) enables the injected content to be rendered as functional HTML elements in the email output.

Attack Vector

The attack is network-based and requires low privileges (authenticated user access to create tasks). An attacker with the ability to create or modify task titles can craft a malicious task title containing Markdown injection payloads. When the task becomes overdue and triggers an email notification to assigned users, the malicious content is rendered within the legitimate notification email.

The attack scenario involves:

  1. An authenticated attacker creates a task with a specially crafted title containing Markdown injection syntax
  2. The task is assigned to a victim user and configured to become overdue
  3. When Vikunja sends the overdue notification email, the malicious Markdown is rendered
  4. The victim receives what appears to be a legitimate Vikunja notification but contains phishing links or tracking pixels

This can be used for credential phishing by embedding links that appear to point to Vikunja but actually redirect to attacker-controlled sites, or for reconnaissance via tracking pixels that notify the attacker when emails are opened.

Detection Methods for CVE-2026-35600

Indicators of Compromise

  • Unusual task titles containing Markdown special characters such as [, ], (, ), or !
  • Email notifications containing unexpected external links or image references
  • Task titles with embedded URL patterns or image syntax that don't match legitimate task naming conventions
  • Reports from users about suspicious links in Vikunja notification emails

Detection Strategies

  • Review task creation and modification logs for titles containing Markdown injection patterns
  • Implement content analysis on outbound email notifications to detect suspicious link destinations
  • Monitor for tasks created with titles matching regex patterns indicative of Markdown injection (e.g., !\[.*\]\(http.*\) or \[.*\]\(http.*\))
  • Audit user accounts that have created tasks with unusual character sequences in titles

Monitoring Recommendations

  • Enable logging for all task creation and modification events with full title content
  • Implement email security solutions that scan outbound notifications for phishing indicators
  • Configure alerts for task titles exceeding normal length or containing URL-like patterns
  • Establish baseline patterns for legitimate task naming and alert on anomalies

How to Mitigate CVE-2026-35600

Immediate Actions Required

  • Upgrade Vikunja to version 2.3.0 or later immediately
  • Review recently created tasks for suspicious titles containing Markdown syntax
  • Inform users about potential phishing attempts via Vikunja notification emails
  • Consider temporarily disabling overdue email notifications until patched

Patch Information

The vulnerability has been fixed in Vikunja version 2.3.0. The fix involves properly escaping Markdown special characters in task titles before embedding them into email notification content.

Detailed patch information is available through the following resources:

  • GitHub Security Advisory GHSA-45q4-x4r9-8fqj
  • GitHub Pull Request #2580
  • GitHub Commit 0f3730d
  • GitHub Release v2.3.0

Workarounds

  • Implement input validation at the application or reverse proxy level to reject task titles containing Markdown special characters
  • Configure email security gateways to strip or neutralize links and images in outbound Vikunja notifications
  • Temporarily disable overdue email notifications via Vikunja configuration until the upgrade can be performed
  • Restrict task creation permissions to trusted users only until patched
bash
# Configuration example
# Upgrade Vikunja to patched version
# Using Docker:
docker pull vikunja/vikunja:2.3.0
docker stop vikunja-container
docker rm vikunja-container
docker run -d --name vikunja-container vikunja/vikunja:2.3.0

# Or using binary release - download from GitHub releases
wget https://github.com/go-vikunja/vikunja/releases/download/v2.3.0/vikunja-linux-amd64
chmod +x vikunja-linux-amd64
systemctl stop vikunja
mv vikunja-linux-amd64 /usr/local/bin/vikunja
systemctl start vikunja

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechVikunja

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request #2580

  • GitHub Release v2.3.0

  • GitHub Security Advisory GHSA-45q4-x4r9-8fqj
  • Related CVEs
  • CVE-2026-35601: Vikunja CalDAV XSS Vulnerability

  • CVE-2026-27616: Vikunja Task Management XSS Vulnerability

  • CVE-2026-27116: Vikunja Task Management XSS Vulnerability

  • CVE-2026-25935: Vikunja Todo App XSS 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