Advisory Database
  • Advisories
  • Dependency Scanning
  1. composer
  2. ›
  3. mediawiki/semantic-media-wiki
  4. ›
  5. CVE-2026-77610

CVE-2026-77610: Semantic MediaWiki has a query debug output XSS (`DebugFormatter`)

September 18, 2026

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

References

  • github.com/SemanticMediaWiki/SemanticMediaWiki/releases/tag/7.2.0
  • github.com/SemanticMediaWiki/SemanticMediaWiki/security/advisories/GHSA-q5fm-9mx6-44f4
  • github.com/advisories/GHSA-q5fm-9mx6-44f4
  • nvd.nist.gov/vuln/detail/CVE-2026-77610

Code Behaviors & Features

Detect and mitigate CVE-2026-77610 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 7.2.0

Fixed versions

  • 7.2.0

Solution

Upgrade to version 7.2.0 or above.

Impact 6.1 MEDIUM

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Learn more about CVSS

Weakness

  • CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Source file

packagist/mediawiki/semantic-media-wiki/CVE-2026-77610.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Sat, 19 Sep 2026 00:16:34 +0000.