GHSA-PC2W-4MQ8-32QW

Vulnerability from github – Published: 2026-07-29 15:36 – Updated: 2026-07-29 15:36
VLAI
Summary
@dynatrace-oss/dynatrace-mcp-server's create_dynatrace_notebook missing the human-approval gate
Details

Summary

A missing human-approval gate on the create_dynatrace_notebook tool allows a caller to create persistent tenant-visible documents containing arbitrary content (including embedded DQL that other users execute when opening the notebook) without operator consent.

Details

dynatrace-mcp-server registers six write tools: send_slack_message, send_email, send_event, create_workflow_for_notification, make_workflow_public, and create_dynatrace_notebook. Five of these call requestHumanApproval() before executing the side-effect, which elicits the operator's explicit consent through the MCP elicitation protocol. The CHANGELOG explicitly states these approval gates were added "to ensure user consent and prevent unintended actions."

create_dynatrace_notebook does not call requestHumanApproval(). The tool was introduced in a separate release from the approval-gate retrofit and was left ungated. As a result, a caller can create persistent, tenant-visible Dynatrace notebooks containing arbitrary content with no operator confirmation. Notebooks can include embedded DQL queries that later execute under the permissions of any tenant user who opens them.

The vulnerable code is in src/index.ts, lines 1563-1601:

tool(
  'create_dynatrace_notebook',
  'Create Dynatrace Notebook',
  'Create a new notebook in the Dynatrace platform ...',
  {
    name: z.string().describe(/* ... */),
    description: z.string().optional().describe(/* ... */),
    content: z.array(z.object({
      type: z.enum(['dql', 'markdown']),
      text: z.string(),
    })).describe(/* ... */),
  },
  {
    readOnlyHint: false,
  },
  async ({ name, content, description }) => {
    const dtClient = await createAuthenticatedHttpClient(allRequiredScopes);
    const data = await createDynatraceNotebook(dtClient, name, content, description);
    // No requestHumanApproval() call.
    // No destructiveHint annotation.
    // Scopes requested are allRequiredScopes (the broadest possible set)
    // even though only document:documents:write is needed.

    return data
      ? `Document created successfully: ${dtEnvironment}/ui/apps/dynatrace.notebooks/notebook/${data.id}`
      : 'document creation failed';
  },
);

By comparison, every other write tool calls requestHumanApproval() as its first action:

  • send_email (line 1274): const approved = await requestHumanApproval(...);
  • send_slack_message (line 652): const approved = await requestHumanApproval(...);
  • send_event (line 1367): const approved = await requestHumanApproval(...);
  • create_workflow_for_notification (line 1069): const approved = await requestHumanApproval(...);
  • make_workflow_public (line 1118): const approved = await requestHumanApproval(...);

PoC

Tested end-to-end against a real Dynatrace tenant. The MCP server was started in HTTP mode with the operator's Platform Token:

export DT_ENVIRONMENT=https://<tenant>.apps.dynatrace.com
export DT_PLATFORM_TOKEN=dt0s16....
npx -y @dynatrace-oss/dynatrace-mcp-server@1.8.5 --http --port 3000

A single unauthenticated POST from a process with no Dynatrace credentials of its own:

curl -sS http://127.0.0.1:3000/ \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{
    "jsonrpc": "2.0", "id": 1, "method": "tools/call",
    "params": {
      "name": "create_dynatrace_notebook",
      "arguments": {
        "name": "Unapproved notebook",
        "description": "Created without operator approval.",
        "content": [
          {"type": "markdown", "text": "# This notebook was created without approval"},
          {"type": "dql",      "text": "fetch logs | limit 10"}
        ]
      }
    }
  }'

The response:

event: message
data: {"result":{"content":[{"type":"text","text":"Document created successfully:
       https://<tenant>.apps.dynatrace.com/ui/apps/dynatrace.notebooks/notebook/<uuid>"}]},
       "jsonrpc":"2.0","id":1}

The notebook is visible in the operator's Notebooks app within seconds. No elicitation prompt was sent to any operator client.

By contrast, the same harness invoking send_email or send_slack_message returns:

"Operation cancelled: Human approval was not granted for sending this email."

The gate logic exists and is wired up for all other write tools - it is simply missing on create_dynatrace_notebook.

Impact

  • A caller (an unauthenticated network attacker over the HTTP transport when authentication is missing, or a prompt-injected LLM in stdio mode) can silently create persistent tenant-visible documents.
  • The notebook content is attacker-controlled. Embedded DQL queries execute under the permissions of any tenant user who later opens the notebook - a stored-DQL pattern that crosses identity boundaries within the tenant.
Show details on source website

{
  "affected": [
    {
      "package": {
        "ecosystem": "npm",
        "name": "@dynatrace-oss/dynatrace-mcp-server"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0"
            },
            {
              "fixed": "1.8.7"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "aliases": [],
  "database_specific": {
    "cwe_ids": [
      "CWE-862"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-07-29T15:36:19Z",
    "nvd_published_at": null,
    "severity": "LOW"
  },
  "details": "### Summary\nA missing human-approval gate on the `create_dynatrace_notebook` tool allows a caller to create persistent tenant-visible documents containing arbitrary content (including embedded DQL that other users execute when opening the notebook) without operator consent.\n\n### Details\n`dynatrace-mcp-server` registers six write tools: `send_slack_message`, `send_email`, `send_event`, `create_workflow_for_notification`, `make_workflow_public`, and `create_dynatrace_notebook`. Five of these call `requestHumanApproval()` before executing the side-effect, which elicits the operator\u0027s explicit consent through the MCP elicitation protocol. The CHANGELOG explicitly states these approval gates were added \"to ensure user consent and prevent unintended actions.\"\n\n`create_dynatrace_notebook` does not call `requestHumanApproval()`. The tool was introduced in a separate release from the approval-gate retrofit and was left ungated. As a result, a caller can create persistent, tenant-visible Dynatrace notebooks containing arbitrary content with no operator confirmation. Notebooks can include embedded DQL queries that later execute under the permissions of any tenant user who opens them.\n\nThe vulnerable code is in `src/index.ts`, lines 1563-1601:\n\n```typescript\ntool(\n  \u0027create_dynatrace_notebook\u0027,\n  \u0027Create Dynatrace Notebook\u0027,\n  \u0027Create a new notebook in the Dynatrace platform ...\u0027,\n  {\n    name: z.string().describe(/* ... */),\n    description: z.string().optional().describe(/* ... */),\n    content: z.array(z.object({\n      type: z.enum([\u0027dql\u0027, \u0027markdown\u0027]),\n      text: z.string(),\n    })).describe(/* ... */),\n  },\n  {\n    readOnlyHint: false,\n  },\n  async ({ name, content, description }) =\u003e {\n    const dtClient = await createAuthenticatedHttpClient(allRequiredScopes);\n    const data = await createDynatraceNotebook(dtClient, name, content, description);\n    // No requestHumanApproval() call.\n    // No destructiveHint annotation.\n    // Scopes requested are allRequiredScopes (the broadest possible set)\n    // even though only document:documents:write is needed.\n\n    return data\n      ? `Document created successfully: ${dtEnvironment}/ui/apps/dynatrace.notebooks/notebook/${data.id}`\n      : \u0027document creation failed\u0027;\n  },\n);\n```\n\nBy comparison, every other write tool calls `requestHumanApproval()` as its first action:\n\n- `send_email` (line 1274): `const approved = await requestHumanApproval(...);`\n- `send_slack_message` (line 652): `const approved = await requestHumanApproval(...);`\n- `send_event` (line 1367): `const approved = await requestHumanApproval(...);`\n- `create_workflow_for_notification` (line 1069): `const approved = await requestHumanApproval(...);`\n- `make_workflow_public` (line 1118): `const approved = await requestHumanApproval(...);`\n\n\n### PoC\nTested end-to-end against a real Dynatrace tenant. The MCP server was started in HTTP mode with the operator\u0027s Platform Token:\n\n```bash\nexport DT_ENVIRONMENT=https://\u003ctenant\u003e.apps.dynatrace.com\nexport DT_PLATFORM_TOKEN=dt0s16....\nnpx -y @dynatrace-oss/dynatrace-mcp-server@1.8.5 --http --port 3000\n```\n\nA single unauthenticated POST from a process with no Dynatrace credentials of its own:\n\n```bash\ncurl -sS http://127.0.0.1:3000/ \\\n  -H \u0027Content-Type: application/json\u0027 \\\n  -H \u0027Accept: application/json, text/event-stream\u0027 \\\n  -d \u0027{\n    \"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/call\",\n    \"params\": {\n      \"name\": \"create_dynatrace_notebook\",\n      \"arguments\": {\n        \"name\": \"Unapproved notebook\",\n        \"description\": \"Created without operator approval.\",\n        \"content\": [\n          {\"type\": \"markdown\", \"text\": \"# This notebook was created without approval\"},\n          {\"type\": \"dql\",      \"text\": \"fetch logs | limit 10\"}\n        ]\n      }\n    }\n  }\u0027\n```\n\nThe response:\n\n```\nevent: message\ndata: {\"result\":{\"content\":[{\"type\":\"text\",\"text\":\"Document created successfully:\n       https://\u003ctenant\u003e.apps.dynatrace.com/ui/apps/dynatrace.notebooks/notebook/\u003cuuid\u003e\"}]},\n       \"jsonrpc\":\"2.0\",\"id\":1}\n```\n\nThe notebook is visible in the operator\u0027s Notebooks app within seconds. No elicitation prompt was sent to any operator client.\n\nBy contrast, the same harness invoking `send_email` or `send_slack_message` returns:\n\n```\n\"Operation cancelled: Human approval was not granted for sending this email.\"\n```\n\nThe gate logic exists and is wired up for all other write tools - it is simply missing on `create_dynatrace_notebook`.\n\n\n### Impact\n- A caller (an unauthenticated network attacker over the HTTP transport when authentication is missing, or a prompt-injected LLM in stdio mode) can silently create persistent tenant-visible documents.\n- The notebook content is attacker-controlled. Embedded DQL queries execute under the permissions of any tenant user who later opens the notebook - a stored-DQL pattern that crosses identity boundaries within the tenant.",
  "id": "GHSA-pc2w-4mq8-32qw",
  "modified": "2026-07-29T15:36:19Z",
  "published": "2026-07-29T15:36:19Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/security/advisories/GHSA-pc2w-4mq8-32qw"
    },
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/pull/529"
    },
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/commit/2851d3ce29d834c93b67f0db903c10e0b488e7ac"
    },
    {
      "type": "PACKAGE",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp"
    },
    {
      "type": "WEB",
      "url": "https://github.com/dynatrace-oss/dynatrace-mcp/releases/tag/v1.8.7"
    }
  ],
  "schema_version": "1.4.0",
  "severity": [
    {
      "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N",
      "type": "CVSS_V3"
    }
  ],
  "summary": "@dynatrace-oss/dynatrace-mcp-server\u0027s create_dynatrace_notebook missing the human-approval gate"
}



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…