StarCitizenWiki Extension Embed Video: Stored XSS via unsanitized class passed to template
High severity
GitHub Reviewed
Published
Jun 19, 2026
in
StarCitizenWiki/mediawiki-extensions-EmbedVideo
•
Updated Jun 19, 2026
Description
Published to the GitHub Advisory Database
Jun 19, 2026
Reviewed
Jun 19, 2026
Last updated
Jun 19, 2026
Summary
The user supplied class value is fed directly into the sprintf call that creates HTML. You can add a quote to escape the class and then inject arbitrary html/javascript to the final output.
Details
The template here adds a figure with a class that is substituted in. This value is provided to sprintf here, an unescaped version of the class supplied by the user.
PoC
Note the double quote immediately following the single quote to escape the class attribute in the template:
Impact
Arbitrary HTML can be inserted into the DOM by any user on any page, allowing for JavaScript to be executed.
References