From dafd74e617a92bc9f1fb2f6a7fc773624b9ee601 Mon Sep 17 00:00:00 2001 From: "Alexander \"Axel\" Huxel" Date: Thu, 11 Jun 2026 08:32:15 +0200 Subject: [PATCH 1/3] fix(security): patch DOM-based XSS in bundled Featherlight (CVE-2024-5667) Harden the Featherlight content filters so attacker-controlled attribute values (href, data-featherlight) can no longer execute script: - image: assign the URL via .attr('src', url) instead of concatenating it into markup, preventing attribute breakout - jquery: resolve via $(document).find(elem) so strings are treated as selectors, never parsed as HTML - html: sanitize parsed markup, stripping inline event handlers, javascript: URLs and