双色球选号系统 v2

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: lottery-ssq Version: 2.0.0 The lottery-ssq skill bundle is a legitimate tool for analyzing and generating Chinese Double Color Ball (SSQ) lottery numbers based on historical data. The scripts perform standard data fetching from a known lottery data provider (500.com), implement statistical selection logic, and provide backtesting capabilities without any evidence of data exfiltration, malicious execution, or prompt injection.

Findings (0)

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.

What this means

Installing the skill may pull external Python packages into the user's environment.

Why it was flagged

The skill declares installation of third-party Python packages without version pinning; this is disclosed and plausibly related to updating historical data, but it introduces normal package-supply-chain exposure.

Skill content
"python_packages": ["requests", "beautifulsoup4"] ... "command": ["pip3", "install", "-q", "requests", "beautifulsoup4"]
Recommendation

Install in a virtual environment where possible, pin or review dependency versions if reproducibility matters, and confirm the package install is acceptable before use.

What this means

Running the skill executes local Python code that can read the included data/config files and write generated result files.

Why it was flagged

The skill's normal workflow runs bundled Python scripts. This is disclosed and central to the skill's purpose, but it means code executes with the user's local permissions.

Skill content
python3 scripts/update_ssq_history.py ... python3 scripts/generate_ssq.py ... python3 scripts/backtest_ssq.py
Recommendation

Run it from the intended skill directory, review configuration before use, and avoid granting unnecessary elevated permissions.