mcp

clawhub:mcp

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

7

Score

77/100

HIGH 1
MEDIUM 1
LOW 5

Findings (7)

HIGH
Runtime URL controls agent behavior
L71

Detects skills fetching external URLs to use as runtime instructions

WebFetch to load `https://raw.githubusercontent.com + guidelines
FIX

Pin the downloaded resource to a specific version or commit hash, and verify its integrity with a checksum (SHA-256). Avoid fetching scripts or binaries from arbitrary URLs at runtime.

FP?

Likely FP if the download URL points to a well-known CDN or package registry (e.g., npmjs.com, pypi.org) and is pinned to a specific version.

MEDIUM
Remote SDK or script fetch as agent input
L71

Detects fetching remote documentation or code to load as agent context

WebFetch to load  + https://modelcontextprotocol.io/llms-full.txt
FIX

Pin the SDK or script to a specific version and verify its checksum after download. Prefer installing SDKs via a package manager instead of fetching remote scripts directly.

FP?

Likely FP if the match is documentation showing how to install an official SDK (e.g., Google Cloud SDK, AWS CLI) from its canonical URL.

LOW
Runtime URL controlling behavior
L60

Detects URLs fetched at runtime that control or influence agent behavior without pinning

Fetch to load: `https:// + prompt
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.

LOW
Mutable GitHub raw content reference
L71

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L75

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L304

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L305

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.