Cainiao

Security checks across malware telemetry and agentic risk

Overview

The skill is mostly scoped to Cainiao logistics, but its code appears to generate realistic-looking shipment tracking results locally rather than verifying them with Cainiao.

Use caution before relying on this for real package tracking. The visible code appears to generate sample-looking shipment events, so verify important shipments through Cainiao or the carrier directly. If you run the local code, be aware it may store tracking and address-related data under ~/.openclaw/data/cainiao/ and use the privacy clear/export controls when needed.

VirusTotal

No VirusTotal findings

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.

#
ASI09: Human-Agent Trust Exploitation
Medium
What this means

A user could rely on inaccurate shipment status, location, or delivery-date information as if it came from Cainiao.

Why it was flagged

The visible tracking path constructs realistic-looking shipment events from hard-coded locations and current timestamps rather than showing a live Cainiao lookup. This conflicts with the advertised tracking use case and could make simulated data look authoritative.

Skill content
result = TrackingResult(... status="in_transit", events=[TrackingEvent(time=datetime.now().strftime(...), description="快件已到达【北京顺义集散中心】"), ...], sender="上海市", receiver="北京市")
Recommendation

Clearly label generated tracking data as simulated or estimated, or integrate a real Cainiao data source before presenting exact shipment events.

#
ASI06: Memory and Context Poisoning
Low
What this means

Tracking numbers, subscription records, and possibly address details may remain on the local machine until cleared.

Why it was flagged

The skill discloses local persistence of logistics records and possibly address data. This is purpose-aligned, but it means personal shipment information may be retained across sessions.

Skill content
stores query history; stores shipment-subscription records; may store saved address records ... under `~/.openclaw/data/cainiao/`
Recommendation

Use the documented privacy clear/export controls when needed, and avoid saving address details unless necessary.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Manual installation could pull newer dependency versions than the author tested.

Why it was flagged

If the local Python code is run, it depends on third-party packages specified with lower bounds rather than pinned versions. There is no automatic install spec shown, so this is a manual-run supply-chain consideration rather than evidence of unsafe behavior.

Skill content
aiohttp>=3.9.0
cryptography>=42.0.0
qrcode>=7.4.0
pillow>=10.2.0
Recommendation

Run the code in an isolated environment and pin or verify dependency versions if using the local runtime.