Back to skill

Security audit

Company Info - 工商信息查询

Security checks across malware telemetry and agentic risk

Overview

This skill is a straightforward TianAPI company-lookup helper, with some credential-handling practices users should treat carefully.

Install only if you are comfortable sending company names or credit codes to TianAPI. Configure the key with TIANAPI_COMPANY_KEY where possible, avoid passing the key on the command line, and do not commit any .env file containing the API key.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • MCP Least PrivilegeUnderdeclared Capability, Wildcard Permission, Missing Permission Declaration
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
Findings (4)

Lp3

Medium
Category
MCP Least Privilege
Confidence
89% confidence
Finding
The skill documentation indicates the use of environment variables, local files, and outbound network access, but the skill does not declare corresponding permissions. This creates a transparency and policy-enforcement gap: users and the platform may not realize the skill reads secrets and sends user-supplied company identifiers to an external service.

Missing User Warnings

Low
Confidence
81% confidence
Finding
The skill says it queries company registration information but does not clearly warn that the company name or credit code provided by the user is transmitted to TianAPI, a third-party service. This is a privacy/transparency issue because users may supply sensitive or proprietary target names without realizing they are disclosed externally.

Credential Access

High
Category
Privilege Escalation
Content
# 方式一:环境变量(推荐,一次配置永久生效)
    export TIANAPI_COMPANY_KEY=你的APIKey

    # 方式二:.env 文件(在脚本目录创建)
    echo "TIANAPI_COMPANY_KEY=你的APIKey" > scripts/.env

    # 方式三:每次命令行传入
Confidence
92% confidence
Finding
.env

Credential Access

High
Category
Privilege Escalation
Content
export TIANAPI_COMPANY_KEY=你的APIKey

    # 方式二:.env 文件(在脚本目录创建)
    echo "TIANAPI_COMPANY_KEY=你的APIKey" > scripts/.env

    # 方式三:每次命令行传入
    python3 scripts/fetch_company-info.py --key 你的APIKey --com 腾讯
Confidence
95% confidence
Finding
.env

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal

Static analysis

No suspicious patterns detected.