Scitex Hub — the complete, unedited output of the deterministic mcptrustchecker engine v1.8.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.8.0",
"methodologyVersion": "mcptrustchecker-1.8"
},
"target": {
"id": "scitex-hub",
"source": {
"kind": "package",
"origin": "scitex-hub"
},
"server": {
"name": "scitex-hub"
}
},
"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.8"
},
"capability": {
"level": "critical",
"reasons": [
"ingests untrusted external content (a prompt-injection entry point)",
"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": [
"untrusted-input",
"sensitive-source",
"code-exec",
"file-write"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (55 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: api_crossref_by_doi → api_project_list_files → cloud_sdk_jobs_cancel. 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": "api_crossref_by_doi → api_project_list_files → cloud_sdk_jobs_cancel"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"api_crossref_by_doi",
"api_project_list_files",
"repo_pull",
"cloud_sdk_data_get",
"cloud_sdk_files_download"
],
"sources": [
"api_project_list_files"
],
"sinks": [
"repo_status",
"onsite_eval_js",
"cloud_sdk_jobs_status",
"cloud_sdk_jobs_cancel",
"cloud_sdk_jobs_list"
],
"path": [
"api_crossref_by_doi",
"api_project_list_files",
"cloud_sdk_jobs_cancel"
],
"edges": [
{
"from": "api_crossref_by_doi",
"to": "api_project_list_files",
"kind": "agent-mediated"
},
{
"from": "api_project_list_files",
"to": "cloud_sdk_jobs_cancel",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-SRC-006",
"title": "Reads a sensitive credential path or dumps the environment (src/scitex_hub/_cli/ssh.py)",
"category": "exfiltration",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/ssh.py:128`): 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/scitex_hub/_cli/ssh.py"
},
"evidence": "~/.ssh",
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"data": {
"rule": "MTC-SRC-006",
"file": "src/scitex_hub/_cli/ssh.py",
"line": 128
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"repo_status\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"repo_status\" appears to run shell commands or evaluate code (keyword \"shell\"). 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": "repo_status"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"onsite_eval_js\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"onsite_eval_js\" appears to run shell commands or evaluate code (keyword \"eval\"). 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": "onsite_eval_js"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"cloud_sdk_jobs_status\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"cloud_sdk_jobs_status\" 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": "cloud_sdk_jobs_status"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"cloud_sdk_jobs_cancel\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"cloud_sdk_jobs_cancel\" 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": "cloud_sdk_jobs_cancel"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"cloud_sdk_jobs_list\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"cloud_sdk_jobs_list\" 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": "cloud_sdk_jobs_list"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SRC-001",
"title": "Dynamic code execution in server code (src/scitex_hub/appmaker/_validate.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/appmaker/_validate.py:24`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. 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/scitex_hub/appmaker/_validate.py"
},
"evidence": "eval(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-001",
"file": "src/scitex_hub/appmaker/_validate.py",
"line": 24
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/_gitea_collab.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/_gitea_collab.py:84`): 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/scitex_hub/_cli/_gitea_collab.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/_gitea_collab.py",
"line": 84
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/_gitea_repo.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/_gitea_repo.py:46`): 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/scitex_hub/_cli/_gitea_repo.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/_gitea_repo.py",
"line": 46
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/_gitea_utils.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/_gitea_utils.py:93`): 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/scitex_hub/_cli/_gitea_utils.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/_gitea_utils.py",
"line": 93
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/_sync_engine.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/_sync_engine.py:91`): 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/scitex_hub/_cli/_sync_engine.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/_sync_engine.py",
"line": 91
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/_workspace_cmds.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/_workspace_cmds.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": "src/scitex_hub/_cli/_workspace_cmds.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/_workspace_cmds.py",
"line": 38
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/ssh.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/ssh.py:157`): 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/scitex_hub/_cli/ssh.py"
},
"evidence": "subprocess.call(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/ssh.py",
"line": 157
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_cli/sync.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_cli/sync.py:66`): 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/scitex_hub/_cli/sync.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_cli/sync.py",
"line": 66
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_mcp_tools/gitea.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_mcp_tools/gitea.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": "src/scitex_hub/_mcp_tools/gitea.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_mcp_tools/gitea.py",
"line": 27
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/_utils/_docker.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/_utils/_docker.py:48`): 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/scitex_hub/_utils/_docker.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/_utils/_docker.py",
"line": 48
}
},
{
"ruleId": "MTC-SRC-002",
"title": "Shell/command execution in server code (src/scitex_hub/appmaker/_deps.py)",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "In the server's implementation (`src/scitex_hub/appmaker/_deps.py:123`): 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/scitex_hub/appmaker/_deps.py"
},
"evidence": "subprocess.run(",
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"rule": "MTC-SRC-002",
"file": "src/scitex_hub/appmaker/_deps.py",
"line": 123
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"cloud_sdk_files_upload\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"cloud_sdk_files_upload\" can write, overwrite or delete files (keyword \"put_object\"). 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": "cloud_sdk_files_upload"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"repo_status\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"repo_status\" 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": "repo_status"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"onsite_eval_js\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"onsite_eval_js\" 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": "onsite_eval_js"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"cloud_sdk_files_upload\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"cloud_sdk_files_upload\" 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": "cloud_sdk_files_upload"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"cloud_sdk_jobs_status\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"cloud_sdk_jobs_status\" 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": "cloud_sdk_jobs_status"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"cloud_sdk_jobs_cancel\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"cloud_sdk_jobs_cancel\" 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": "cloud_sdk_jobs_cancel"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"cloud_sdk_jobs_list\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"cloud_sdk_jobs_list\" 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": "cloud_sdk_jobs_list"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-SUP-012",
"title": "Package has no license",
"category": "hygiene",
"severity": "info",
"confidence": "strong",
"description": "\"scitex-hub\" has no declared license. This is a legal/reuse concern, not a security finding.",
"location": {
"kind": "package",
"name": "scitex-hub"
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"api_crossref_by_doi",
"api_project_list_files",
"repo_pull",
"cloud_sdk_data_get",
"cloud_sdk_files_download"
],
"sensitiveSource": [
"api_project_list_files"
],
"externalSink": [
"repo_status",
"onsite_eval_js",
"cloud_sdk_jobs_status",
"cloud_sdk_jobs_cancel",
"cloud_sdk_jobs_list"
],
"selfContained": false,
"path": [
"api_crossref_by_doi",
"api_project_list_files",
"cloud_sdk_jobs_cancel"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: api_crossref_by_doi → api_project_list_files → cloud_sdk_jobs_cancel."
}
],
"capabilities": [
{
"tool": "api_scholar_search",
"tags": [],
"reasons": {}
},
{
"tool": "api_crossref_search",
"tags": [],
"reasons": {}
},
{
"tool": "api_crossref_by_doi",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "api_writer_compile",
"tags": [],
"reasons": {}
},
{
"tool": "api_writer_list_sections",
"tags": [],
"reasons": {}
},
{
"tool": "api_project_list_files",
"tags": [
"untrusted-input",
"sensitive-source"
],
"reasons": {
"untrusted-input": [
"keyword \"browse\""
],
"sensitive-source": [
"keyword \"list_files\""
]
}
},
{
"tool": "api_project_commit",
"tags": [],
"reasons": {}
},
{
"tool": "api_enrich_bibtex",
"tags": [],
"reasons": {}
},
{
"tool": "api_status",
"tags": [],
"reasons": {}
},
{
"tool": "app_get_current",
"tags": [],
"reasons": {}
},
{
"tool": "app_switch_to",
"tags": [],
"reasons": {}
},
{
"tool": "app_list_all",
"tags": [],
"reasons": {}
},
{
"tool": "app_get_info",
"tags": [],
"reasons": {}
},
{
"tool": "app_check_deps",
"tags": [],
"reasons": {}
},
{
"tool": "app_get_prefs",
"tags": [],
"reasons": {}
},
{
"tool": "app_set_prefs",
"tags": [],
"reasons": {}
},
{
"tool": "repo_login",
"tags": [],
"reasons": {}
},
{
"tool": "repo_clone",
"tags": [],
"reasons": {}
},
{
"tool": "repo_create",
"tags": [],
"reasons": {}
},
{
"tool": "repo_list",
"tags": [],
"reasons": {}
},
{
"tool": "repo_search",
"tags": [],
"reasons": {}
},
{
"tool": "repo_delete",
"tags": [],
"reasons": {}
},
{
"tool": "repo_fork",
"tags": [],
"reasons": {}
},
{
"tool": "repo_pr_create",
"tags": [],
"reasons": {}
},
{
"tool": "repo_pr_list",
"tags": [],
"reasons": {}
},
{
"tool": "repo_issue_create",
"tags": [],
"reasons": {}
},
{
"tool": "repo_issue_list",
"tags": [],
"reasons": {}
},
{
"tool": "repo_push",
"tags": [],
"reasons": {}
},
{
"tool": "repo_pull",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "repo_status",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"shell\""
]
}
},
{
"tool": "onsite_capture_page",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_check_permission",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_get_context",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_eval_js",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"eval\""
]
}
},
{
"tool": "onsite_get_dev_app_url",
"tags": [],
"reasons": {}
},
{
"tool": "onsite_ui_action",
"tags": [],
"reasons": {}
},
{
"tool": "project_list",
"tags": [],
"reasons": {}
},
{
"tool": "project_create",
"tags": [],
"reasons": {}
},
{
"tool": "project_delete",
"tags": [],
"reasons": {}
},
{
"tool": "project_rename",
"tags": [],
"reasons": {}
},
{
"tool": "project_switch",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_list",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_create",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_get",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "cloud_sdk_data_update",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_delete",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_data_search",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_files_list",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_files_upload",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"put_object\""
]
}
},
{
"tool": "cloud_sdk_files_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"fetch\""
]
}
},
{
"tool": "cloud_sdk_files_delete",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_jobs_submit",
"tags": [],
"reasons": {}
},
{
"tool": "cloud_sdk_jobs_status",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"subprocess\""
]
}
},
{
"tool": "cloud_sdk_jobs_cancel",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"subprocess\""
]
}
},
{
"tool": "cloud_sdk_jobs_list",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"subprocess\""
]
}
}
],
"surfaceDigest": "5cea22c6d0ec64b408397beab42f834e65c63bf79876c677447b93f73f654976",
"stats": {
"tools": 55,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 17,
"medium": 1,
"low": 6,
"info": 1
}
}
}