Fastest Browser Use

Security checks across malware telemetry and agentic risk

Overview

This browser automation skill explicitly promotes bypassing bot detection and reusing saved login sessions/cookies, which is unsafe for users and third-party sites.

Do not install this skill unless you fully trust it and will restrict it to authorized browser automation. Avoid its bot-detection bypass and cookie/session reuse workflows, and never use it on logged-in accounts or third-party sites without explicit permission.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI02: Tool Misuse and Exploitation
Critical
What this means

Using this skill as documented could cause the agent to bypass website protections, violate site rules, trigger account blocks, or create legal and operational risk.

Why it was flagged

The skill explicitly instructs agents to evade bot-detection controls and scrape protected sites, which is not a normal safety-bounded browser automation workflow.

Skill content
### 1. Bypass "Bot Detection" via Human Emulation
Simulate mouse jitter and random delays to scrape protected sites.
Recommendation

Do not use this for bypassing bot detection or scraping protected sites. Restrict use to authorized sites and require explicit user approval for navigation, login, scraping, and interaction actions.

#
ASI03: Identity and Privilege Abuse
High
What this means

A saved session file may allow continued access to a logged-in account. If mishandled, copied, or reused by an agent, it could expose private account data or perform actions as the user.

Why it was flagged

Saved browser sessions and cookies can act like credentials. The skill frames this as stealing a session and provides commands to persist and replay authenticated access.

Skill content
### 3. Login & Cookie Heist
Log in manually once, then steal the session for headless automation.
...
fast-browser-use login --url "https://github.com/login" --save-session ./auth.json
...
fast-browser-use navigate --url "https://github.com/dashboard" --load-session ./auth.json
Recommendation

Avoid saving authenticated sessions unless absolutely necessary. Store session files securely, delete them after use, and require explicit approval before loading or reusing any authenticated session.

#
ASI09: Human-Agent Trust Exploitation
High
What this means

The wording may encourage users or agents to treat large-scale harvesting of public and account-based feeds as safe, even where it may be prohibited or harmful.

Why it was flagged

The documentation markets broad harvesting of third-party feeds without any authorization, rate-limit, robots.txt, or terms-of-service guidance.

Skill content
Works on any infinite scroll page: Reddit, Twitter, LinkedIn feeds, search results, etc.
Recommendation

Add clear limits: only scrape where authorized, respect robots.txt and site terms, rate-limit requests, and avoid account-gated or personal data sources unless explicitly permitted.

#
ASI05: Unexpected Code Execution
Medium
What this means

Dynamic execution increases the importance of trusting the bundled code and avoiding use on highly sensitive pages without review.

Why it was flagged

The scan shows dynamic JavaScript function construction. This may be part of expected browser-page conversion logic, but it is still sensitive because it executes generated code.

Skill content
suspicious.dynamic_code_execution (critical) at src/tools/convert_to_markdown.js:22: Dynamic code execution detected. Evidence: var loadReadability = new Function(
Recommendation

Review `src/tools/convert_to_markdown.js` and ensure `new Function` only loads trusted bundled code, not page-controlled or user-controlled strings.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Users may not realize they need to install and trust an external binary/package before use.

Why it was flagged

The skill declares external install methods and required Chrome configuration even though the registry section says there is no install spec and no required environment.

Skill content
install:
  - kind: brew
    formula: rknoche6/tap/fast-browser-use
  - kind: cargo
    package: fast-browser-use
config:
  requiredEnv:
    - CHROME_PATH
Recommendation

Verify the GitHub repository, package name, and brew tap before installing. Registry metadata should be updated to match the declared install and environment requirements.

#
ASI07: Insecure Inter-Agent Communication
Medium
What this means

Any connected agent or MCP client may be able to drive the browser, read page content, and interact with authenticated sessions depending on how it is configured.

Why it was flagged

The package includes an MCP server that can expose browser automation capabilities to an agent or client.

Skill content
description = "A lightweight Rust library for browser automation via Chrome DevTools Protocol (CDP), featuring a built-in Model Context Protocol (MCP) server for AI-driven browser automation"
Recommendation

Only expose the MCP server to trusted local clients, avoid network exposure unless authenticated and isolated, and do not connect it to sensitive logged-in browser sessions without explicit approval.