Exposed secret literal
- Finding
- File appears to expose a hardcoded API secret or token.
Security checks across static analysis, malware telemetry, and agentic risk
Qingbo Search appears to perform the advertised article-search API integration, but users should notice that it requires Qingbo API credentials and sends search requests to an external endpoint.
Before installing, make sure you trust this Qingbo integration, protect the app_key/app_secret you place in config.json, understand that searches may consume Qingbo account points, and use HTTPS or a trusted network where possible.
VirusTotal findings are pending for this skill version.
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.
The configured Qingbo credentials may allow API use and consume account points, so access to the config file matters.
The skill requires users to place Qingbo API credentials in a local configuration file so it can authenticate API requests.
"app_key": "您的app_key", "app_secret": "您的app_secret"
Use a dedicated, limited Qingbo API key if possible, protect config.json permissions, and avoid committing the file with real secrets.
Search terms and the generated API access token could be observable on the network if the connection is not protected elsewhere.
The skill sends API requests with an access-token header to an external provider endpoint over plain HTTP.
const baseUrl = 'http://databus.gsdata.cn:8888/api/service'; ... headers: { 'access-token': accessToken }Prefer an HTTPS Qingbo endpoint if supported, and avoid sensitive searches or credential use on untrusted networks.
Installing dependencies runs the normal npm supply-chain path for node-fetch and its dependencies.
The README expects a package installation step even though the registry shows no install spec.
cd skills/qingbo_search npm install
Install only from the reviewed package, keep the included lockfile, and verify dependency provenance if operating in a sensitive environment.