Trust Assessment
kubernetes received a trust score of 86/100, placing it in the Mostly Trusted category. This skill has passed most security checks with only minor considerations noted.
SkillShield's automated analysis identified 1 finding: 0 critical, 1 high, 0 medium, and 0 low severity. Key findings include Unquoted variable in kubectl command allows command injection.
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 Findings1
| Severity | Finding | Layer | Location | |
|---|---|---|---|---|
| HIGH | Unquoted variable in kubectl command allows command injection The `NAMESPACE` variable, which can be user-controlled via script arguments, is directly interpolated into `kubectl get networkpolicy -n $NAMESPACE` without proper quoting. This allows an attacker to inject arbitrary shell commands by providing a specially crafted namespace name (e.g., `'; rm -rf /;'`). The same vulnerability exists for the `$ns` variable within the loop that iterates through namespaces, as it is also unquoted when used in `kubectl get networkpolicy -n $ns`. Always quote variables when they are used as arguments in shell commands, especially when they originate from user input. Change `kubectl get networkpolicy -n $NAMESPACE` to `kubectl get networkpolicy -n "$NAMESPACE"` and `kubectl get networkpolicy -n $ns` to `kubectl get networkpolicy -n "$ns"`. | LLM | scripts/security-audit.sh:70 |
Scan History
Embed Code
[](https://skillshield.io/report/9197138e2c5eaaeb)
Powered by SkillShield