Alicloud Ai Image Zimage Turbo

Security checks across malware telemetry and agentic risk

Overview

This skill is a coherent Alibaba Cloud image-generation helper with expected API-key use, network calls, and local image output.

Install this only if you intend to use Alibaba Cloud DashScope. Use a dedicated API key when possible, avoid sensitive prompts unless third-party processing by Alibaba Cloud is acceptable, keep base_url on official or trusted endpoints, and choose an output path where overwriting an image file would not matter.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Taint TrackingDirect Taint Flow, Variable-Mediated Taint Flow, Credential Exfiltration Chain
  • MCP Least PrivilegeUnderdeclared Capability, Wildcard Permission, Missing Permission Declaration
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
Findings (2)

Tainted flow: 'image_url' from os.getenv (line 162, credential/environment) → urllib.request.urlopen (network output)

Critical
Category
Data Flow
Content
def download_image(image_url: str, output_path: Path) -> None:
    output_path.parent.mkdir(parents=True, exist_ok=True)
    with urllib.request.urlopen(image_url) as response:
        output_path.write_bytes(response.read())
Confidence
94% confidence
Finding
with urllib.request.urlopen(image_url) as response:

Lp3

Medium
Category
MCP Least Privilege
Confidence
87% confidence
Finding
The skill documents and enables use of environment variables, filesystem reads/writes, and outbound network access, but it does not declare any permissions or capability boundaries. This creates a transparency and policy-enforcement gap: a caller or runtime may grant or assume broader access than intended, making it easier to misuse credentials, write arbitrary artifacts, or transmit data externally without explicit review.

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal