Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单

Security checks across malware telemetry and agentic risk

Overview

This skill appears to do what it says: it uses a JisuAPI key to fetch public hot-search lists from Weibo, Baidu, or Douyin, with no evidence of hidden persistence or unrelated data access.

Before installing, set only a JISU_API_KEY you are comfortable using for JisuAPI quota, and run the skill in a trusted Python environment with dependencies you control.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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.

#
ASI03: Identity and Privilege Abuse
Low
What this means

The skill can use your JisuAPI account quota whenever it performs a hot-search request.

Why it was flagged

The script reads a provider API key from the environment and sends it to JisuAPI for each query. This is disclosed and purpose-aligned, but it is credentialed account access.

Skill content
appkey = os.getenv("JISU_API_KEY") ... params = {"appkey": appkey}
Recommendation

Use a dedicated JisuAPI key where possible, monitor quota usage, and rotate the key if it is shared or exposed.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

If the dependency is missing or sourced unsafely, setup may fail or depend on an unreviewed package installation.

Why it was flagged

The code depends on the external Python requests package while the supplied artifacts provide no package install spec. This is not hidden execution, but users should rely on a trusted existing Python environment.

Skill content
import requests
Recommendation

Run the skill in a trusted Python environment and avoid installing dependencies from untrusted sources.