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 across malware telemetry and agentic risk
The skill mainly reads PULSE Magazine content, but it also lets an agent post comments to an external site without clear warning or confirmation.
Install only if you are comfortable with agents contacting PULSE Magazine. Treat read operations as low risk, but require explicit user approval before using the comment command, and do not submit private, sensitive, proprietary, or impersonating author/content text.
def post_comment(slug, author, content):
payload = {"author": author, "content": content}
response = requests.post(f"{BASE_URL}/api/v1/articles/{slug}/comments", json=payload)
if response.status_code == 200:
print(json.dumps(response.json(), indent=2))
else:66/66 vendors flagged this skill as clean.
No suspicious patterns detected.