Vehicle License Plate Number Restriction - 车辆尾号限行

Security checks across malware telemetry and agentic risk

Overview

This skill appears to do what it advertises: use a JisuAPI key to look up vehicle license-plate restriction rules.

Before installing, make sure you are comfortable sending vehicle-restriction queries and your JisuAPI key to api.jisuapi.com. Use a limited API key if possible and ensure the Python requests dependency comes from a trusted source.

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

Your JisuAPI key and queried city/date are sent to JisuAPI, which may affect your API quota or account usage.

Why it was flagged

The skill reads a JisuAPI credential from the environment and sends it as an API parameter to the vehicle restriction service. This is disclosed and expected for the integration, but it is still credential use.

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

Use a dedicated JisuAPI key with only the needed service access, monitor quota usage, and avoid sharing the key in chat or logs.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

The skill may fail unless requests is already installed, or users may install it separately without a pinned version.

Why it was flagged

The code depends on the external Python package requests, while the provided install information declares no install spec and lists only python3 as a required binary.

Skill content
import requests
Recommendation

Install dependencies from trusted package sources and prefer a declared, pinned dependency if packaging this skill for repeat use.