佛历查询 - 即刻数据

Security checks across malware telemetry and agentic risk

Overview

This is a small Buddhist-calendar lookup skill that uses a disclosed third-party API key and network call, with some scope and credential-handling cautions but no evidence of hidden or malicious behavior.

Install only if you are comfortable sending queried dates and a Jike AppKey to jikeapi.cn. Do not set JIKE_API_BASE_URL unless you intentionally trust the alternate endpoint, and avoid placing unrelated secrets in the script directory .env file. The publisher should narrow the trigger description and ideally enforce the official HTTPS API host.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Trigger AbuseOverly Broad Trigger, Shadow Command Trigger, Keyword Baiting Trigger
  • 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
Findings (3)

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

Critical
Category
Data Flow
Content
"""
    url = f"{API_BASE_URL}{API_PATH}?{urllib.parse.urlencode({'date': date_value, '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
91% confidence
Finding
with urllib.request.urlopen(url, timeout=15) as response:

Vague Triggers

Medium
Confidence
83% confidence
Finding
The description says the skill is suitable not only for date queries but also for broad 'data query' and even 'market query' scenarios, which are unrelated to Buddhist calendar lookup. Overly broad invocation criteria can cause the agent to trigger this skill in inappropriate contexts, unnecessarily sending user-supplied data to an external API and producing irrelevant or confusing results.

External Transmission

Medium
Category
Data Exfiltration
Content
直接调用 API:

```text
GET https://api.jikeapi.cn/v1/calendar/foto/detail?appkey=YOUR_APPKEY
```

## AI 使用步骤
Confidence
90% confidence
Finding
https://api.jikeapi.cn/

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal