Is daily-ai-news-skill safe?

https://clawhub.ai/Laurent-Zhu/daily-ai-news-skill

82
SAFE

This is a benign AI news aggregation skill with no executable code, no data exfiltration attempts, and clean canary integrity. Its primary risk is indirect prompt injection through the 10-15+ external web pages it instructs the agent to fetch per session — a standard risk for any web-reading skill. The skill contains no malicious intent, but users should be aware that fetched content could contain adversarial instructions, especially when combined with other skills that have filesystem or shell access.

Category Scores

Prompt Injection 75/100 · 30%
Data Exfiltration 95/100 · 25%
Code Execution 95/100 · 20%
Clone Behavior 90/100 · 10%
Canary Integrity 100/100 · 10%
Behavioral Reasoning 60/100 · 5%

Findings (6)

MEDIUM Indirect prompt injection via fetched web content -15

The skill instructs the agent to fetch full article content from 10-15 external URLs per session using mcp__web_reader__webReader. Fetched web pages could contain adversarial instructions embedded in article text, HTML comments, or invisible elements that the LLM would process as part of its context. This is the most common attack vector for news/web-reading skills.

LOW Hardcoded external URLs increase attack surface -5

The skill hardcodes 6 primary news source URLs and instructs the agent to fetch them directly. If any of these domains are compromised or serve adversarial content, the agent would process it. While these are reputable sites, the lesser-known 'ai.hubtoday.app' has a smaller reputation footprint.

LOW WebSearch results expand indirect injection surface -5

The skill instructs the agent to execute 2-3 web search queries per session, then fetch full articles from the top results. Search results are less controlled than direct URL fetches, as any indexed page could appear in results and contain adversarial content.

LOW Unattributed TLS connection during install -10

Network monitoring captured a TLS connection to 216.150.1.1:443 during the install window. While this is likely a system-level operation (Ubuntu package check or similar), it could not be definitively attributed to either the OS or the skill installation process.

INFO Broad activation triggers may cause frequent invocation -10

The skill activates on common phrases like 'AI news', 'AI updates', 'latest developments', and Chinese-language equivalents. This broad triggering means the skill (and its web-fetching behavior) could activate more frequently than the user intends, increasing cumulative exposure to indirect prompt injection.

MEDIUM Chaining risk with filesystem/shell-capable skills -30

If this skill is installed alongside skills that have filesystem write or shell execution capabilities, adversarial content fetched from web pages could potentially instruct the agent to use those other tools for malicious purposes (e.g., 'write this to ~/.ssh/authorized_keys'). The skill itself has no such capabilities, but it widens the injection surface.