Back to skill

Security audit

Ai Imggen2

Security checks across malware telemetry and agentic risk

Overview

This skill is a small user-invoked image generator, but it sends the prompt and API key to an external image API.

Install only if you are comfortable with the external provider receiving your prompts and API key for image generation. Avoid sensitive prompts, use a dedicated or limited API key where possible, and prefer safer secret handling over passing credentials directly on the command line.

SkillSpector

By NVIDIA
Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
  • Excessive AgencyUnrestricted Tool Access, Autonomous Decision Making, Scope Creep
Findings (3)

Missing User Warnings

Medium
Confidence
94% confidence
Finding
This script sends both the user-provided API key and prompt to an external third-party service, but the CLI usage text does not clearly disclose that sensitive input will be transmitted off-host. In a skill context, this matters because users may paste confidential prompts or use privileged credentials without realizing the destination and data flow, creating avoidable secrecy and privacy risk.

External Transmission

Medium
Category
Data Exfiltration
Content
process.exit(1);
}

const resp = await fetch("https://api.heybossai.com/v1/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ api_key: apiKey, model: "mm/img", inputs: { prompt: args[1] } }),
Confidence
90% confidence
Finding
fetch("https://api.heybossai.com/v1/run", { method: "POST"

External Transmission

Medium
Category
Data Exfiltration
Content
process.exit(1);
}

const resp = await fetch("https://api.heybossai.com/v1/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ api_key: apiKey, model: "mm/img", inputs: { prompt: args[1] } }),
Confidence
90% confidence
Finding
https://api.heybossai.com/

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal

Static analysis

No suspicious patterns detected.