VYPR
Moderate severityNVD Advisory· Published Mar 6, 2026· Updated Mar 9, 2026

changedetection.io: Reflected XSS in RSS Tag Error Response

CVE-2026-29038

Description

changedetection.io is a free open source web page change detection tool. Prior to version 0.54.4, there is a reflected cross-site scripting (XSS) vulnerability identified in the /rss/tag/ endpoint of changedetection.io. The tag_uuid path parameter is reflected directly in the HTTP response body without HTML escaping. Since Flask returns text/html by default for plain string responses, the browser parses and executes injected JavaScript. This issue has been patched in version 0.54.4.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
changedetection.ioPyPI
< 0.54.40.54.4

Affected products

1

Patches

1
ec7d56f85d1e

CVE-2026-29038 - Reflected XSS in RSS Tag Error Response

1 file changed · +1 1
  • changedetectionio/blueprint/rss/tag.py+1 1 modified
    @@ -7,7 +7,7 @@ def construct_tag_routes(rss_blueprint, datastore):
             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
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

6

News mentions

0

No linked articles in our index yet.