Skip to main content

add-telegram

Integrates Telegram as a communication channel, allowing for notifications and control actions within the Deus platform.

Install this skill

or
17/100

Security score

The add-telegram skill was audited on Jun 1, 2026 and we found 15 security issues across 4 threat categories, including 2 high-severity. Review the findings below before installing.

Categories Tested

Security Issues

medium line 118

Template literal with variable interpolation in command context

SourceSKILL.md
118```bash
medium line 124

Template literal with variable interpolation in command context

SourceSKILL.md
124```bash
high line 185

Template literal with variable interpolation in command context

SourceSKILL.md
185- Verify token: `curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe"`
medium line 216

Template literal with variable interpolation in command context

SourceSKILL.md
216```bash
high line 185

Curl to non-GitHub URL

SourceSKILL.md
185- Verify token: `curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe"`
medium line 217

Curl to non-GitHub URL

SourceSKILL.md
217curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe" | grep -q '"ok":true' && echo "Token valid" || echo "Token invalid"
medium line 16

Access to .env file

SourceSKILL.md
16Check if Telegram is already configured. If `TELEGRAM_BOT_TOKEN` exists in `.env`, skip to Phase 4 (Registration) or Phase 5 (Verify).
medium line 61

Access to .env file

SourceSKILL.md
61Add to `.env`:
low line 72

Access to .env file

SourceSKILL.md
72mkdir -p data/env && cp .env data/env/env
medium line 75

Access to .env file

SourceSKILL.md
75The container reads environment from `data/env/env`, not `.env` directly.
medium line 171

Access to .env file

SourceSKILL.md
1711. `TELEGRAM_BOT_TOKEN` is set in `.env` AND synced to `data/env/env`
medium line 220

Access to .env file

SourceSKILL.md
2203. Update the token in `.env` and sync: `mkdir -p data/env && cp .env data/env/env`
medium line 233

Access to .env file

SourceSKILL.md
2332. Remove `TELEGRAM_BOT_TOKEN` from `.env`
low line 185

External URL reference

SourceSKILL.md
185- Verify token: `curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe"`
low line 217

External URL reference

SourceSKILL.md
217curl -s "https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getMe" | grep -q '"ok":true' && echo "Token valid" || echo "Token invalid"
Scanned on Jun 1, 2026
View Security Dashboard
Installation guide →