Extension Tools — 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": "@mcp-b/extension-tools",
"source": {
"kind": "package",
"origin": "@mcp-b/extension-tools"
},
"server": {
"name": "@mcp-b/extension-tools"
}
},
"grade": "A",
"score": {
"score": 90,
"threatScore": 100,
"grade": "A",
"band": "A",
"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": "source",
"label": "publisher verification (provenance) — cryptographic build provenance ties the artifact to its source",
"appliedPenalty": 0
},
{
"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 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",
"file-write",
"code-exec",
"sensitive-source"
]
},
"coverage": {
"level": "source",
"inputs": {
"toolSurface": true,
"implementationSource": true,
"packageMetadata": true,
"liveTransport": false
},
"caveats": [
"Tools were statically extracted from the published source (200 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: extension_tool_accept_danger → extension_tool_get_tokens → extension_tool_clear_font. 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": "extension_tool_accept_danger → extension_tool_get_tokens → extension_tool_clear_font"
},
"owasp": "LLM02:2025 Sensitive Information Disclosure",
"references": [],
"data": {
"untrusted": [
"extension_tool_remove_downloads",
"extension_tool_download_file",
"extension_tool_pause_download",
"extension_tool_resume_download",
"extension_tool_cancel_download",
"extension_tool_get_file_icon",
"extension_tool_open_download",
"extension_tool_show_download",
"extension_tool_remove_file",
"extension_tool_accept_danger",
"extension_tool_set_ui_options"
],
"sources": [
"extension_tool_get_tokens"
],
"sinks": [
"extension_tool_eval_inspected_window",
"extension_tool_get_font",
"extension_tool_set_font",
"extension_tool_clear_font"
],
"path": [
"extension_tool_accept_danger",
"extension_tool_get_tokens",
"extension_tool_clear_font"
],
"edges": [
{
"from": "extension_tool_accept_danger",
"to": "extension_tool_get_tokens",
"kind": "agent-mediated"
},
{
"from": "extension_tool_get_tokens",
"to": "extension_tool_clear_font",
"kind": "agent-mediated"
}
],
"wired": false
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"extension_tool_eval_inspected_window\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"extension_tool_eval_inspected_window\" appears to run shell commands or evaluate code (keyword \"eval\" 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": "extension_tool_eval_inspected_window"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"extension_tool_get_font\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"extension_tool_get_font\" appears to run shell commands or evaluate code (parameter \"script\"). 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": "extension_tool_get_font"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"extension_tool_set_font\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"extension_tool_set_font\" appears to run shell commands or evaluate code (parameter \"script\"). 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": "extension_tool_set_font"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-001",
"title": "Tool \"extension_tool_clear_font\" exposes command/code execution",
"category": "permissions",
"severity": "high",
"confidence": "strong",
"description": "Tool \"extension_tool_clear_font\" appears to run shell commands or evaluate code (parameter \"script\"). 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": "extension_tool_clear_font"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-007",
"title": "Unconstrained URL/host parameter \"url\" on \"extension_tool_download_file\"",
"category": "network",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"extension_tool_download_file\" takes a URL/host parameter \"url\" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).",
"remediation": "Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.",
"location": {
"kind": "tool",
"name": "extension_tool_download_file",
"field": "inputSchema.properties.url"
},
"owasp": "LLM06:2025 Excessive Agency",
"data": {
"param": "url"
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"extension_tool_remove_file_systems\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"extension_tool_remove_file_systems\" can write, overwrite or delete files (keyword \"remove_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": "extension_tool_remove_file_systems"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-002",
"title": "Tool \"extension_tool_remove_file\" can modify the filesystem",
"category": "permissions",
"severity": "medium",
"confidence": "strong",
"description": "Tool \"extension_tool_remove_file\" can write, overwrite or delete files (keyword \"remove_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": "extension_tool_remove_file"
},
"data": {
"tags": [
"untrusted-input",
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"script\" on \"extension_tool_get_font\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"extension_tool_get_font\" takes a command-shaped parameter \"script\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "extension_tool_get_font",
"field": "inputSchema.properties.script"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "script"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"script\" on \"extension_tool_set_font\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"extension_tool_set_font\" takes a command-shaped parameter \"script\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "extension_tool_set_font",
"field": "inputSchema.properties.script"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "script"
}
},
{
"ruleId": "MTC-CAP-006",
"title": "Unconstrained command parameter \"script\" on \"extension_tool_clear_font\"",
"category": "permissions",
"severity": "medium",
"confidence": "heuristic",
"description": "Tool \"extension_tool_clear_font\" takes a command-shaped parameter \"script\" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.",
"remediation": "Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.",
"location": {
"kind": "tool",
"name": "extension_tool_clear_font",
"field": "inputSchema.properties.script"
},
"owasp": "LLM05:2025 Improper Output Handling",
"data": {
"param": "script"
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"extension_tool_remove_file_systems\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"extension_tool_remove_file_systems\" 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": "extension_tool_remove_file_systems"
},
"data": {
"tags": [
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"extension_tool_eval_inspected_window\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"extension_tool_eval_inspected_window\" 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": "extension_tool_eval_inspected_window"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"extension_tool_remove_file\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"extension_tool_remove_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": "extension_tool_remove_file"
},
"data": {
"tags": [
"untrusted-input",
"file-write"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"extension_tool_get_font\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"extension_tool_get_font\" 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": "extension_tool_get_font"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"extension_tool_set_font\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"extension_tool_set_font\" 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": "extension_tool_set_font"
},
"data": {
"tags": [
"code-exec"
]
}
},
{
"ruleId": "MTC-CAP-005",
"title": "Mutating tool \"extension_tool_clear_font\" declares no destructiveHint",
"category": "hygiene",
"severity": "low",
"confidence": "heuristic",
"description": "Tool \"extension_tool_clear_font\" 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": "extension_tool_clear_font"
},
"data": {
"tags": [
"code-exec"
]
}
}
],
"toxicFlows": [
{
"id": "flow-1",
"severity": "critical",
"confidence": "strong",
"untrustedInput": [
"extension_tool_remove_downloads",
"extension_tool_download_file",
"extension_tool_pause_download",
"extension_tool_resume_download",
"extension_tool_cancel_download",
"extension_tool_get_file_icon",
"extension_tool_open_download",
"extension_tool_show_download",
"extension_tool_remove_file",
"extension_tool_accept_danger",
"extension_tool_set_ui_options"
],
"sensitiveSource": [
"extension_tool_get_tokens"
],
"externalSink": [
"extension_tool_eval_inspected_window",
"extension_tool_get_font",
"extension_tool_set_font",
"extension_tool_clear_font"
],
"selfContained": false,
"path": [
"extension_tool_accept_danger",
"extension_tool_get_tokens",
"extension_tool_clear_font"
],
"pathWired": false,
"description": "A cross-tool exfiltration chain exists: extension_tool_accept_danger → extension_tool_get_tokens → extension_tool_clear_font."
}
],
"capabilities": [
{
"tool": "extension_tool_create_alarm",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_alarm",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_all_alarms",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_alarm",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_all_alarms",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_audio_devices",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_audio_mute",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_active_audio_devices",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_audio_mute",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_audio_device_properties",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_bookmark_operations",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_bookmark_parameters_description",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_browsing_data",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_appcache",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_cache",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_cache_storage",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_cookies",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_downloads",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_remove_file_systems",
"tags": [
"file-write"
],
"reasons": {
"file-write": [
"keyword \"remove_file\" in tool name"
]
}
},
{
"tool": "extension_tool_remove_form_data",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_history",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_indexed_db",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_local_storage",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_passwords",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_service_workers",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_web_sql",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_browsing_data_settings",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_certificates",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_report_signature",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_request_pin",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_stop_pin_request",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_listen_certificates_update_requested",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_listen_signature_requested",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_all_commands",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_cookies_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_cookies_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_cookies_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_javascript_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_javascript_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_javascript_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_images_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_images_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_images_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_location_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_location_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_location_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_notifications_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_notifications_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_notifications_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_popups_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_popups_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_popups_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_camera_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_camera_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_camera_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_microphone_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_microphone_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_microphone_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_automatic_downloads_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_automatic_downloads_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_automatic_downloads_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_clipboard_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_clipboard_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_clipboard_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_auto_verify_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_auto_verify_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_auto_verify_setting",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_plugins_resource_identifiers",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_create_context_menu",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_update_context_menu",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_context_menu",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_all_context_menus",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_cookie",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_all_cookies",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_all_cookie_stores",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_partition_key",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_cookie",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_cookie",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_attach_debugger",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_detach_debugger",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_send_debugger_command",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_debug_targets",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_add_declarative_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_declarative_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_declarative_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_dynamic_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_update_dynamic_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_session_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_update_session_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_enabled_rulesets",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_update_enabled_rulesets",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_update_static_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_available_static_rule_count",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_matched_rules",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_is_regex_supported",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_test_match_outcome",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_extension_action_options",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_choose_desktop_media",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_cancel_choose_desktop_media",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_eval_inspected_window",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"keyword \"eval\" in tool name"
]
}
},
{
"tool": "extension_tool_reload_inspected_window",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_inspected_window_resources",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_har",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_on_navigated",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_on_request_finished",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_create_panel",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_create_sidebar_pane",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_theme_color",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_open_resource",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_open_resource_handler",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_document_scan",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_scanner_list",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_open_scanner",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_close_scanner",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_option_groups",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_scanner_options",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_start_scan",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_read_scan_data",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_cancel_scan",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_open_or_closed_shadow_root",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_download_file",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_search_downloads",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_pause_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_resume_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_cancel_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_get_file_icon",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_open_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_show_download",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_show_default_folder",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_erase_downloads",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_file",
"tags": [
"untrusted-input",
"file-write"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
],
"file-write": [
"keyword \"remove_file\" in tool name"
]
}
},
{
"tool": "extension_tool_accept_danger",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_set_ui_options",
"tags": [
"untrusted-input"
],
"reasons": {
"untrusted-input": [
"keyword \"download\""
]
}
},
{
"tool": "extension_tool_get_directory_device_id",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_device_serial_number",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_device_asset_id",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_device_annotated_location",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_device_hostname",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_hardware_platform_info",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_network_details",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_tokens",
"tags": [
"sensitive-source"
],
"reasons": {
"sensitive-source": [
"keyword \"get_token\""
]
}
},
{
"tool": "extension_tool_get_certificates",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_import_certificate",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_certificate",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_challenge_machine_key",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_challenge_user_key",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_background_page",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_views",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_is_allowed_file_scheme_access",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_is_allowed_incognito_access",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_update_url_data",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_execute_event_details",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_add_execute_listener",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_execute_listener",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_mount_file_system",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_unmount_file_system",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_file_system",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_all_file_systems",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_notify_file_system_changes",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_font",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"script\""
]
}
},
{
"tool": "extension_tool_set_font",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"script\""
]
}
},
{
"tool": "extension_tool_clear_font",
"tags": [
"code-exec"
],
"reasons": {
"code-exec": [
"parameter \"script\""
]
}
},
{
"tool": "extension_tool_get_font_list",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_default_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_default_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_default_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_default_fixed_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_default_fixed_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_default_fixed_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_minimum_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_minimum_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_minimum_font_size",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_gcm_register",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_gcm_send",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_gcm_unregister",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_history_operations",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_history_parameters_description",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_message",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_ui_language",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_accept_languages",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_detect_language",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_auth_token",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_profile_user_info",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_accounts",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_redirect_url",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_launch_web_auth_flow",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_remove_cached_auth_token",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_all_cached_auth_tokens",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_query_idle_state",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_idle_detection_interval",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_get_auto_lock_delay",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_composition",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_clear_composition",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_commit_text",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_send_key_events",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_hide_input_view",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_candidate_window_properties",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_candidates",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_cursor_position",
"tags": [],
"reasons": {}
},
{
"tool": "extension_tool_set_menu_items",
"tags": [],
"reasons": {}
}
],
"surfaceDigest": "a9bf23ba4918104ee048b49bb3559333a7021239c0429edbbe81faf139c2bc14",
"stats": {
"tools": 200,
"prompts": 0,
"resources": 0,
"findingsBySeverity": {
"critical": 1,
"high": 4,
"medium": 6,
"low": 6,
"info": 0
}
}
}