企业工商信息查询

PassAudited by VirusTotal on May 8, 2026.

Overview

Type: OpenClaw Skill Name: qxb-gs-basic-info Version: 1.0.1 The skill is a legitimate integration for the Qixinbao (启信宝) enterprise data API. It provides functionality to query business registration details using a user-provided API token. The code in `src/client.ts` and `src/test.ts` is straightforward, lacks obfuscation, and only communicates with the official endpoint (external-api.qixin.com). No evidence of data exfiltration, malicious execution, or prompt injection was found.

Findings (0)

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.

What this means

Installing the skill may allow the agent to run the included Node-based code for this integration.

Why it was flagged

The skill requests local Node execution capability. This is broad, but it matches the Node/TypeScript client implementation and no hidden or destructive command path is shown.

Skill content
`Bash(node:*)`: 允许执行 Node.js/TypeScript 代码
Recommendation

Use the skill only from a trusted install source and keep agent use limited to the documented company-information query workflow.

What this means

The token can consume or access the user's Qixinbao API quota for enterprise information queries.

Why it was flagged

The client reads the Qixinbao API token from the environment and sends it as the API authentication header. This is expected for the stated service and there is no evidence of token logging or unrelated transmission.

Skill content
const DEFAULT_API_TOKEN = process.env.QXBENT_API_TOKEN ... 'x-api-token': apiToken
Recommendation

Use a dedicated, revocable API token with the minimum needed access, and avoid exposing the environment variable in logs, screenshots, or shared shell profiles.

What this means

A future install could receive a newer compatible axios release from npm.

Why it was flagged

The skill depends on an npm package with a semver range. This is normal for a Node API client, but it means installation may fetch dependency code from npm rather than relying only on the reviewed files.

Skill content
"dependencies": { "axios": "^1.6.0" }
Recommendation

Install from a trusted registry and consider using a lockfile or pinned dependency version in controlled environments.