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

CVE-2026-34718: Zammad Helpdesk XSS Vulnerability

CVE-2026-34718 is a cross-site scripting flaw in Zammad helpdesk affecting HTML sanitization in ticket articles. While CSP rules prevent exploitation, malicious content can be stored. This article covers affected versions and patches.

Published: April 10, 2026

CVE-2026-34718 Overview

CVE-2026-34718 is an HTML sanitization bypass vulnerability affecting Zammad, a web-based open source helpdesk and customer support system. Prior to versions 7.0.1 and 6.5.4, the HTML sanitizer for ticket articles failed to properly sanitize data: URI schemes, allowing malicious content to be stored in the Zammad instance database. While the Zammad GUI renders this content, applied Content Security Policy (CSP) rules prevented immediate exploitation through link clicks. This vulnerability is classified as CWE-80 (Improper Neutralization of Script-Related HTML Tags in a Web Page).

Critical Impact

Attackers can inject malicious data URI schemes into ticket articles that persist in the database, potentially enabling stored XSS attacks if CSP protections are weakened or bypassed in the future.

Affected Products

  • Zammad versions prior to 7.0.1
  • Zammad versions prior to 6.5.4
  • Zammad helpdesk/customer support system installations using vulnerable HTML sanitization

Discovery Timeline

  • April 8, 2026 - CVE-2026-34718 published to NVD
  • April 8, 2026 - Last updated in NVD database

Technical Details for CVE-2026-34718

Vulnerability Analysis

This vulnerability stems from incomplete input sanitization in Zammad's HTML processing pipeline for ticket articles. The HTML sanitizer component is responsible for stripping potentially dangerous content from user-submitted ticket articles before storing them in the database. However, the sanitizer failed to account for data: URI schemes, which can embed arbitrary content including potentially malicious scripts directly within HTML attributes.

When a user creates or updates a ticket article containing a data: URI, the content passes through the sanitizer without proper neutralization. The malicious payload is then persisted in the Zammad database and rendered to any user viewing the affected ticket. The vulnerability's impact is partially mitigated by Zammad's Content Security Policy implementation, which prevents inline script execution in compliant browsers.

Root Cause

The root cause is an incomplete allowlist or blocklist implementation in the HTML sanitization logic. The sanitizer did not include data: URI schemes in its dangerous protocol detection, allowing these URIs to bypass validation. This represents a classic case of CWE-80 where script-related HTML content is not properly neutralized before being rendered in web pages.

Attack Vector

The attack vector is network-based, requiring an attacker to submit a crafted ticket article containing malicious data: URI schemes. The attack flow involves:

  1. An attacker crafts a ticket article containing a data: URI with embedded malicious content (e.g., data:text/html,<script>...</script> or similar payloads)
  2. The vulnerable HTML sanitizer fails to detect and remove the data: URI scheme
  3. The malicious content is stored in the Zammad database
  4. When other users (including support staff or administrators) view the ticket, the malicious content is rendered in their browser
  5. While CSP rules currently prevent script execution, the stored payload could be exploited if CSP configurations change or through other attack chains

The vulnerability requires passive user interaction (viewing the affected ticket article) for potential exploitation. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-34718

Indicators of Compromise

  • Ticket articles containing data: URI schemes in href attributes or other HTML elements
  • Database entries with embedded data:text/html or data:application/javascript content
  • Unusual ticket content patterns that include base64-encoded payloads within data URIs
  • CSP violation reports indicating blocked inline script execution attempts

Detection Strategies

  • Implement database queries to scan existing ticket articles for data: URI patterns
  • Enable and monitor Content Security Policy violation reporting to detect exploitation attempts
  • Deploy web application firewall rules to detect and block submissions containing suspicious data URI schemes
  • Conduct periodic security audits of ticket article content for anomalous patterns

Monitoring Recommendations

  • Enable verbose logging for ticket article creation and modification events
  • Configure alerting on CSP violations that may indicate exploitation attempts
  • Monitor for unusual patterns in user-submitted ticket content
  • Review web server access logs for requests containing data URI patterns in POST data

How to Mitigate CVE-2026-34718

Immediate Actions Required

  • Upgrade Zammad installations to version 7.0.1 or 6.5.4 immediately
  • Review existing ticket articles in the database for potentially malicious data URI content
  • Ensure Content Security Policy headers remain properly configured as a defense-in-depth measure
  • Consider temporarily restricting ticket article HTML capabilities until patching is complete

Patch Information

Zammad has released security patches addressing this vulnerability. Organizations should upgrade to:

  • Version 7.0.1 for installations running the 7.x branch
  • Version 6.5.4 for installations running the 6.x branch

The patches enhance the HTML sanitizer to properly detect and neutralize data: URI schemes before content is stored in the database. For complete patch details and upgrade instructions, refer to the GitHub Security Advisory.

Workarounds

  • Maintain strict Content Security Policy configurations to prevent script execution from injected content
  • Implement additional web application firewall rules to filter data URI schemes from incoming requests
  • Restrict HTML input capabilities in ticket articles to plain text where business requirements permit
  • Conduct a database audit to identify and sanitize any existing malicious content stored prior to patching
bash
# Example: Database query to identify potentially affected content (PostgreSQL)
# Consult Zammad documentation for exact table structure
psql -d zammad_production -c "SELECT id, ticket_id FROM ticket_articles WHERE body LIKE '%data:%' OR body LIKE '%data:%';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechZammad

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-80
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34248: Zammad Information Disclosure Vulnerability

  • CVE-2026-34722: Zammad Auth Bypass Vulnerability

  • CVE-2026-34782: Zammad Auth Bypass Vulnerability

  • CVE-2026-34721: Zammad OAuth Callback CSRF 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