CVE-2026-77610: Semantic MediaWiki has a query debug output XSS (`DebugFormatter`)
Query debug output XSS
Failure mode
Semantic MediaWiki's query debug output (format=debug, or the debug request parameter on Special:Ask) is assembled by SMW\Query\DebugFormatter and emitted as raw HTML. Several of its sinks apply no output-context encoding, so attacker-controlled query input is reflected into the page without escaping:
- buildHTML() echoes the re-serialized ASK query string escaping only [; <, >, ", ' pass through. - prettifySQL() returns the generated SQL verbatim. Query value literals are inlined into the SQL through the database layer's quoting (SQL-escaping only, no HTML encoding), so markup in a value survives. - prettifyExplain() echoes EXPLAIN output; on PostgreSQL the plan text contains the WHERE literals.
On Special:Ask the resulting string is concatenated into the page and sent through OutputPage::addHTML, never through the MediaWiki parser or Sanitizer. No special user right is required; an anonymous request suffices.
This is a reflected XSS: the payload is taken from the request and echoed in the same response. Exploitation requires the query condition to target a text/blob-typed property (whose value is re-serialized verbatim); the predefined txt properties (Text, etc.) that ship on every install satisfy this, so no attacker-created content is needed. Example request:
Special:Ask?q=[[Text::<script>alert(document.domain)</script>]]&debug=1
Remediation
- Apply output-context escaping at the DebugFormatter boundary. The buildHTML() contract already assumes its inputs are HTML-safe, but its callers do not honour that; escape each entry value on emission, and the SQL and EXPLAIN strings before they are wrapped. - Escaping only the query-string echo is insufficient: prettifySQL() and the "Auxilliary Tables" executed-query text carry the same attacker-controlled literals.
Scope
The prettifySPARQL() sink already encodes < and > and is not affected. The same debug path is also reachable through inline {{#ask:...|format=debug}}, but that output returns into parser context and is sanitized there; the reflected Special:Ask path is the exposed sink.
Relationship to GHSA-5jhc-3j2f-52rv
This issue was identified while splitting the consolidated report GHSA-5jhc-3j2f-52rv into per-vulnerability advisories. It is distinct from the four items in that report (plain table header, sep, SearchByProperty value, open redirect) and from Special:Ask form-input XSS (which is escaped separately).
Other sources
Semantic MediaWiki is a free, open-source extension to MediaWiki that lets users store and query data within the wiki's pages. Prior to version 7.2.0, query debug output (format=debug, or the debug request parameter on Special:Ask) is assembled by SMW\Query\DebugFormatter and emitted as raw HTML. Several of its sinks apply no output-context encoding, so attacker-controlled query input is reflected into the page without escaping. On Special:Ask the resulting string is concatenated into the page and sent through OutputPage::addHTML, never through the MediaWiki parser or Sanitizer. No special user right is required; an anonymous request suffices. This is a reflected XSS: the payload is taken from the request and echoed in the same response. Exploitation requires the query condition to target a text/blob-typed property (whose value is re-serialized verbatim); the predefined txt properties (Text, etc.) that ship on every install satisfy this, so no attacker-created content is needed. Version 7.2.0 patches the issue.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
composer/mediawiki/semantic-media-wikito a version that resolves this vulnerability.Fixed in 7.2.0 - Upgrade
Upgrade
Semantic MediaWiki (SMW) DebugFormatterto a version that resolves this vulnerability.Fixed in 7.2.0 - Configuration
When assembling query debug output (format=debug or debug on Special:Ask), escape all attacker-controlled literals at the DebugFormatter emission boundary: escape the prettified ASK query string, the prettifySQL() return SQL verbatim, the prettifyExplain() echoed EXPLAIN output (including WHERE literals), and the 'Auxilliary Tables' executed-query text; do not rely on escaping only the query-string echo or only '[' (ensure all required output-context escaping is applied for each sink before wrapping in HTML).
SMW\Query\DebugFormatter debug output HTML escaping at DebugFormatter boundary = apply output-context escaping to all emitted query-string/SQL/EXPLAIN/auxiliary-table text
Event History
Frequently Asked Questions
Who can exploit this issue?
An unauthenticated attacker can exploit it by sending a crafted request. No special Semantic MediaWiki or MediaWiki user right is required.
Are default installations exposed?
Yes. Exploitation requires a query condition targeting a text/blob property, and the predefined _txt properties such as Text are present on every installation, so no attacker-created content is needed.
What interaction is required for impact?
This is reflected XSS: the crafted query input is returned in the same response. A victim must load the attacker-crafted Special:Ask request or debug-output URL for attacker-controlled script to execute in their browser.
How can I determine whether an instance is affected?
Instances running Semantic MediaWiki versions before 7.2.0 are affected. The vulnerable paths are query debug output using format=debug or the debug request parameter on Special:Ask.
What is the available remediation?
Upgrade Semantic MediaWiki to version 7.2.0, which patches the issue.