Trust Assessment
dirigera-control 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: 2 critical, 5 high, 3 medium, and 0 low severity. Key findings include Arbitrary command execution, Dangerous call: subprocess.run(), Suspicious import: socket.
The analysis covered 4 layers: Manifest Analysis, Static Code Analysis, Dependency Graph, LLM Behavioral Safety. The Manifest Analysis layer scored lowest at 40/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 Python shell execution (os.system, subprocess) 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/falderebet/dirigera-control/scripts/find_dirigera_ip.py:42 | |
| CRITICAL | Arbitrary command execution Python shell execution (os.system, subprocess) 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/falderebet/dirigera-control/scripts/find_dirigera_ip.py:153 | |
| HIGH | Dangerous call: subprocess.run() Call to 'subprocess.run()' detected in function '_arp_ips'. This can execute arbitrary code. Avoid using dangerous functions like exec/eval/os.system. Use safer alternatives. | Static | skills/falderebet/dirigera-control/scripts/find_dirigera_ip.py:42 | |
| HIGH | Dangerous call: subprocess.run() Call to 'subprocess.run()' detected in function 'try_generate_token'. This can execute arbitrary code. Avoid using dangerous functions like exec/eval/os.system. Use safer alternatives. | Static | skills/falderebet/dirigera-control/scripts/find_dirigera_ip.py:153 | |
| HIGH | Insecure HTTPS connection (SSL verification disabled) The `generate_token_wrapper.py` script explicitly disables SSL certificate verification for HTTPS requests to the Dirigera hub by setting `verify=False`. Additionally, it suppresses `InsecureRequestWarning` from `urllib3`. This makes the communication vulnerable to Man-in-the-Middle (MITM) attacks, where an attacker could intercept, read, or modify the token generation process and potentially steal the generated token or other sensitive information. While this might be done to accommodate self-signed certificates on local devices, it significantly degrades the security of the token generation process. 1. Remove `requests.packages.urllib3.disable_warnings(InsecureRequestWarning)` to ensure warnings are visible. 2. Enable SSL certificate verification by removing `verify=False` from `requests.get` and `requests.post` calls. 3. If the Dirigera hub uses a self-signed certificate, provide the path to the certificate bundle (e.g., `verify="/path/to/cert.pem"`) or ensure the certificate is trusted by the system's certificate store. If `verify=False` is absolutely necessary, add prominent warnings to the user about the security implications. | LLM | scripts/generate_token_wrapper.py:10 | |
| HIGH | Insecure HTTPS connection (SSL verification disabled) The `generate_token_wrapper.py` script explicitly disables SSL certificate verification for HTTPS requests to the Dirigera hub by setting `verify=False`. This makes the communication vulnerable to Man-in-the-Middle (MITM) attacks, where an attacker could intercept, read, or modify the token generation process and potentially steal the generated token or other sensitive information. While this might be done to accommodate self-signed certificates on local devices, it significantly degrades the security of the token generation process. 1. Remove `requests.packages.urllib3.disable_warnings(InsecureRequestWarning)` to ensure warnings are visible. 2. Enable SSL certificate verification by removing `verify=False` from `requests.get` and `requests.post` calls. 3. If the Dirigera hub uses a self-signed certificate, provide the path to the certificate bundle (e.g., `verify="/path/to/cert.pem"`) or ensure the certificate is trusted by the system's certificate store. If `verify=False` is absolutely necessary, add prominent warnings to the user about the security implications. | LLM | scripts/generate_token_wrapper.py:70 | |
| HIGH | Insecure HTTPS connection (SSL verification disabled) The `generate_token_wrapper.py` script explicitly disables SSL certificate verification for HTTPS requests to the Dirigera hub by setting `verify=False`. This makes the communication vulnerable to Man-in-the-Middle (MITM) attacks, where an attacker could intercept, read, or modify the token generation process and potentially steal the generated token or other sensitive information. While this might be done to accommodate self-signed certificates on local devices, it significantly degrades the security of the token generation process. 1. Remove `requests.packages.urllib3.disable_warnings(InsecureRequestWarning)` to ensure warnings are visible. 2. Enable SSL certificate verification by removing `verify=False` from `requests.get` and `requests.post` calls. 3. If the Dirigera hub uses a self-signed certificate, provide the path to the certificate bundle (e.g., `verify="/path/to/cert.pem"`) or ensure the certificate is trusted by the system's certificate store. If `verify=False` is absolutely necessary, add prominent warnings to the user about the security implications. | LLM | scripts/generate_token_wrapper.py:100 | |
| MEDIUM | Suspicious import: socket Import of 'socket' detected. This module provides network or low-level system access. Verify this import is necessary. Network and system modules in skill code may indicate data exfiltration. | Static | skills/falderebet/dirigera-control/scripts/find_dirigera_ip.py:19 | |
| MEDIUM | Suspicious import: requests Import of 'requests' detected. This module provides network or low-level system access. Verify this import is necessary. Network and system modules in skill code may indicate data exfiltration. | Static | skills/falderebet/dirigera-control/scripts/generate_token_wrapper.py:18 | |
| MEDIUM | Suspicious import: socket Import of 'socket' detected. This module provides network or low-level system access. Verify this import is necessary. Network and system modules in skill code may indicate data exfiltration. | Static | skills/falderebet/dirigera-control/scripts/generate_token_wrapper.py:37 |
Scan History
Embed Code
[](https://skillshield.io/report/7b4e37f62b749e94)
Powered by SkillShield