First Seen
Feb 18, 2026
Last Scanned
Feb 22, 2026
Findings
6
Score
69/100
Findings (6)
Detects patterns indicating sensitive data being sent to external services
send private keys to Restrict file reading to the project directory and block outbound network calls that include file contents. Implement file path validation to prevent directory traversal.
Likely FP if the tool legitimately reads project files and displays them to the user locally, without sending data to external services.
Detects screenshot/screen capture tools combined with upload or transmission
screenshot + send private keys to external 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.
Likely FP if the skill reads config files to configure itself locally without transmitting the contents externally.
Detects skills that both read sensitive credential files and send data to external services
cat .env + send private keys to external 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.
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.
Detects patterns where credential or secret reads are combined with external data transmission
cat .env + send private keys to external 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.
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).
Detects accessing git history, diffs, or repo data combined with external transmission
git diff + send private keys to external Prevent the tool from accessing and transmitting database contents. If database access is needed, restrict queries to specific tables and block bulk data export.
Likely FP if the skill is a database management tool where querying and displaying data to the user is the documented core feature.
Detects system-level package installation via brew, apt, yum, or dnf
brew install g 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.
Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.