Web Content Fetcher

Security checks across malware telemetry and agentic risk

Overview

This skill appears to do what it says—fetch webpages through disclosed third-party services—but users should avoid sending private or tokenized URLs.

Install only if you are comfortable with webpage URLs being sent to r.jina.ai, markdown.new, or defuddle.md. Do not use it for private dashboards, signed links, intranet URLs, or URLs containing access tokens. Ensure curl is available if you plan to use the included scripts.

VirusTotal

VirusTotal findings are pending for this skill version.

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.

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

The external services can see the URL being fetched and may process the fetched page content.

Why it was flagged

The skill explicitly sends the requested URL to external content-conversion services.

Skill content
`https://r.jina.ai/{url}` ... `https://markdown.new/{url}` ... `https://defuddle.md/{url}`
Recommendation

Use this only for URLs you are comfortable sharing with those services, and avoid private links, signed URLs, or URLs containing secrets.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

The skill may fail on systems without curl, or users may not realize it relies on a local command-line tool.

Why it was flagged

The included Python helper depends on the local curl binary, while the registry requirements declare no required binaries.

Skill content
`subprocess.run(["curl", "-s", service_url], capture_output=True, text=True, timeout=30)`
Recommendation

Declare curl as a required binary or document the dependency clearly before installation.