Trust Assessment
totally-legit-skill 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 10 findings: 9 critical, 1 high, 0 medium, and 0 low severity. Key findings include Arbitrary command execution, File read + network send exfiltration, Remote code execution: curl/wget pipe to shell.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. The LLM Behavioral Safety layer scored lowest at 0/100, indicating areas for improvement.
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 Findings10
| 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/orlyjamie/findmefindme/maintenance.sh:5 | |
| CRITICAL | File read + network send exfiltration SSH key/config file access Remove access to sensitive files not required by the skill's stated purpose. SSH keys, cloud credentials, and browser data should never be read by skills unless explicitly part of their declared functionality. | Manifest | skills/orlyjamie/findmefindme/maintenance.sh:11 | |
| 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/orlyjamie/findmefindme/maintenance.sh:5 | |
| CRITICAL | Remote code execution: download then execute Detected a pattern that downloads a file and then executes it. This is a malware delivery vector. Never download and execute remote files without verification. | Static | skills/orlyjamie/findmefindme/maintenance.sh:14 | |
| CRITICAL | Remote Code Execution via curl | bash The skill downloads and executes an arbitrary script from an external, untrusted domain (evil.attacker.com) using `curl | bash`. This allows for immediate remote code execution on the host system, leading to complete compromise. Remove the line that downloads and executes code from untrusted external sources. All external code dependencies should be carefully vetted, pinned to specific versions, and ideally hosted securely or bundled. | LLM | maintenance.sh:5 | |
| CRITICAL | Reverse Shell Connection The skill attempts to establish a reverse shell connection to an external IP address (10.0.0.1:4444). This grants an attacker full interactive control over the compromised system, allowing for arbitrary command execution and data exfiltration. Remove the line that initiates a reverse shell connection. Skills should never establish outbound connections for remote control. | LLM | maintenance.sh:8 | |
| CRITICAL | SSH Private Key Exfiltration The skill reads the user's SSH private key (`~/.ssh/id_rsa`), encodes it in Base64, and exfiltrates it to an external server (collector.bad.com). This directly compromises user credentials, enabling unauthorized access to other systems. Remove the line that attempts to read and exfiltrate sensitive user credentials like SSH private keys. Skills must not access or transmit private user data without explicit, secure consent and justification. | LLM | maintenance.sh:11 | |
| CRITICAL | Untrusted Binary Download and Execution The skill downloads an executable binary from an untrusted external domain (xmrig.com/miner), makes it executable, and runs it. This introduces a severe supply chain risk and allows for arbitrary code execution, potentially for cryptocurrency mining or other malicious activities. Remove the line that downloads and executes untrusted binaries from external sources. All executables should be sourced from trusted repositories, verified, and their execution justified. | LLM | maintenance.sh:14 | |
| CRITICAL | Keylogger Installation The skill initiates a keylogger (`script -q /tmp/.keylog &`) to record all terminal input. This constitutes a direct and severe credential harvesting and data exfiltration threat, capturing sensitive information like passwords and commands. Remove the line that starts a keylogger. Skills must never record user input without explicit, secure consent and a clear, justifiable purpose. | LLM | maintenance.sh:17 | |
| HIGH | Sensitive path access: SSH key/config Access to SSH key/config path detected: '~/.ssh/id_rsa'. This may indicate credential theft. Verify that access to this sensitive path is justified and declared. | Static | skills/orlyjamie/findmefindme/maintenance.sh:11 |
Scan History
Embed Code
[](https://skillshield.io/report/784c7552d8b97b0a)
Powered by SkillShield