Back to skill

Security audit

Agent Soul Sync

Security checks across malware telemetry and agentic risk

Overview

This skill does what it says: it uploads user-selected local OpenClaw skill files to a Mysta cloud agent, with disclosed API-key and network use.

Install only if you trust Mysta and intend to copy local skills to a cloud agent. Before syncing, review the listed SKILL.md files, avoid choosing all if any skill may contain private instructions or secrets, verify the MCP URL is a Mysta endpoint, and use a revocable scoped API key if available.

Vulnerability Patterns
  • Data ExfiltrationExternal Transmission, Env Variable Harvesting, File System Enumeration
  • Prompt InjectionInstruction Override, Hidden Instructions, Exfiltration Commands
  • Privilege EscalationExcessive Permissions, Sudo/Root Execution, Credential Access
  • Supply ChainUnpinned Dependencies, External Script Fetching, Obfuscated Code
  • Excessive AgencyUnrestricted Tool Access, Autonomous Decision Making, Scope Creep
Findings (1)

External Transmission

Medium
Category
Data Exfiltration
Content
jq -n --arg name "$name" --arg content "$content" '{name:$name,content:$content}'
done | jq -s '.')

RESULT=$(curl -sf -X POST "${MCP_URL}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Authorization: Bearer ${MYSTA_API_KEY}" \
Confidence
96% confidence
Finding
This code uploads the full contents of selected local SKILL.md files to a remote Mysta service. Even with stated user consent, it creates a real exfiltration path for any sensitive data accidentally stored in those files, and the optional MYSTA_MCP_URL override increases risk if an attacker can influence the environment to redirect uploads to an untrusted server.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Static analysis

Detected: suspicious.generated_source_template_injection

User-controlled placeholder is embedded directly into generated source code.

Critical
Code
suspicious.generated_source_template_injection
Location
SKILL.md:83