GHSA-q5fm-9mx6-44f4

Suggest an improvement
Source
https://github.com/advisories/GHSA-q5fm-9mx6-44f4
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-q5fm-9mx6-44f4/GHSA-q5fm-9mx6-44f4.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-q5fm-9mx6-44f4
Aliases
  • CVE-2026-77610
Published
2026-09-18T16:53:23Z
Modified
2026-09-18T17:00:04Z
Severity
  • 6.1 (Medium) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N CVSS Calculator
Summary
Semantic MediaWiki has a query debug output XSS (`DebugFormatter`)
Details

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

Database specific
{
    "cwe_ids": [
        "CWE-79"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-09-18T16:53:23Z",
    "nvd_published_at": null,
    "severity": "MODERATE"
}
References

Affected packages

Packagist / mediawiki/semantic-media-wiki

Package

Name
mediawiki/semantic-media-wiki
Purl
pkg:composer/mediawiki/semantic-media-wiki

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
7.2.0

Affected versions

1.*
1.9beta1
1.9-RC1
1.9
1.9.0.1
1.9.0.2
1.9.1
1.9.1.1
1.9.2
2.*
2.0-RC1
2.0-RC2
2.0-RC3
2.0
2.1.0-RC1
2.1.0
2.1.1
2.1.2
2.1.3
2.2.0-RC1
2.2.0
2.2.1
2.2.2
2.2.3
2.3.0-RC1
2.3.0
2.3.1
2.4.0-RC1
2.4.0
2.4.1
2.4.2
2.4.3
2.4.4
2.4.5
2.4.6
2.5.0-rc.1
2.5.0
2.5.1
2.5.2
2.5.3
2.5.4
2.5.5
2.5.6
2.5.7
2.5.8
3.*
3.0.0-rc.1
3.0.0-rc.2
3.0.0
3.0.1
3.0.2
3.1.0-rc.1
3.1.0
3.1.1
3.1.2
3.1.3
3.1.4
3.1.5
3.1.6
3.2.0-rc.1
3.2.0-rc.2
3.2.0
3.2.1
3.2.2
3.2.3
4.*
4.0.0
4.0.1
4.0.2
4.1.0
4.1.1
4.1.2
4.1.3
4.2.0
5.*
5.0.0
5.0.1
5.0.2
5.1.0
6.*
6.0.0
6.0.1
7.*
7.0.0
7.1.0

Database specific

last_known_affected_version_range
"<= 7.1.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-q5fm-9mx6-44f4/GHSA-q5fm-9mx6-44f4.json"