Trust Assessment
confcli received a trust score of 10/100, placing it in the Untrusted category. This skill has significant security findings that require attention before use in production.
SkillShield's automated analysis identified 3 findings: 3 critical, 0 high, 0 medium, and 0 low severity. Key findings include Arbitrary command execution, Remote code execution: curl/wget pipe to shell, Unsafe `curl | sh` installation method.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. All layers scored 70 or above, reflecting consistent security practices.
Last analyzed on February 13, 2026 (commit 13146e6a). SkillShield performs automated 4-layer security analysis on AI skills and MCP servers.
Layer Breakdown
Behavioral Risk Signals
Security Findings3
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| CRITICAL | Arbitrary command execution Remote code download piped to interpreter Review all shell execution calls. Ensure commands are static (not built from user input), use absolute paths, and are strictly necessary. Prefer library APIs over shell commands. | Manifest | skills/hochej/confluence-cli/SKILL.md:17 | |
| CRITICAL | Remote code execution: curl/wget pipe to shell Detected a pattern that downloads and immediately executes remote code. This is a primary malware delivery vector. Never pipe curl/wget output directly to a shell interpreter. | Static | skills/hochej/confluence-cli/SKILL.md:17 | |
| CRITICAL | Unsafe `curl | sh` installation method The skill's installation instructions recommend piping a script directly from a remote URL (`https://raw.githubusercontent.com/hochej/confcli/main/install.sh`) into a shell (`sh`). This practice is highly insecure as it executes arbitrary code from an unverified source with the user's permissions. A compromise of the GitHub repository or a man-in-the-middle attack could lead to the execution of malicious code, resulting in command injection, data exfiltration, or system compromise. The script is also not version-pinned by default, increasing the risk of unexpected changes. Replace the `curl | sh` installation method with a more secure alternative. Recommended approaches include: 1. Distributing the tool via a trusted package manager (e.g., Homebrew, apt, yum). 2. Providing pre-compiled, signed binaries with checksums for manual verification. 3. Requiring users to manually download and review the `install.sh` script before executing it. 4. If `curl | sh` must be used, strongly recommend pinning to a specific, immutable version/commit hash of the script and providing a checksum for verification. | LLM | SKILL.md:16 |
Scan History
Embed Code
[](https://skillshield.io/report/ac46847a6d04c2d7)
Powered by SkillShield