GHSA-34pm-923j-7wf8: XSS

Published Aug 18, 2026
·
Updated

Summary

Kestra’s Markdown renderer supports a custom [[link ...]] syntax that is converted into a custom HTML element. The custom Markdown parser allows attacker-controlled attributes to be rendered into the generated element without proper allowlisting or sanitization.

As a result, a user who can create or edit Markdown-rendered content, such as a Flow description, can inject JavaScript event-handler attributes. When another user views or interacts with the affected Markdown-rendered UI element, the JavaScript executes in that user’s browser.

This is not a normal raw-HTML Markdown payload such as <img onerror=...>. The payload uses Kestra’s custom [[link]] Markdown syntax, and the dangerous HTML attributes are introduced by Kestra’s own Markdown plugin.

Affected version

Tested on Kestra 1.3.22.

Affected components

Source review identified the issue in the custom Markdown link renderer:

ui/src/utils/markdownplugins/link.ts ui/src/utils/markdown.ts ui/src/components/layout/Markdown.vue

The vulnerable code path renders parsed attributes directly into an HTML string:

ts const attrs = token.attrs ? token.attrs.map(([name, value]) => ${name}="${value}").join("") : "";

return <router-md ${attrs}>;

The implementation does not safely restrict attribute names or values before inserting the generated HTML into the DOM.

Proof of concept

Create or edit a Flow with the following YAML:

yaml id: markdownxssflowdesc namespace: company.team description: | [[link x="y" style="position:fixed;inset:0;z-index:9999;background:rgba(255,0,0,0.05)" onmouseover="alert(document.domain)"]]

tasks: - id: hello type: io.kestra.plugin.core.log.Log message: hello

Save the Flow.

Then navigate to the Flow list:

text http://localhost:8080/ui/main/flows

Click the description/info icon next to the malicious Flow.

Actual result

The browser executes JavaScript from the Flow description. In the PoC, an alert is triggered showing the current domain.

Expected result

Markdown-rendered Flow descriptions should not be able to inject arbitrary JavaScript event handlers or attacker-controlled HTML attributes into the page.

The custom [[link]] syntax should only generate safe attributes required for the intended router-link behavior.

Security impact

An attacker with permission to create or update a Flow in a namespace can store a malicious Markdown payload in the Flow description. When another Kestra user views the Flow list and opens the Flow description/info panel, attacker-controlled JavaScript executes in the victim’s browser.

Depending on the victim’s privileges, this may allow the attacker to perform actions as the victim within the Kestra UI, access data visible to the victim, or pivot into more privileged namespace or administrative functionality.

This crosses a security boundary in multi-user Kestra deployments where Flow authors are less privileged than administrators or other operators who review workflows.

Suggested remediation

The custom Markdown link plugin should not render arbitrary attributes into raw HTML.

Recommended fixes:

1. Allowlist only the exact attributes required by the custom router link component. 2. Reject all attributes beginning with on, such as onclick, onmouseover, and onfocus. 3. Reject or sanitize dangerous attributes such as style. 4. HTML-escape all attribute values before rendering. 5. Ensure attributes are joined safely with spaces. 6. Sanitize the final rendered Markdown output before passing it to v-html. 7. Add regression tests for custom [[link]] payloads containing event-handler attributes.

Minimal payload

md [[link x="y" style="position:fixed;inset:0;z-index:9999;background:rgba(255,0,0,0.05)" onmouseover="alert(document.domain)"]]

Evidence collected

The payload was stored in a Flow description. The Flow list displayed the malicious Flow. Opening the Flow description/info panel triggered JavaScript execution in the browser. The payload did not require execution of the Flow. The payload used Kestra’s custom [[link]] syntax rather than raw HTML.

Affected Software

1 affected componentFixes available
maven/io.kestra:kestra<1.3.24
1.3.24

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade maven/io.kestra:kestra to a version that resolves this vulnerability.

    Fixed in 1.3.24
  2. Configuration

    In the custom `[[link ...]]` renderer, reject all attributes whose names begin with `on` (e.g., `onclick`, `onmouseover`, `onfocus`) and reject/sanitize dangerous attributes such as `style`. Allowlist only the exact attributes required for the intended router-link behavior. Ensure attribute name/value construction is safe (join attributes with spaces) and HTML-escape all attribute values before rendering.

    Kestra custom Markdown link renderer (`ui/src/utils/markdown_plugins/link.ts` and `ui/src/utils/markdown.ts` used by `ui/src/components/layout/Markdown.vue`) Attribute handling for custom `[[link ...]]` = Reject/sanitize
  3. Configuration

    Sanitize the final rendered Markdown output before passing it to `v-html`, so attacker-controlled attributes from the custom `[[link ...]]` syntax cannot inject arbitrary JavaScript event handlers or dangerous HTML attributes into the page.

    Kestra Markdown rendering pipeline Rendered output sanitization before DOM insertion (v-html) = Sanitize

Event History

Aug 18, 2026
Advisory Published
via GitHub·04:31 PM
Data Sourced
via GitHub·04:31 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

Who is exposed to this issue?

Users who view or interact with affected Markdown-rendered elements are exposed if attacker-controlled content has been created or edited. The script executes in the viewing user’s browser, so impact depends on the privileges of that user’s session.

2

What level of access does an attacker need?

An attacker needs permission to create or edit Markdown-rendered content, such as a Flow description. They must then cause another user to view or interact with the resulting rendered element.

3

What version information is confirmed?

Kestra 1.3.22 was tested as affected. The provided data references the v1.3.24 release, but does not explicitly state a complete affected-version range.

4

How can I investigate whether my deployment may be affected?

Review which users can create or modify Markdown-rendered content and search that content for Kestra custom [[link ...]] syntax containing unexpected attributes, particularly JavaScript event-handler attributes. The affected rendering path is identified in ui/src/utils/markdown_plugins/link.ts, ui/src/utils/markdown.ts, and ui/src/components/layout/Markdown.vue.

5

What can be done if patching is not immediately possible?

No configuration-based workaround is identified in the provided data. Reducing untrusted users’ ability to create or edit Markdown-rendered content can limit the stated attack prerequisite until remediation is available.

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