Lp3
Medium
- Category
- MCP Least Privilege
- Confidence
- 70% confidence
- Finding
- Without declared permissions the skill's intent is opaque and cannot be validated.
Security checks across malware telemetry and agentic risk
The skill performs the advertised image-generation task, but users should know it sends prompts and an API token to a third-party service.
Install only if you are comfortable sending your image prompt, optional reference UUID, and Neta API token to the TalesOfAI/Neta service. Avoid sensitive prompts, and prefer adapting the script to read the token from an environment variable or secret store instead of placing it in shell history with --token.
}
async function createImage() {
const res = await fetch("https://api.talesofai.com/v3/make_image", {
method: "POST",
headers,
body: JSON.stringify(body),}
async function createImage() {
const res = await fetch("https://api.talesofai.com/v3/make_image", {
method: "POST",
headers,
body: JSON.stringify(body),}
async function pollResult(taskUuid) {
const pollUrl = `https://api.talesofai.com/v1/artifact/task/${taskUuid}`;
const maxAttempts = 90;
for (let i = 0; i < maxAttempts; i++) {66/66 vendors flagged this skill as clean.