GHSA-q5fm-9mx6-44f4: XSS

Published Sep 18, 2026
·
Updated

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).

Affected Software

1 affected componentFixes available
composer/mediawiki/semantic-media-wiki<=7.1.0
7.2.0

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade composer/mediawiki/semantic-media-wiki to a version that resolves this vulnerability.

    Fixed in 7.2.0
  2. Configuration

    Modify the debug HTML generation so that all attacker-controlled query/debug fields are HTML-escaped at the DebugFormatter boundary: escape each entry value when buildHTML() echoes it, escape prettifySQL() output (returned SQL verbatim today) before wrapping, and escape prettifyExplain() (EXPLAIN plan text) before wrapping; do not rely on query-string echo escaping alone, since prettifySQL() and Auxilliary Tables executed-query text also reflect the same attacker-controlled literals.

    SMW\Query\DebugFormatter / Special:Ask debug output Output-context escaping on emitted debug HTML = escape each entry value on emission; escape prettifySQL() and prettifyExplain() strings before wrapping

Event History

Sep 18, 2026
Advisory Published
via GitHub·04:53 PM
Data Sourced
via GitHub·04:53 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

Does exploitation require an authenticated Semantic MediaWiki or MediaWiki account?

No. The affected debug output can be reached through an anonymous request, and no special user right is required.

2

What must an attacker control for a payload to be reflected?

The attacker must supply a query condition targeting a text- or blob-typed property. Markup in the query value can survive SQL quoting and be emitted into the debug response without HTML-context encoding.

3

Which request paths should be considered exposed?

Both the format=debug query output and the debug request parameter on Special:Ask are affected. On Special:Ask, the generated debug string is added directly as HTML rather than being processed by the MediaWiki parser or sanitizer.

4

Is this a stored attack or does it require a victim to load a crafted request?

It is reflected XSS: the payload is supplied in the request and returned in the same response. The supplied vector indicates user interaction is required.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203