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

CVE-2026-29038: Changedetection.io XSS Vulnerability

CVE-2026-29038 is a reflected cross-site scripting flaw in changedetection.io affecting the /rss/tag/ endpoint. Attackers can inject malicious scripts through unsanitized parameters. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 13, 2026

CVE-2026-29038 Overview

CVE-2026-29038 is a reflected cross-site scripting (XSS) vulnerability discovered in changedetection.io, a free open source web page change detection tool. The vulnerability exists in the /rss/tag/ endpoint where the tag_uuid path parameter is reflected directly in the HTTP response body without proper HTML escaping. Because Flask returns text/html by default for plain string responses, browsers parse and execute any injected JavaScript code, allowing attackers to perform XSS attacks against users who click on maliciously crafted links.

Critical Impact

Attackers can craft malicious URLs that, when clicked by authenticated users, execute arbitrary JavaScript in the context of the changedetection.io application, potentially leading to session hijacking, credential theft, or unauthorized actions on behalf of the victim.

Affected Products

  • webtechnologies changedetection (versions prior to 0.54.4)

Discovery Timeline

  • 2026-03-06 - CVE-2026-29038 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-29038

Vulnerability Analysis

This reflected XSS vulnerability occurs due to improper input validation in the RSS tag endpoint of changedetection.io. When a user accesses the /rss/tag/<tag_uuid> route, the application reflects the tag_uuid parameter directly into the HTTP response without sanitizing or escaping HTML entities. The Flask framework, by default, returns responses with a Content-Type of text/html for plain string responses, which causes browsers to interpret and execute any embedded JavaScript code.

The vulnerability allows an attacker to construct a URL containing malicious JavaScript in the tag_uuid parameter. When a victim clicks on this crafted URL, the malicious script executes within the victim's browser session, potentially enabling session hijacking, phishing attacks, or unauthorized actions performed on behalf of the user.

Root Cause

The root cause is the lack of input validation and output encoding for the tag_uuid path parameter in the RSS tag endpoint. The application accepts arbitrary string input without type validation and reflects it in error responses without HTML escaping. Flask's default behavior of serving plain string responses as text/html exacerbates this issue by enabling browser-side script execution.

Attack Vector

An attacker exploits this vulnerability by crafting a malicious URL targeting the /rss/tag/ endpoint with JavaScript code embedded in the tag_uuid parameter. The attack is network-based and requires user interaction—specifically, the victim must click on the malicious link. When the victim accesses the crafted URL, the server reflects the malicious payload in the response, and the browser executes the JavaScript in the context of the application's origin.

The patch addresses this by changing the route parameter type from string:tag_uuid to uuid_str:tag_uuid, which enforces proper UUID format validation:

python
         datastore: The ChangeDetectionStore instance
     """
 
-    @rss_blueprint.route("/tag/<string:tag_uuid>", methods=['GET'])
+    @rss_blueprint.route("/tag/<uuid_str:tag_uuid>", methods=['GET'])
     def rss_tag_feed(tag_uuid):
 
         from flask import make_response, request, url_for

Source: GitHub Commit

Detection Methods for CVE-2026-29038

Indicators of Compromise

  • Suspicious HTTP requests to /rss/tag/ endpoints containing HTML or JavaScript syntax in the URL path
  • Web server logs showing URL-encoded script tags (%3Cscript%3E) or event handlers in tag_uuid parameter
  • Unusual referrer headers pointing to external sites with malicious URL patterns

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block XSS payloads in URL paths
  • Configure intrusion detection systems (IDS) to alert on requests containing <script>, javascript:, or event handler patterns in URL parameters
  • Monitor application logs for requests to /rss/tag/ endpoints with non-UUID format values

Monitoring Recommendations

  • Enable verbose logging for the RSS blueprint endpoints to capture all incoming tag_uuid values
  • Set up alerting for HTTP 500 errors or unusual response sizes from the /rss/tag/ endpoint
  • Implement real-time log analysis to detect potential XSS exploitation attempts

How to Mitigate CVE-2026-29038

Immediate Actions Required

  • Upgrade changedetection.io to version 0.54.4 or later immediately
  • Review web server logs for any signs of exploitation attempts targeting the /rss/tag/ endpoint
  • Inform users about potential phishing attempts involving malicious links to the changedetection.io application

Patch Information

The vulnerability has been addressed in changedetection.io version 0.54.4. The fix implements proper input validation by changing the route parameter type from string:tag_uuid to uuid_str:tag_uuid, ensuring only valid UUID strings are accepted. Users should upgrade to version 0.54.4 or later by following the official release notes. Additional details are available in the GitHub Security Advisory GHSA-8whx-v8qq-pq64.

Workarounds

  • Implement a reverse proxy or WAF rule to validate that tag_uuid parameters conform to UUID format before reaching the application
  • Restrict access to the RSS endpoints to trusted networks or authenticated users only
  • Deploy Content Security Policy (CSP) headers to mitigate the impact of any XSS attacks
bash
# Example nginx configuration to block non-UUID values in tag_uuid
location ~ ^/rss/tag/(.+)$ {
    # Only allow valid UUID format (8-4-4-4-12 hex characters)
    if ($1 !~ "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$") {
        return 400;
    }
    proxy_pass http://changedetection_backend;
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechChangedetection

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.04%

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

  • GitHub Security Advisory GHSA-8whx-v8qq-pq64
  • Related CVEs
  • CVE-2026-35000: ChangeDetection.io File Disclosure Flaw

  • CVE-2026-29039: Changedetection Path Traversal Flaw

  • CVE-2026-27696: Changedetection.io SSRF Vulnerability

  • CVE-2024-32651: changedetection.io SSTI RCE 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