Raw scan report

Crowdsentinel — the complete, unedited output of the deterministic mcptrustchecker engine v1.13.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.13.0",
    "methodologyVersion": "mcptrustchecker-1.13"
  },
  "target": {
    "id": "crowdsentinel-mcp-server",
    "source": {
      "kind": "package",
      "origin": "crowdsentinel-mcp-server"
    },
    "server": {
      "name": "crowdsentinel-mcp-server"
    }
  },
  "grade": "B",
  "score": {
    "score": 89,
    "threatScore": 100,
    "grade": "B",
    "band": "B",
    "categorySubtotals": {
      "injection": 0,
      "exfiltration": 0,
      "permissions": 0,
      "supply-chain": 0,
      "network": 0,
      "hygiene": 0
    },
    "vector": [
      {
        "kind": "client",
        "term": "capability-exposure",
        "level": "critical",
        "label": "capability blast radius (critical) — client exposure if the model is manipulated",
        "appliedPenalty": 10
      },
      {
        "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.13"
  },
  "capability": {
    "level": "critical",
    "reasons": [
      "ingests untrusted external content (a prompt-injection entry point)",
      "can send data / act on an external service",
      "reads sensitive or local data",
      "has a read → egress path (a data-exfiltration surface)",
      "can execute shell commands or code",
      "untrusted-input, sensitive-source and egress co-exist across tools (toxic-flow surface)",
      "untrusted input can reach code execution"
    ],
    "tags": [
      "sensitive-source",
      "external-sink",
      "untrusted-input",
      "code-exec"
    ]
  },
  "coverage": {
    "level": "source",
    "inputs": {
      "toolSurface": true,
      "implementationSource": true,
      "packageMetadata": true,
      "liveTransport": false
    },
    "caveats": [
      "Tools were statically extracted from the published source (139 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-FLOW-002",
      "title": "Completed toxic-flow trifecta across tools",
      "category": "exfiltration",
      "severity": "critical",
      "confidence": "strong",
      "description": "This server (without client built-ins) exposes a complete data-exfiltration chain: velociraptor_evidence_of_download → esql_query → export_to_misp. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.",
      "remediation": "Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.",
      "location": {
        "kind": "flow",
        "name": "velociraptor_evidence_of_download → esql_query → export_to_misp"
      },
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "references": [],
      "data": {
        "untrusted": [
          "velociraptor_evidence_of_download"
        ],
        "sources": [
          "esql_query",
          "osquery_query"
        ],
        "sinks": [
          "export_to_misp"
        ],
        "path": [
          "velociraptor_evidence_of_download",
          "esql_query",
          "export_to_misp"
        ],
        "edges": [
          {
            "from": "velociraptor_evidence_of_download",
            "to": "esql_query",
            "kind": "agent-mediated"
          },
          {
            "from": "esql_query",
            "to": "export_to_misp",
            "kind": "agent-mediated"
          }
        ],
        "wired": false
      }
    },
    {
      "ruleId": "MTC-SRC-006",
      "title": "Reads a sensitive credential path or dumps the environment (src/clients/common/cyber_kill_chain.py)",
      "category": "exfiltration",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/clients/common/cyber_kill_chain.py:633`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. 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": "src/clients/common/cyber_kill_chain.py"
      },
      "evidence": "\" OR \"/etc/sudoers\" OR \"id_rsa\")', \"archive_staging\": \"event.module:auditd AND process.name:(tar OR zip OR g",
      "owasp": "LLM02:2025 Sensitive Information Disclosure",
      "data": {
        "rule": "MTC-SRC-006",
        "file": "src/clients/common/cyber_kill_chain.py",
        "line": 633,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/agent/mcp_bridge.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/agent/mcp_bridge.py:256`): 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": "src/agent/mcp_bridge.py"
      },
      "evidence": "try: proc = subprocess.Popen( cmd, stdin=subprocess.PIPE, st",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/agent/mcp_bridge.py",
        "line": 256,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/clients/common/chainsaw_client.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/clients/common/chainsaw_client.py:289`): 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": "src/clients/common/chainsaw_client.py"
      },
      "evidence": "y: result = subprocess.run( cmd, capture_output=True, text=T",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/clients/common/chainsaw_client.py",
        "line": 289,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/clients/common/osquery_client.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/clients/common/osquery_client.py:162`): 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": "src/clients/common/osquery_client.py"
      },
      "evidence": "try: proc = subprocess.run(cmd, capture_output=True, text=True, timeout=30, check=False) except (sub",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/clients/common/osquery_client.py",
        "line": 162,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/clients/common/schemas/query_builder.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/clients/common/schemas/query_builder.py:131`): 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": "src/clients/common/schemas/query_builder.py"
      },
      "evidence": ") def build_child_processes_query( self, parent_process_name: str, host: str, start_time: str, end_t",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/clients/common/schemas/query_builder.py",
        "line": 131,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/tools/esql_hunting.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/tools/esql_hunting.py:516`): 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": "src/tools/esql_hunting.py"
      },
      "evidence": "ue, include_child_processes: bool = True, include_registry: bool = True, include_pro",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/tools/esql_hunting.py",
        "line": 516,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/wireshark/core/tshark_executor.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/wireshark/core/tshark_executor.py:56`): 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": "src/wireshark/core/tshark_executor.py"
      },
      "evidence": "y: result = subprocess.run([self.tshark_path, \"--version\"], capture_output=True, text=True, timeout=10)",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/wireshark/core/tshark_executor.py",
        "line": 56,
        "nonRuntime": false
      }
    },
    {
      "ruleId": "MTC-SRC-002",
      "title": "Shell/command execution in server code (src/wireshark/extraction/object_extractor.py)",
      "category": "permissions",
      "severity": "high",
      "confidence": "strong",
      "description": "In the server's implementation (`src/wireshark/extraction/object_extractor.py:72`): 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": "src/wireshark/extraction/object_extractor.py"
      },
      "evidence": "result = subprocess.run(cmd, capture_output=True, text=True, timeout=300) # List extract",
      "owasp": "LLM05:2025 Improper Output Handling",
      "data": {
        "rule": "MTC-SRC-002",
        "file": "src/wireshark/extraction/object_extractor.py",
        "line": 72,
        "nonRuntime": false
      }
    }
  ],
  "toxicFlows": [
    {
      "id": "flow-1",
      "severity": "critical",
      "confidence": "strong",
      "untrustedInput": [
        "velociraptor_evidence_of_download"
      ],
      "sensitiveSource": [
        "esql_query",
        "osquery_query"
      ],
      "externalSink": [
        "export_to_misp"
      ],
      "selfContained": false,
      "path": [
        "velociraptor_evidence_of_download",
        "esql_query",
        "export_to_misp"
      ],
      "pathWired": false,
      "description": "A cross-tool exfiltration chain exists: velociraptor_evidence_of_download → esql_query → export_to_misp."
    }
  ],
  "capabilities": [
    {
      "tool": "list_aliases",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_alias",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "put_alias",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_alias",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "discover_all_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_saved_assets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_indices_by_type",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_index_metadata",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_with_sigma_rules",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_ioc_in_evtx",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "iterative_hunt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_pyramid_of_pain_guide",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_diamond_model_guide",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_cluster_health",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_cluster_stats",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "correlate_siem_with_endpoint",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "endpoint_to_siem_pivot",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "endpoint_hunt_from_ioc",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "correlate_by_time",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "build_unified_timeline",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_data_stream",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_data_stream",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_data_stream",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_documents",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "index_document",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_document",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_document",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_by_query",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "eql_search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "eql_delete",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "eql_get_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_esql_hunts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_esql_hunt_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_esql_hunt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "esql_query",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"sql_query\""
        ]
      }
    },
    {
      "tool": "discover_esql_indices",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_esql_execution_history",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "check_esql_support",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_suspicious_process_activity",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "general_api_request",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_indices",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_index",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_index",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "delete_index",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "show_investigation_prompts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "start_guided_investigation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "investigate_with_prompt",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_investigation_query",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "quick_triage",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_investigations",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "create_investigation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "resume_investigation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_investigation_summary",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "add_iocs_to_investigation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_shared_iocs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "export_iocs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "close_investigation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "cleanup_storage",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_progressive_disclosure",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze_search_results",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "decode_command",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_investigation_report",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze_kill_chain_stage",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_kill_chain_overview",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "map_events_to_kill_chain",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "osquery_processes",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "osquery_sockets",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "osquery_users",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "osquery_query",
      "tags": [
        "sensitive-source"
      ],
      "reasons": {
        "sensitive-source": [
          "keyword \"sql_query\""
        ]
      }
    },
    {
      "tool": "list_detection_rules",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_rule_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_detection_rule",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "execute_multiple_rules",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_rules_by_mitre_attack",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_rule_statistics",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_with_rule_category",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "validate_rule_for_data",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "suggest_rules_for_data",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_available_schemas",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_schema_details",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_field_mapping",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "detect_schema_for_index",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_event_type_fields",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "smart_search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "threat_hunt_search",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "quick_count",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_system_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "list_available_capabilities",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_by_timeframe",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze_failed_logins",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "analyze_process_creation",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_for_ioc",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_host_activity_timeline",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "search_with_lucene",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_by_kill_chain_stage",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_adjacent_stages",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "enrich_iocs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "lookup_ioc",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_enrichment_status",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "export_to_misp",
      "tags": [
        "external-sink"
      ],
      "reasons": {
        "external-sink": [
          "keyword \"export_to\""
        ]
      }
    },
    {
      "tool": "search_misp",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_list_clients",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_client_info",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_pslist",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_netstat",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_users",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_groups",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_mounts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_scheduled_tasks",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_services",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_prefetch",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_shimcache",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_amcache",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_userassist",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_bam",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_shellbags",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_recentdocs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_evidence_of_download",
      "tags": [
        "untrusted-input"
      ],
      "reasons": {
        "untrusted-input": [
          "keyword \"download\""
        ]
      }
    },
    {
      "tool": "velociraptor_ntfs_mft",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_autoruns",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_lnk",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_evtx",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_srum",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_collect_artifact",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_get_collection_results",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "velociraptor_list_artifacts",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "pcap_overview",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "build_baseline",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_iocs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "hunt_anomalies",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "track_sessions",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "extract_objects",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "detect_beaconing",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "detect_lateral_movement",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_iocs",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "generate_report",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "decode_traffic",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_investigation_workflow",
      "tags": [],
      "reasons": {}
    },
    {
      "tool": "get_next_step",
      "tags": [],
      "reasons": {}
    }
  ],
  "surfaceDigest": "cf3064e411302fb86b505143a0c7865d689e176a09e704b8da98eb512b14c9bf",
  "stats": {
    "tools": 139,
    "prompts": 0,
    "resources": 0,
    "findingsBySeverity": {
      "critical": 1,
      "high": 8,
      "medium": 0,
      "low": 0,
      "info": 0
    }
  }
}