ZetaChain Omnichain Helper

Security checks across malware telemetry and agentic risk

Overview

This skill is a user-run ZetaChain lookup helper that contacts public blockchain APIs, with privacy notes but no hidden credential access, persistence, or transaction authority.

Use this only with wallet addresses and transaction hashes you are comfortable querying through third-party RPC providers. Independently verify any TSS/deposit address or suggested financial action before moving funds, and install Python dependencies only from trusted sources.

SkillSpector

By NVIDIA
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 (2)

External Transmission

Medium
Category
Data Exfiltration
Content
payload = {"jsonrpc": "2.0", "method": "eth_getBalance", "params": [address, "latest"], "id": 1}
    for node in node_list:
        try:
            r = requests.post(node, json=payload, timeout=5)
            result = r.json().get("result")
            if result: return int(result, 16) / 1e18
        except: continue
Confidence
84% confidence
Finding
requests.post(node, json=

External Transmission

Medium
Category
Data Exfiltration
Content
payload = {"jsonrpc": "2.0", "method": "eth_gasPrice", "params": [], "id": 1}
    for node in node_list:
        try:
            r = requests.post(node, json=payload, timeout=5)
            result = r.json().get("result")
            if result: return int(result, 16) / 1e9
        except: continue
Confidence
80% confidence
Finding
requests.post(node, json=

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal