Back to skill

Security audit

Clari Copilot

Security checks for vulnerabilities and agentic risk

Overview

This skill is mostly a disclosed Clari Copilot connector, but its first-time setup tells users to run unverified internet installer scripts directly in a shell.

Review the installer path before installing. Prefer installing the oo CLI from a pinned or signed release, inspect downloaded scripts before execution, and avoid running the installer from an elevated shell. Also confirm that routing Clari Copilot requests through OOMOL is acceptable for your organization's call transcripts, summaries, user lists, and media URLs.

Vulnerability Patterns
  • Remote Payload Retrieval and ExecutionFetches external code whose behavior can change after review
  • Skill Instruction HijackingAlters the agent's session goals or safety constraints when the skill loads
  • Agent Memory PoisoningWrites attacker-controlled rules into memory that affect later sessions
  • Embedded Malicious CodeShips malicious scripts inside the skill and executes them locally
  • Unauthorized Access and Privilege EscalationObtains permissions beyond the task's legitimate needs
Findings (1)

T03 · Remote Payload Retrieval and Execution

Error
Location
SKILL.md:59
Finding
Unverified Remote Installer Download and Immediate Shell Execution<![CDATA[ ## Vulnerability Details **File Location**: `SKILL.md`, lines 59–63 **Vulnerability Type**: Remote payload retrieval and execution **Risk Level**: Critical ### Vulnerable Code ```bash curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux ``` ```powershell irm https://cli.oomol.com/install.ps1 | iex # Windows PowerShell ``` ### Technical Analysis The setup instructions download mutable content from an external server and pass the response directly to a command interpreter. The Bash command pipes the HTTP response into `bash`, while the PowerShell command passes it to `Invoke-Expression` through the `iex` alias. Neither command pins an installer version, verifies a cryptographic signature or checksum, nor provides an inspection step before execution. HTTPS protects the connection in transit but does not guarantee that the remote script is immutable or free from compromise. If the OOMOL domain, hosting infrastructure, CDN, DNS resolution, publishing account, or installer delivery process is compromised, an attacker can replace the response with arbitrary commands. Installing the CLI when it is absent may support the Skill's functionality, but immediate streamed execution is not required. A release artifact can instead be downloaded separately, pinned to a specific version, verified, and only then executed. The installation operation can also modify the host beyond the Skill's declared read-only Clari Copilot operations. ### Attack Path 1. The `oo` command is unavailable, causing the user or agent to follow the first-time setup instructions. 2. An attacker compromises or gains control over an element of the remote installer delivery chain. 3. The attacker modifies `install.sh` or `install.ps1` to contain a malicious payload. 4. The documented command retrieves the modified response. 5. The response is immediately interpreted by Bash or PowerShell without integrity verification or review. 6. The payload executes with the ...[truncated 1177 chars]
Remediation
<![CDATA[ ## Remediation Suggestions 1. Remove the direct `curl | bash` and `irm | iex` installation instructions. 2. Pin installation to a specific, reviewed CLI release rather than a mutable installer URL. 3. Download the release artifact to a local file as a separate operation. 4. Publish a SHA-256 checksum or cryptographic signature through an independently protected channel and verify it before execution. 5. Require users to inspect the downloaded script or package before running it. 6. Prefer a trusted operating-system package manager where packages are signed and versions can be pinned. 7. Document all filesystem, environment, and system configuration changes performed by installation. 8. Recommend non-administrative installation and explicitly warn users not to run the installer with elevated privileges unless a documented operation requires them. 9. If an installer script remains necessary, use an immutable versioned URL and fail closed when signature or checksum validation fails. A safer conceptual workflow is: ```bash curl -fSLo oo-install.sh "https://<trusted-host>/<pinned-version>/install.sh" echo "<published-sha256> oo-install.sh" | sha256sum --check - less oo-install.sh bash oo-install.sh ``` The checksum must come from a trusted, authenticated source and must correspond to a pinned release. ]]>
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
93% confidence
Finding
The skill instructs the agent to install software by piping a remote script directly into `bash`, which is a risky pattern because it executes unverified code fetched at runtime. Even though this appears intended as convenience setup guidance, a compromised host, CDN, DNS path, or upstream install script could lead to arbitrary code execution on the user's machine.

Static analysis

No suspicious patterns detected.