Back to skill

Security audit

生肖查询 - 即刻数据

Security checks across malware telemetry and agentic risk

Overview

This appears to be a straightforward Chinese-zodiac lookup skill that calls Jike API with a user-provided API key, with credential-handling caveats but no evidence of hidden or destructive behavior.

Install only if you trust jikeapi.cn and are comfortable using a Jike API key for this lookup. Prefer the documented JIKE_CHINESE_ZODIAC_QUERY_KEY environment variable, avoid passing real keys with --key in shared command transcripts, and do not set JIKE_API_BASE_URL unless you intentionally want to change the API endpoint.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Taint TrackingDirect Taint Flow, Variable-Mediated Taint Flow, Credential Exfiltration Chain
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
Findings (2)

Tainted flow: 'url' from os.environ.get (line 139, credential/environment) → urllib.request.urlopen (network output)

Critical
Category
Data Flow
Content
"""
    url = f"{API_BASE_URL}{API_PATH}?{urllib.parse.urlencode({**params, 'appkey': appkey})}"
    try:
        with urllib.request.urlopen(url, timeout=15) as response:
            return json.loads(response.read().decode("utf-8"))
    except urllib.error.HTTPError as exc:
        return {"code": exc.code, "message": f"接口请求失败: HTTP {exc.code}", "data": ""}
Confidence
93% confidence
Finding
with urllib.request.urlopen(url, timeout=15) as response:

Missing User Warnings

Medium
Confidence
96% confidence
Finding
The documentation tells users to place the app key directly in the query string, which is commonly logged by shells, proxies, browser history, observability tools, and upstream servers. Exposing API credentials in URLs increases the chance of accidental credential leakage and unauthorized reuse of the key.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Static analysis

No suspicious patterns detected.