critical
suspicious.env_credential_access
- Location
- scripts/qutedance-quotes.js:27
- Finding
- Environment variable access combined with network send.
AdvisoryAudited by Static analysis on May 10, 2026.
Detected: suspicious.env_credential_access
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.
If you configure an API key, the skill will use it when contacting the Qutedance quote service.
The script can read a Qutedance API key from config or the environment and send it as an authentication header to the configured service. This is purpose-aligned for a protected quote API, but it is still credential handling.
const API_KEY = CONFIG.apiKey || process.env.QUTEDANCE_API_KEY || ''; ... headers['X-API-Key'] = API_KEY;
Use a limited-scope key if available, avoid committing real keys in config.json, and prefer environment-based secret management.