Trust Assessment
telegram-bot-manager received a trust score of 35/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 5 findings: 1 critical, 1 high, 3 medium, and 0 low severity. Key findings include Arbitrary command execution, Dangerous call: subprocess.run(), Suspicious import: requests.
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 14, 2026 (commit 13146e6a). SkillShield performs automated 4-layer security analysis on AI skills and MCP servers.
Layer Breakdown
Behavioral Risk Signals
Security Findings5
| 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/362224222/telegram-bot-manager/scripts/setup_bot.py:167 | |
| HIGH | Dangerous call: subprocess.run() Call to 'subprocess.run()' detected in function 'restart_openclaw'. This can execute arbitrary code. Avoid using dangerous functions like exec/eval/os.system. Use safer alternatives. | Static | skills/362224222/telegram-bot-manager/scripts/setup_bot.py:167 | |
| 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/362224222/telegram-bot-manager/scripts/setup_bot.py:122 | |
| 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/362224222/telegram-bot-manager/scripts/test_bot.py:7 | |
| MEDIUM | Bot token stored in plain text in local configuration file The `setup_bot.py` script prompts the user for a Telegram bot token and then stores it directly in plain text within the `openclaw.json` configuration file located at `/home/openclaw/.openclaw/openclaw.json`. Storing sensitive credentials in plain text in local files can lead to credential exposure if the file system is compromised or if file permissions are not adequately restricted. While this is a common pattern for local application configuration, it represents a security risk. Implement secure storage for sensitive credentials. Consider using environment variables, a secrets management system, or encrypting the token within the configuration file. Ensure the `openclaw.json` file has strict file permissions (e.g., `chmod 600`) to restrict access to the owner. | LLM | scripts/setup_bot.py:121 |
Scan History
Embed Code
[](https://skillshield.io/report/d159a83bfb4d6ad7)
Powered by SkillShield