GHSA-XRMJ-5G4G-8987

Vulnerability from github – Published: 2026-07-31 16:01 – Updated: 2026-07-31 16:01
VLAI
Summary
@dynatrace-oss/dynatrace-mcp-server has a workflow template injection via create_workflow_for_notification
Details

Summary

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 channel parameter 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.

Show details on source website

{
  "affected": [
    {
      "package": {
        "ecosystem": "npm",
        "name": "@dynatrace-oss/dynatrace-mcp-server"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0"
            },
            {
              "fixed": "2.0.0"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "aliases": [],
  "database_specific": {
    "cwe_ids": [
      "CWE-1336"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-07-31T16:01:07Z",
    "nvd_published_at": null,
    "severity": "MODERATE"
  },
  "details": "### Summary\nA 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.\n\n### Details\nThe `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](https://docs.dynatrace.com/docs/analyze-explore-automate/workflows/reference), `{{ ... }}` 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.\n\nThe vulnerable code is in `src/capabilities/create-workflow-for-problem-notification.ts`, lines 82-99:\n\n```typescript\nlet notificationWorkflow: WorkflowCreate = {\n  title: `[MCP POC] Notify team ${teamName} on problem of type ${problemType}`,\n  description: `Automatically created workflow to notify team ${teamName} on problems of type ${problemType} - ...`,\n  isPrivate: isPrivate,\n  type: \u0027SIMPLE\u0027,\n  tasks: {\n    send_notification: {\n      name: \u0027Send notification\u0027,\n      action: \u0027dynatrace.slack:slack-send-message\u0027,\n      description: \u0027Sends a notification to a Slack channel\u0027,\n      input: {\n        connectionId: \u0027slack-connection-id\u0027,\n        channel: `{{ \\\"${channel}\\\" }}`,        // \u003c-- channel sits inside {{ }}\n        message: `\ud83d\udea8 Alert for Team ${teamName}\\n*Problem Type*: ${problemType}\\n` +\n                 `*Problem ID*: {{ event()[\"display_id\"] }}\\n*Status*: {{ event()[\"event.status\"] }}\\n` +\n                 `\u003c{{ environment().url }}/ui/apps/.../problem/{{ event()[\"event.id\"] }}|Click here\u003e`,\n      },\n      active: true,\n    },\n  },\n};\n```\n\nThe 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.\n\nThe 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.\n\nThe approval prompt at `src/index.ts:1069-1072`:\n\n```typescript\nconst approved = await requestHumanApproval(\n  `Create a workflow for notifying team ${teamName} via ${channel} about ${problemType} problems`,\n);\n```\n\nRenders `{{ event() }}` literally to the operator with no indication that it will be templated, and does not surface the workflow\u0027s visibility.\n\nThe workflow is persistent: it remains in the tenant after the MCP session ends, after the operator\u0027s 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.\n\n\n### PoC\n\nTested end-to-end against a real Dynatrace tenant. The MCP server was run in stdio mode with the operator\u0027s Platform Token. A `tools/call create_workflow_for_notification` was sent with:\n\n```json\n{\n  \"teamName\":    \"{{ event() }}\",\n  \"problemType\": \"ERROR\",\n  \"channel\":     \"#mcp-sec-poc\",\n  \"isPrivate\":   true\n}\n```\n\nThe 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/\u003cid\u003e`) showed the injected expression stored verbatim:\n\n```\ntitle:   \"[MCP POC] Notify team {{ event() }} on problem of type ERROR\"\nmessage: \"\ud83d\udea8 Alert for Team {{ event() }}\\n*Problem Type*: ERROR\\n*Problem ID*: {{ event()[\\\"display_id\\\"] }}\\n...\"\nchannel: \u0027{{ \"#mcp-sec-poc\" }}\u0027\naction:  \"dynatrace.slack:slack-send-message\"\n```\n\nThe 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:\n\n```\nchannel: #mcp-sec-poc\nmessage: Alert for Team\n         {\u0027display_id\u0027: \u0027P-123\u0027,\n          \u0027event.status\u0027: \u0027OPEN\u0027,\n          \u0027event.id\u0027: \u0027abc-123\u0027}\n         *Problem Type*: ERROR\n         *Problem ID*: P-123\n         *Status*: OPEN\n         \u003chttps://\u003ctenant\u003e.apps.dynatrace.com/ui/apps/.../problem/abc-123|Click here for details\u003e\n```\n\nThe 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: \u0027slack-connection-id\u0027` 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() }}`.\n\nThis is end-to-end confirmation of the Jinja-evaluation chain.\n\n### Impact\nA workflow created with a malicious template payload acts as a persistent exfiltration channel:\n\n- It fires on every matching problem indefinitely.\n- 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).\n- The resolved output is delivered to a destination the attacker controls (the `channel` parameter is also templated, and is even more dangerous because it is interpolated inside an existing `{{ \"...\" }}` expression context).\n- The workflow persists in the tenant after the MCP session, operator credentials, and MCP server are gone.\n- With `isPrivate=false` (the default), the workflow is visible to all tenant users.\n\nExploitation requires either prompt injection (an LLM under the MCP server\u0027s 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.",
  "id": "GHSA-xrmj-5g4g-8987",
  "modified": "2026-07-31T16:01:07Z",
  "published": "2026-07-31T16:01:07Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/security/advisories/GHSA-xrmj-5g4g-8987"
    },
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/pull/547"
    },
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/commit/64dfcb1095823d0fb43013635446288a6ff60e29"
    },
    {
      "type": "PACKAGE",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp"
    },
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/releases/tag/v2.0.0"
    }
  ],
  "schema_version": "1.4.0",
  "severity": [
    {
      "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
      "type": "CVSS_V3"
    }
  ],
  "summary": "@dynatrace-oss/dynatrace-mcp-server has a workflow template injection via create_workflow_for_notification"
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…

Loading…