Sep 2, 2026·5 min read·2 visits
SVG SMIL animation tags allow bypass of sanitize-html's scheme filtering via semicolon-separated lists in 'values' attributes, leading to arbitrary JavaScript execution.
A stored Cross-Site Scripting (XSS) vulnerability exists in sanitize-html from version 1.9.0 up to 2.17.6. The flaw permits attackers to bypass scheme-policy enforcement using SVG SMIL animation elements targeting URL attributes with semicolon-separated URI lists.
The library sanitize-html is designed to parse and clean untrusted HTML input, neutralizing script execution vectors while allowing safe tags and attributes to persist. In applications handling user-generated content, rich-text features often allow a subset of SVG tags to enable vector illustrations or animated graphics.
SVG Synchronized Multimedia Integration Language (SMIL) elements, such as <animate> or <set>, present a unique challenge to static sanitizers. These elements allow dynamic manipulation of DOM attributes of parent or sibling tags directly inside the browser's XML rendering engine.
When sanitize-html is configured to allow certain SVG animation elements, it exposes an attack surface where client-side state transitions can alter attributes after sanitization. By abusing this dynamic state transition, attackers can craft payloads that bypass standard URI scheme policies.
The underlying vulnerability arises from how the sanitization library evaluates complex attribute values compared to how web browsers render them at runtime.
Standard HTML attributes like href hold a single URL value, which the sanitizer evaluates as a flat string. If sanitize-html encounters an anchor or SVG link attribute, it checks whether the URI scheme starts with a safe scheme such as http, https, or # (relative fragment).
In the SVG SMIL specification, elements use the values attribute to specify a transition path. When the attributeName of an <animate> tag is set to href, the values attribute takes a semicolon-separated list of target URIs (e.g., values="#safe;javascript:alert(1)").
During sanitization, the parser evaluates the entire values string as a single, flat URL structure. Since the string begins with the allowed fragment character #, the library's scheme validator rules it safe and retains the attribute. Upon browser rendering, the client engine splits the semicolon-separated list and eventually executes the dynamic write of the subsequent javascript: URI into the host element's live href sink, bypassing the sanitization layer completely.
To understand the implementation flaw, we examine the behavioral difference between the vulnerable code path and the patched implementation.
In vulnerable versions of the library, attributes such as values were evaluated on a per-attribute level based on basic regex or scheme matching logic. The library lacked the context that the value in the values attribute would eventually be written to a target URL sink defined by attributeName.
In the patched version (2.17.7), the maintainers introduced the animatesUrlAttribute helper function. This helper intercepts incoming SVG SMIL elements (animate, animatecolor, animatemotion, animatetransform, set) and inspects their target configuration:
function animatesUrlAttribute(name, attribs) {
if (svgAnimationTags.indexOf(name.toLowerCase()) === -1) {
return false;
}
const schemeCheckedAttributes = options.allowedSchemesAppliedToAttributes || [];
return Object.keys(attribs || {}).some(function(attributeName) {
if (attributeName.toLowerCase() !== 'attributename') {
return false;
}
const target = (attribs[attributeName] || '').trim().toLowerCase();
const localName = target.slice(target.lastIndexOf(':') + 1);
return alwaysUrlAttributes.indexOf(localName) !== -1 ||
schemeCheckedAttributes.indexOf(target) !== -1 ||
schemeCheckedAttributes.indexOf(localName) !== -1;
});
}If the parser detects that an animation element is targeting a URL-bearing attribute (like href or a custom configured scheme attribute), the validator immediately discards the entire element rather than trying to sanitize the complex value lists.
Exploitation of this vulnerability requires that the target application has enabled SVG and SMIL animation tags in its configuration. When these conditions are met, the attack can be executed using a stored XSS vector.
An attacker crafts a payload where an anchor element wraps a SMIL animation. The animation element targets the href attribute and passes a semicolon-separated list where the initial entry matches a benign destination, while the second entry contains the malicious payload:
<svg>
<a>
<animate attributeName="href" values="#safe;javascript:alert(document.domain)" dur=".01s" fill="freeze"></animate>
<text y="30">Click to trigger action</text>
</a>
</svg>When the browser parses this structure, the SMIL engine triggers the animation. Because dur is set to .01s and fill is set to freeze, the parent anchor tag's href attribute is permanently rewritten to javascript:alert(document.domain) almost instantly. Clicking the text triggers the script immediately in the victim's session context.
The impact of this vulnerability depends heavily on the execution environment and context of the web application. Stored XSS typically allows attackers to execute arbitrary JavaScript in the context of authenticated sessions of other users.
In web portals, CMS platforms, or message boards where high-privilege users (such as administrators or content managers) interact with content, this flaw could allow an attacker to hijack active sessions, extract sensitive access tokens, or perform actions on behalf of other users.
The vulnerability is classified under CWE-79 (Cross-site Scripting). While the CVSS score is assigned as 5.4, the impact is bound by the fact that the application must explicitly allow SVG elements in its configuration, limiting the exploitability on default out-of-the-box configurations.
The primary remediation for this vulnerability is to upgrade the sanitize-html library to version 2.17.7 or higher, which handles SMIL animation components safely.
For applications that are unable to apply the package upgrade immediately, several defense-in-depth measures can be deployed to block this vector. The most effective mitigation is to review the allowedTags parameter in your sanitize-html configuration and ensure that SMIL tags like animate, animatecolor, animatemotion, animatetransform, and set are excluded from the allowed list.
Additionally, implementing a strict Content Security Policy (CSP) that restricts inline script execution (script-src 'self') will block the execution of the injected javascript: URI even if it successfully bypasses the sanitization parser.
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N| Product | Affected Versions | Fixed Version |
|---|---|---|
sanitize-html apostrophecms | >= 1.9.0, < 2.17.7 | 2.17.7 |
| Attribute | Detail |
|---|---|
| CWE ID | CWE-79 |
| Attack Vector | Network (AV:N) |
| CVSS Severity Score | 5.4 (Medium) |
| Exploit Status | poc |
| CISA KEV Status | Not Listed |
| Impact | Stored Cross-Site Scripting (XSS) |
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
An algorithmic complexity vulnerability in the python sqlparse library versions before 0.6.0 allows an attacker to cause high CPU usage and denial of service via a crafted SQL statement during formatting.
An infinite loop vulnerability in pypdf versions prior to 6.16.0 allows attackers to trigger computational resource exhaustion and complete thread locking by supplying a malformed PDF with a cyclic tree structure. When modifying or rewriting document outlines containing circular references, the library endlessly traverses /Next pointers, resulting in application denial of service.
CVE-2026-84311 (GHSA-763m-79hh-57f2) is an algorithmic complexity Denial of Service (DoS) vulnerability in the pypdf library. Prior to version 6.16.1, the library does not place limits on iterations during the parsing of PDF document outlines and recursive Form XObject (XForm) expansions. An attacker can craft a malicious, highly compressed PDF document containing nested structures which, when parsed, trigger exponential iteration paths, resulting in severe CPU and memory exhaustion.
An algorithmic complexity vulnerability in the pypdf library before version 6.16.1 allows remote or local attackers to cause an application denial of service. The flaw is triggered via maliciously crafted PDF documents that utilize either deeply nested outlines or exponential Directed Acyclic Graph (DAG) structures in Form XObjects.
An authentication bypass vulnerability exists in Filament's app-based (TOTP/authenticator) multi-factor authentication (MFA) system when recovery codes are enabled. This allow attackers possessing primary credentials to bypass the second-factor authentication check entirely by manipulating the Livewire state during the challenge-form validation lifecycle.
An authentication oracle vulnerability exists in Filament before 4.12.5 and 5.7.5. The application initiates MFA challenge workflows prior to verifying user authorization policies, allowing unauthenticated attackers to validate guessed credentials.