Back to skill

Security audit

Zeplin

Security checks for vulnerabilities and agentic risk

Overview

This appears to be a coherent OOMOL connector skill, with the main caveat that its setup docs include a risky remote installer command.

Install only if you trust OOMOL and intend to use the connected service through its `oo` CLI. Do not let an agent run the `curl | bash` installer automatically; prefer the official install guide, inspect or verify the installer, and approve any account-changing action only after reviewing the target and payload.

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

External Script Fetching

High
Category
Supply Chain
Content
- **`oo: command not found`** — install the oo CLI (other platforms: <https://cli.oomol.com/install-guide.md>):

  ```bash
  curl -fsSL https://cli.oomol.com/install.sh | bash    # macOS / Linux
  ```

  ```powershell
Confidence
95% confidence
Finding
The skill instructs users to install the CLI by piping a remotely fetched script directly into a shell (`curl ... | bash`), which executes unverified code from the network immediately. If the install endpoint, transport path, or hosting account is compromised, this becomes a straightforward remote code execution path on the user's machine.

Static analysis

No suspicious patterns detected.