Summary
@dynatrace-oss/dynatrace-mcp-server has a workflow template injection via createworkflowfor_notification
A template injection vulnerability in the create_workflow_for_notification tool lets a caller embed Jinja2 expressions that the Dynatrace workflow engine evaluates at runtime, exfiltrating event data to attacker-controlled destinations through a workflow that persists in the tenant after the MCP session ends.
Details
The create_workflow_for_notification tool interpolates three caller-supplied parameters (teamName, problemType, channel) directly into a Dynatrace Workflow definition. Dynatrace Workflows use Jinja2 templating: per the official documentation, {{ ... }} expressions in action inputs are evaluated at workflow runtime for every action except Run Javascript (which is carved out specifically to avoid code injection). A caller can therefore supply, for example, teamName = "{{ event() }}" and have the workflow engine evaluate that expression at runtime, serialising the full event object into the message body delivered to the Slack channel.
The vulnerable code is in src/capabilities/create-workflow-for-problem-notification.ts, lines 82-99:
let notificationWorkflow: WorkflowCreate = {
title: `[MCP POC] Notify team ${teamName} on problem of type ${problemType}`,
description: `Automatically created workflow to notify team ${teamName} on problems of type ${problemType} - ...`,
isPrivate: isPrivate,
type: 'SIMPLE',
tasks: {
send_notification: {
name: 'Send notification',
action: 'dynatrace.slack:slack-send-message',
description: 'Sends a notification to a Slack channel',
input: {
connectionId: 'slack-connection-id',
channel: `{{ \"${channel}\" }}`, // <-- channel sits inside {{ }}
message: `🚨 Alert for Team ${teamName}\n*Problem Type*: ${problemType}\n` +
`*Problem ID*: {{ event()["display_id"] }}\n*Status*: {{ event()["event.status"] }}\n` +
`<{{ environment().url }}/ui/apps/.../problem/{{ event()["event.id"] }}|Click here>`,
},
active: true,
},
},
};
The action used is dynatrace.slack:slack-send-message, which is not in the documented Jinja-expression exception list. Its inputs are evaluated at workflow runtime.
The schema in src/index.ts:1052-1070 registers teamName, problemType, and channel as z.string().optional() with no pattern validation. The isPrivate parameter has .default(false), so created workflows are visible tenant-wide unless the caller explicitly sets it.
The approval prompt at src/index.ts:1069-1072:
const approved = await requestHumanApproval(
`Create a workflow for notifying team ${teamName} via ${channel} about ${problemType} problems`,
);
Renders {{ event() }} literally to the operator with no indication that it will be templated, and does not surface the workflow's visibility.
The workflow is persistent: it remains in the tenant after the MCP session ends, after the operator's MCP credentials are revoked, and after the MCP server is uninstalled. It fires on every matching problem until manually deleted from the Workflows app. The channel parameter is uniquely dangerous because it is interpolated inside an existing {{ "..." }} expression context - close the string with " and you can run arbitrary Jinja expressions in the destination field itself.
PoC
Tested end-to-end against a real Dynatrace tenant. The MCP server was run in stdio mode with the operator's Platform Token. A tools/call create_workflow_for_notification was sent with:
{
"teamName": "{{ event() }}",
"problemType": "ERROR",
"channel": "#mcp-sec-poc",
"isPrivate": true
}
The operator approved the prompt (which read: "Create a workflow for notifying team {{ event() }} via #mcp-sec-poc about ERROR problems"). The MCP returned a workflow ID. Fetching the stored workflow body via the Dynatrace Automation API (GET /platform/automation/v1/workflows/<id>) showed the injected expression stored verbatim:
title: "[MCP POC] Notify team {{ event() }} on problem of type ERROR"
message: "🚨 Alert for Team {{ event() }}\n*Problem Type*: ERROR\n*Problem ID*: {{ event()[\"display_id\"] }}\n..."
channel: '{{ "#mcp-sec-poc" }}'
action: "dynatrace.slack:slack-send-message"
The workflow was then triggered manually via the "Run workflow" feature in the Dynatrace Workflows app, with a synthetic event payload {"display_id":"P-123","event.status":"OPEN","event.id":"abc-123"}. The execution log for the send_notification task shows the workflow engine evaluated the injected expressions at runtime. The "Input" tab for the executed action contains:
channel: #mcp-sec-poc
message: Alert for Team
{'display_id': 'P-123',
'event.status': 'OPEN',
'event.id': 'abc-123'}
*Problem Type*: ERROR
*Problem ID*: P-123
*Status*: OPEN
<https://<tenant>.apps.dynatrace.com/ui/apps/.../problem/abc-123|Click here for details>
The injected {{ event() }} resolved to the actual event object before the Slack action was called. The Slack action then failed only because the workflow uses a hardcoded placeholder connectionId: 'slack-connection-id' that does not resolve to any real connection. If a real Slack connector had been configured, the message would have been delivered with the serialized event data in place of {{ event() }}.
This is end-to-end confirmation of the Jinja-evaluation chain.
Impact
A workflow created with a malicious template payload acts as a persistent exfiltration channel:
- It fires on every matching problem indefinitely.
- The injected template is evaluated at runtime and resolves to whatever the Jinja function returns (
event()gives the full event object,environment()gives tenant metadata, plus other available functions per the Dynatrace Workflows documentation). - The resolved output is delivered to a destination the attacker controls (the
channelparameter is also templated, and is even more dangerous because it is interpolated inside an existing{{ "..." }}expression context). - The workflow persists in the tenant after the MCP session, operator credentials, and MCP server are gone.
- With
isPrivate=false(the default), the workflow is visible to all tenant users.
Exploitation requires either prompt injection (an LLM under the MCP server's control is reading attacker-controlled data and follows an injection that calls create_workflow_for_notification with the malicious arguments) or operator carelessness (the approval prompt shows the raw team name literal and the operator clicks Approve without recognising {{ event() }} as a template fragment). Both are realistic in practice.
GHSA-XRMJ-5G4G-8987 has a CVSS score of 4.2 (Medium). The vector is network-reachable, no privileges required, and user interaction required. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (2.0.0); upgrading removes the vulnerable code path.
Affected versions
Security releases
Kodem intelligence
Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.
Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.
Already deployed Kodem?
See it in your environmentNew to Kodem? Get a demo →Remediation advice
Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.
Frequently Asked Questions
- What is GHSA-XRMJ-5G4G-8987? GHSA-XRMJ-5G4G-8987 is a medium-severity security vulnerability in @dynatrace-oss/dynatrace-mcp-server (npm), affecting versions < 2.0.0. It is fixed in 2.0.0.
- How severe is GHSA-XRMJ-5G4G-8987? GHSA-XRMJ-5G4G-8987 has a CVSS score of 4.2 (Medium). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
- Which versions of @dynatrace-oss/dynatrace-mcp-server are affected by GHSA-XRMJ-5G4G-8987? @dynatrace-oss/dynatrace-mcp-server (npm) versions < 2.0.0 is affected.
- Is there a fix for GHSA-XRMJ-5G4G-8987? Yes. GHSA-XRMJ-5G4G-8987 is fixed in 2.0.0. Upgrade to this version or later.
- Is GHSA-XRMJ-5G4G-8987 exploitable, and should I be worried? Whether GHSA-XRMJ-5G4G-8987 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
- What actually determines whether GHSA-XRMJ-5G4G-8987 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
- How do I fix GHSA-XRMJ-5G4G-8987? Upgrade
@dynatrace-oss/dynatrace-mcp-serverto 2.0.0 or later.