pinata-erc-8004

clawhub:pinata-erc-8004

View source
C
62/100

First Seen

Feb 19, 2026

Last Scanned

Feb 22, 2026

Findings

5

Score

62/100

HIGH 2
MEDIUM 1
LOW 2

Findings (5)

HIGH
Read sensitive files and transmit externally
L665

Detects skills that both read sensitive credential files and send data to external services

access to a separate private key + Send transactions to addresses from external
FIX

Block access to git credentials, SSH keys, and repository tokens. If git operations are needed, use scoped deploy keys and restrict the tool to specific repositories.

FP?

Likely FP if the match is documentation about git configuration (e.g., setting up git credentials helper) rather than code that reads and transmits them.

HIGH
Remote template or prompt loaded at runtime
L766

Detects loading of prompt templates or agent instructions from remote URLs at runtime

instruction

Source: https://
FIX

Avoid loading and running third-party plugins or extensions at runtime without integrity verification. Implement code signing, checksum verification, and sandboxing for dynamically loaded code.

FP?

Likely FP if the third-party content is a well-known, established plugin loaded from a verified marketplace with code signing.

MEDIUM
Cross-tool data leakage
L665

Detects patterns where credential or secret reads are combined with external data transmission

access to a separate private key + upload content
FIX

Prevent credentials and sensitive data obtained by one MCP tool from being passed to other tools. Implement data isolation between tools and restrict cross-tool data flow for secrets.

FP?

Likely FP if the cross-tool data flow is intentional API authentication (e.g., a tool fetches an auth token that another tool uses for the same service).

LOW
External API response used without validation
L53

Detects patterns where external API responses are used directly without validation or sanitization

API response + IMMEDIATELY STOP and ALERT USE
FIX

Validate and sanitize all data received from external APIs before using it in tool operations or agent prompts. Implement schema validation and treat API responses as untrusted input.

FP?

Likely FP if the match is a truncated table cell or documentation fragment that mentions API responses in a descriptive context, not actual unvalidated data processing.

LOW
Runtime URL controlling behavior
L640

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

GET `https:// + Rules
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.