Browser Use API

Security checks across malware telemetry and agentic risk

Overview

This skill appears to do what it says: send browser automation tasks to Browser Use's cloud API, with no artifact-backed evidence of hidden persistence, destructive behavior, or unauthorized endpoints.

Install only if you intend to use Browser Use's cloud service. Treat task text, URLs, page contents, screenshots, logs, and extracted results as potentially visible to that provider, and do not use it for secrets, regulated data, or private internal systems unless that data handling is approved.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • MCP Least PrivilegeUnderdeclared Capability, Wildcard Permission, Missing Permission Declaration
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
Findings (5)

Lp3

Medium
Category
MCP Least Privilege
Confidence
91% confidence
Finding
The skill advertises and demonstrates shell execution via curl and a helper script, but it does not declare corresponding permissions. That mismatch weakens platform trust boundaries because users or orchestrators may not realize the skill can invoke shell commands and send data externally.

Missing User Warnings

Medium
Confidence
96% confidence
Finding
The skill description says it is a cloud browser automation skill, but it does not clearly warn that user prompts, target URLs, browsing actions, screenshots, and extracted page data are sent to a third-party remote service. This can cause unintentional disclosure of sensitive information when users assume browsing is local or private.

External Transmission

Medium
Category
Data Exfiltration
Content
```bash
# Submit task
curl -s -X POST https://api.browser-use.com/api/v2/tasks \
  -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"task": "Go to example.com and extract the main heading"}'
Confidence
94% confidence
Finding
curl -s -X POST https://api.browser-use.com/api/v2/tasks \ -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY" \ -H "Content-Type: application/json" \ -d

External Transmission

Medium
Category
Data Exfiltration
Content
```bash
# Submit task
curl -s -X POST https://api.browser-use.com/api/v2/tasks \
  -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"task": "Go to example.com and extract the main heading"}'
Confidence
94% confidence
Finding
https://api.browser-use.com/

External Transmission

Medium
Category
Data Exfiltration
Content
-d '{"task": "Go to example.com and extract the main heading"}'

# Poll for result (replace TASK_ID)
curl -s "https://api.browser-use.com/api/v2/tasks/TASK_ID" \
  -H "X-Browser-Use-API-Key: $BROWSER_USE_API_KEY"
```
Confidence
88% confidence
Finding
https://api.browser-use.com/

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal