Ssh Mcp Zlzero — 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.
{
"tool": {
"name": "mcptrustchecker",
"version": "1.13.0",
"methodologyVersion": "mcptrustchecker-1.13"
},
"target": {
"id": "ssh-mcp-zlzero",
"source": {
"kind": "package",
"origin": "ssh-mcp-zlzero"
},
"server": {
"name": "ssh-mcp-zlzero"
}
},
"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",
"can create, modify or delete files",
"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": [
"code-exec",
"sensitive-source",
"file-write",
"external-sink",
"untrusted-input"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (34 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: download_file → list_directory → execute_command. 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": "download_file → list_directory → execute_command"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"download_file"
],
"sources": [
"read_file",
"list_directory"
],
"sinks": [
"execute_command",
"upload_file"
],
"path": [
"download_file",
"list_directory",
"execute_command"
],
"edges": [
{
"from": "download_file",
"to": "list_directory",
"kind": "agent-mediated"
},
{
"from": "list_directory",
"to": "execute_command",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"execute_command\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"execute_command\" appears to run shell commands or evaluate code (keyword \"execute command\" in tool name). 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": "execute_command"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"write_file\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"write_file\" can write, overwrite or delete files (keyword \"write_file\" in tool name). Verify it is scoped to a safe directory.",
"remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
"location": {
"kind": "tool",
"name": "write_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"append_file\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"append_file\" can write, overwrite or delete files (keyword \"append_file\" in tool name). Verify it is scoped to a safe directory.",
"remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
"location": {
"kind": "tool",
"name": "append_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"delete_file\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"delete_file\" can write, overwrite or delete files (keyword \"delete_file\" in tool name). Verify it is scoped to a safe directory.",
"remediation": "Constrain file operations to an explicit, non-sensitive root; reject path traversal.",
"location": {
"kind": "tool",
"name": "delete_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"execute_command\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"execute_command\" 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": "execute_command"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"write_file\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"write_file\" 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": "write_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"append_file\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"append_file\" 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": "append_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"delete_file\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"delete_file\" 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": "delete_file"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-SUP-012",
"title": "Package has no license",
"category": "hygiene",
"severity": "info",
"confidence": "strong",
"description": "\"ssh-mcp-zlzero\" has no declared license. This is a legal/reuse concern, not a security finding.",
"location": {
"kind": "package",
"name": "ssh-mcp-zlzero"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"download_file"
],
"sensitiveSource": [
"read_file",
"list_directory"
],
"externalSink": [
"execute_command",
"upload_file"
],
"selfContained": false,
"path": [
"download_file",
"list_directory",
"execute_command"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: download_file → list_directory → execute_command."
}
],
"capabilities": [
{
"tool": "test_connection",
"tags": [],
"reasons": {}
},
{
"tool": "list_configured_hosts",
"tags": [],
"reasons": {}
},
{
"tool": "close_connection",
"tags": [],
"reasons": {}
},
{
"tool": "close_all_connections",
"tags": [],
"reasons": {}
},
{
"tool": "check_disk_health",
"tags": [],
"reasons": {}
},
{
"tool": "check_high_load",
"tags": [],
"reasons": {}
},
{
"tool": "check_network_connectivity",
"tags": [],
"reasons": {}
},
{
"tool": "check_security",
"tags": [],
"reasons": {}
},
{
"tool": "tail_log",
"tags": [],
"reasons": {}
},
{
"tool": "analyze_log_errors",
"tags": [],
"reasons": {}
},
{
"tool": "execute_command",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"execute command\" in tool name"
]
}
},
{
"tool": "execute_script",
"tags": [],
"reasons": {}
},
{
"tool": "read_file",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"read_file\""
]
}
},
{
"tool": "write_file",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"write_file\" in tool name"
]
}
},
{
"tool": "append_file",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"append_file\" in tool name"
]
}
},
{
"tool": "list_directory",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "delete_file",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"delete_file\" in tool name"
]
}
},
{
"tool": "search_files",
"tags": [],
"reasons": {}
},
{
"tool": "grep_file",
"tags": [],
"reasons": {}
},
{
"tool": "list_processes",
"tags": [],
"reasons": {}
},
{
"tool": "find_process",
"tags": [],
"reasons": {}
},
{
"tool": "kill_process",
"tags": [],
"reasons": {}
},
{
"tool": "get_open_ports",
"tags": [],
"reasons": {}
},
{
"tool": "upload_file",
"tags": [
"external-sink"
],
"reasons": {
"external-sink": [
"keyword \"upload_file\""
]
}
},
{
"tool": "download_file",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "get_file_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_system_overview",
"tags": [],
"reasons": {}
},
{
"tool": "get_cpu_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_memory_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_disk_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_network_info",
"tags": [],
"reasons": {}
},
{
"tool": "get_system_logs",
"tags": [],
"reasons": {}
},
{
"tool": "check_service_status",
"tags": [],
"reasons": {}
},
{
"tool": "manage_service",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "256547f2a9583537f9b579a5ed80fcb4599d1446c5cf919c02e80ae17091f19c",
"stats": {
"tools": 34,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 1,
"medium": 3,
"low": 4,
"info": 1
}
}
}