clawearn

clawhub:clawearn

View source
C
69/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

6

Score

69/100

HIGH 1
MEDIUM 2
LOW 3

Findings (6)

HIGH
Data transmission pattern
L18

Detects patterns indicating sensitive data being sent to external services

send private keys to
FIX

Restrict file reading to the project directory and block outbound network calls that include file contents. Implement file path validation to prevent directory traversal.

FP?

Likely FP if the tool legitimately reads project files and displays them to the user locally, without sending data to external services.

MEDIUM
Screenshot or screen capture with transmission
L15

Detects screenshot/screen capture tools combined with upload or transmission

screenshot + send private keys to external
FIX

Block the ability to read and transmit contents of configuration files (.env, config.json, settings.yaml). Implement file path validation to prevent access to sensitive config files.

FP?

Likely FP if the skill reads config files to configure itself locally without transmitting the contents externally.

MEDIUM
Read sensitive files and transmit externally
L51

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

cat .env + send private keys to 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.

LOW
Cross-tool data leakage
L51

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

cat .env + send private keys to external
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
Git history or diff access with transmission
L82

Detects accessing git history, diffs, or repo data combined with external transmission

git diff + send private keys to external
FIX

Prevent the tool from accessing and transmitting database contents. If database access is needed, restrict queries to specific tables and block bulk data export.

FP?

Likely FP if the skill is a database management tool where querying and displaying data to the user is the documented core feature.

LOW
System package manager install
L347

Detects system-level package installation via brew, apt, yum, or dnf

brew install g
FIX

Pin system packages to specific versions where the package manager supports it. Document the exact packages required and prefer containerized environments to avoid system-wide changes.

FP?

Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.