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

CVE-2026-33517: MantisBT Tag Deletion XSS Vulnerability

CVE-2026-33517 is an XSS vulnerability in MantisBT 2.28.0 that allows attackers to inject HTML and execute JavaScript during tag deletion. This article covers the technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33517 Overview

CVE-2026-33517 is a Cross-Site Scripting (XSS) vulnerability affecting Mantis Bug Tracker (MantisBT), an open source issue tracking system. The vulnerability exists in version 2.28.0 where improper escaping of tag names when displaying the deletion confirmation message in tag_delete.php allows attackers to inject HTML content. If Content Security Policy (CSP) settings permit, this can lead to the execution of arbitrary JavaScript code in the context of an authenticated user's session.

Critical Impact

Authenticated attackers can inject malicious HTML and JavaScript through crafted tag names, potentially leading to session hijacking, data theft, or unauthorized actions performed on behalf of legitimate users.

Affected Products

  • MantisBT version 2.28.0
  • Installations with permissive CSP configurations

Discovery Timeline

  • 2026-03-23 - CVE CVE-2026-33517 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33517

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 resides in the tag deletion workflow of MantisBT where user-controlled input (the tag name) is rendered in the confirmation dialog without proper sanitization.

When an administrator or user with tag management privileges attempts to delete a tag, the application displays a confirmation message that includes the tag name. The vulnerable code uses a sprintf placeholder (%1$s) in the localization string $s_tag_delete_message to insert the tag name directly into the HTML output. Since the tag name is not properly escaped before being rendered, an attacker who can create or modify tags can inject malicious payloads.

The attack requires authentication with privileges to create tags, and successful exploitation depends on CSP configurations that allow inline script execution.

Root Cause

The root cause is improper output encoding in the tag deletion confirmation page. The application fails to apply HTML entity encoding to the tag name before inserting it into the page content via the language string placeholder. This allows special characters like <, >, and quotes to be interpreted as HTML markup rather than display characters.

Attack Vector

The attack is network-based and requires an authenticated user with tag creation privileges. The attacker crafts a malicious tag name containing JavaScript payload, then triggers the deletion confirmation page to execute the injected code. The attack flow involves:

  1. Attacker creates a tag with a malicious name containing HTML/JavaScript (e.g., <script>alert(document.cookie)</script>)
  2. When any user navigates to delete this tag, the confirmation page renders the unsanitized tag name
  3. If CSP allows, the injected script executes in the victim's browser session
  4. The attacker can steal session tokens, perform actions as the victim, or redirect to phishing pages

The vulnerability requires user interaction (viewing the delete confirmation page) and depends on the target environment's CSP configuration to achieve JavaScript execution.

Detection Methods for CVE-2026-33517

Indicators of Compromise

  • Unusual tag names containing HTML markup or JavaScript code in the MantisBT database
  • Web server access logs showing requests to tag_delete.php with encoded script characters in parameters
  • Browser console errors or CSP violation reports indicating blocked inline scripts
  • Unexpected user session activity following interaction with tag management pages

Detection Strategies

  • Monitor MantisBT database for tag names containing suspicious patterns such as <script>, javascript:, onerror=, or other XSS payload signatures
  • Implement Content Security Policy reporting to detect attempted script injection
  • Review web application firewall (WAF) logs for XSS-related blocking events on MantisBT endpoints
  • Audit user activity logs for unusual tag creation patterns, particularly from accounts without legitimate bug tracking usage

Monitoring Recommendations

  • Enable CSP report-uri directive to receive notifications of policy violations
  • Configure centralized logging for MantisBT application and web server access logs
  • Set up alerts for database modifications to the tag table with HTML-like content patterns
  • Monitor for authentication anomalies following visits to tag management pages

How to Mitigate CVE-2026-33517

Immediate Actions Required

  • Upgrade MantisBT to version 2.28.1 or later which contains the security fix
  • Review existing tags in the database for any suspicious content containing HTML or JavaScript
  • Ensure strict Content Security Policy headers are configured to mitigate XSS impact
  • Restrict tag creation and management privileges to trusted administrators only

Patch Information

The vulnerability is addressed in MantisBT version 2.28.1. The fix implements proper HTML escaping for tag names before they are rendered in the deletion confirmation message. The relevant commits are available in the MantisBT GitHub repository:

  • GitHub Commit Fix - Initial fix commit
  • GitHub Commit Update - Additional update

For complete details, refer to the GitHub Security Advisory.

Workarounds

  • Revert commit d6890320752ecf37bd74d11fe14fe7dc12335be9 if unable to immediately upgrade
  • Manually edit language files to remove the sprintf placeholder %1$s from the $s_tag_delete_message string
  • Implement strict Content Security Policy headers that disallow inline script execution and unsafe-eval
  • Use a Web Application Firewall (WAF) with XSS protection rules enabled for the MantisBT application
bash
# Example CSP header configuration for Apache
# Add to .htaccess or virtual host configuration
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none'; frame-ancestors 'self';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechMantisbt

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:H/VI:H/VA:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Fix

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33548: MantisBT Timeline XSS Vulnerability

  • CVE-2026-30849: MantisBT SOAP API Auth Bypass Vulnerability

  • CVE-2025-47776: MantisBT Authentication Bypass Vulnerability

  • CVE-2025-46556: MantisBT Denial of Service 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