Browserbase

PassAudited by VirusTotal on May 10, 2026.

Overview

Type: OpenClaw Skill Name: browse Version: 2.0.2 The skill bundle provides a legitimate interface for browser automation using the '@browserbasehq/browse-cli'. It includes comprehensive documentation (SKILL.md, REFERENCE.md) for navigating, interacting with, and extracting data from web pages via local Chrome or the Browserbase remote service. While it possesses high-privilege capabilities like JavaScript evaluation and network capture, these are standard for browser automation and are presented transparently without evidence of malicious intent or prompt-injection attacks.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The agent could help bypass site protections and scrape sites that are trying to block automation, creating legal, account, or abuse risk.

Why it was flagged

This is a concrete workflow for evading a site's anti-bot protections rather than ordinary authorized browsing.

Skill content
"Scrape pricing from competitor.com" ... "Cloudflare bot detection. Browserbase remote mode can bypass this with anti-bot stealth and residential proxies."
Recommendation

Use browser automation only on sites you own or are explicitly authorized to access; require explicit user approval and an authorization check before any stealth, CAPTCHA-solving, proxy, or protected-site scraping workflow.

What this means

If the browser logs into accounts, cookies or authenticated sessions may persist and be reused in later automation, including in cloud-hosted remote sessions.

Why it was flagged

Remote mode uses Browserbase account credentials and can preserve authenticated browser state, but the artifacts do not clearly define credential scope, cookie retention, or cleanup boundaries.

Skill content
Optional: set BROWSERBASE_API_KEY and BROWSERBASE_PROJECT_ID for remote Browserbase sessions ... Provides: anti-bot stealth, automatic CAPTCHA solving, residential proxies, session persistence ... cookies/auth persist across sessions
Recommendation

Use dedicated Browserbase projects and accounts, avoid logging into sensitive accounts unless necessary, clear sessions after use, and declare credential/session handling clearly in metadata and user prompts.

What this means

Installing the skill means trusting the external Browserbase CLI package and its updates.

Why it was flagged

The skill may install and run an external global npm package; this is expected for the CLI-based purpose, but the package code is not included in the submitted artifacts.

Skill content
which browse || npm install -g @browserbasehq/browse-cli
Recommendation

Install from the official package source, prefer pinned versions where possible, and review the package provenance before use in sensitive environments.

What this means

The agent could run page-context JavaScript that reads or changes page state on sites you are logged into.

Why it was flagged

The CLI exposes JavaScript evaluation inside the visited page. That can be useful for browser automation, but it is a powerful capability if applied to authenticated or sensitive pages.

Skill content
`eval <expression>`

Evaluate JavaScript in the page context.
Recommendation

Only allow JavaScript evaluation for user-approved, clearly scoped tasks, and avoid using it on sensitive authenticated pages unless necessary.

What this means

Captured network logs may contain private content, identifiers, or authentication-related data from browsing sessions.

Why it was flagged

Network capture is explicit and user-enabled, but it can store request/response data locally, potentially including sensitive page data.

Skill content
Capture network requests to the filesystem for inspection ... requests and responses are saved as JSON files ... `network clear`
Recommendation

Use network capture only when needed, avoid it on sensitive logged-in sessions, and run `browse network clear` after inspection.