Firecrawl Local Search

Security checks across malware telemetry and agentic risk

Overview

This is a straightforward Firecrawl helper that sends user-chosen URLs to a disclosed local-network HTTP service, with no hidden persistence or credential access found.

Install only if 192.168.1.2:3002 is a Firecrawl service you control or trust. Avoid submitting sensitive internal URLs, tokens in query strings, or private content unless that service and network are appropriate for it, and be aware that the documented map/search scripts are missing from this package.

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 (4)

Lp3

Medium
Category
MCP Least Privilege
Confidence
91% confidence
Finding
The skill clearly performs network operations against a local HTTP API, yet no permissions are declared to reflect that capability. This creates a transparency and governance gap: users or hosting systems may not realize the skill can transmit data over the network, including target URLs and potentially scraped content.

Missing User Warnings

Medium
Confidence
88% confidence
Finding
The documentation instructs users to send website URLs and retrieved content to a local HTTP service without any privacy, retention, or data-handling warning. Because the service uses plain HTTP on a LAN address, sensitive browsing targets or scraped data could be exposed to local network interception, misrouting, or unintended collection.

Missing User Warnings

Low
Confidence
88% confidence
Finding
The script takes a user-supplied URL and forwards it directly to a local Firecrawl service with no validation, allowlist, or user-facing warning that a network request will be made on the user's behalf. In this context, that can enable SSRF-by-proxy or access to internal-only resources reachable from the local service, especially because the backend is on a private LAN address and may have broader network access than the caller.

External Transmission

Medium
Category
Data Exfiltration
Content
### 1. 网页抓取 (Scrape)

```bash
curl -X POST "http://192.168.1.2:3002/v1/scrape" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com", "formats": ["markdown"]}'
```
Confidence
90% confidence
Finding
curl -X POST "http://192.168.1.2:3002/v1/scrape" \ -H "Content-Type: application/json" \ -d '{"url": "https://example.com", "formats": ["markdown"]}' ``` ### 2. 网站地图 (Map) ```bash curl -X POST "

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal