扫描报告
15 /100
chrome-use
Control local Chrome browser via chrome.debugger API using a Chrome extension for web scraping and automation
Chrome browser automation skill that uses legitimate Chrome debugger API with local WebSocket communication and no external data exfiltration.
可以安装
Safe to use. The skill performs expected browser automation with declared capabilities. No malicious behavior detected.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Chrome extension has broad host permissions | extension/manifest.json:9 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | WRITE | WRITE | ✓ 一致 | src/chrome-bridge.js:43 - spawns Chrome with --user-data-dir and --load-extensio… |
| 命令执行 | WRITE | WRITE | ✓ 一致 | src/chrome-bridge.js:64 - spawn(chromePath, args), line 129 execSync(pgrep/taskl… |
| 网络访问 | READ | READ | ✓ 一致 | WebSocket client in extension/background.js connects to localhost:9224 |
| 浏览器 | WRITE | WRITE | ✓ 一致 | chrome.debugger API used for navigation, click, fill, evaluate |
1 项发现
中危 外部 URL 外部 URL
https://www.google.com extension/README.md:53 目录结构
11 文件 · 50.3 KB · 2035 行 JavaScript 5f · 1426L
Markdown 3f · 396L
HTML 1f · 169L
JSON 2f · 44L
├─
▾
extension
│ ├─
background.js
JavaScript
│ ├─
manifest.json
JSON
│ ├─
popup.html
HTML
│ ├─
popup.js
JavaScript
│ └─
README.md
Markdown
├─
▾
references
│ └─
cdp-commands.md
Markdown
├─
▾
src
│ ├─
chrome-bridge.js
JavaScript
│ └─
websocket-server.js
JavaScript
├─
index.js
JavaScript
├─
package.json
JSON
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
ws | ^8.16.0 | npm | 否 | Standard WebSocket library, version reasonably pinned |
安全亮点
✓ Uses official Chrome debugger API (chrome.debugger) - a legitimate, documented API
✓ All WebSocket communication is local (localhost:9224) - no external data transmission
✓ Only dependency is 'ws' (WebSocket library) version 8.16.0 - no malicious dependencies
✓ No credential harvesting, no environment variable scanning for secrets
✓ No base64-encoded or obfuscated code
✓ No external IP connections or C2 communication
✓ All functionality is clearly documented in SKILL.md
✓ Extension uses service worker (Manifest V3) with proper security model
✓ Code is well-structured and readable with no suspicious patterns