Lp3
Medium
- Category
- MCP Least Privilege
- Confidence
- 70% confidence
- Finding
- Without declared permissions the skill's intent is opaque and cannot be validated.
Security audit
Security checks for vulnerabilities and agentic risk
This skill fetches public GitHub Trending data and optionally sends it to user-configured notification channels, with no hidden persistence or unrelated data access found.
Before installing, confirm you are comfortable sending GitHub Trending summaries to the notification service you configure. Store Telegram tokens, chat IDs, and webhook URLs securely, avoid putting real secrets directly in shell history or cron entries, and verify the destination channel before scheduling automatic pushes.
def send_telegram(message: str, token: str, chat_id: str) -> bool:
"""发送到 Telegram"""
url = f"https://api.telegram.org/bot{token}/sendMessage"
data = {
'chat_id': chat_id,
'text': message,No suspicious patterns detected.