x402-payment-tron
ยท v0.0.4
"Pay for x402-enabled Agent endpoints using USDT on TRON"
H:4 D:4 A:3 C:1
โ ๏ธ Hazard Flags
EXEC CODE_EXEC FS_READ_WORKSPACE FS_READ_USER FS_WRITE_WORKSPACE FS_WRITE_USER NET_EGRESS_ANY CREDS_ENV CREDS_FILES CREDS_BROWSER ACT_SEND_MESSAGE PI_WEB
๐ Capabilities
Execution
- โ Shell execution
- โ Code execution
- โ Install dependencies
- โ Persistence
- Privilege: user
Filesystem
- โ Read workspace
- โ Write workspace
- โ Read home
- โ Write home
- โ Read system
- โ Delete
Network
- Egress: any
- โ Ingress
Credentials
- โ Environment vars
- โ Credential files
- โ Browser data
- โ Keychain
Actions
โ
send messagesโ post publicโ purchaseโ transfer moneyโ deployโ delete external
๐ Containment
Level: maximum
Required:
- APPROVE_SEND: Can send messages
- SANDBOX_CONTAINER: Code execution capability
Recommended:
- LOG_ACTIONS: Audit trail for all actions
โก Risks
Base64 decode + execute pattern in: dist/index.js critical
Mitigation: Decode and review obfuscated content before use.
Code obfuscation detected in: dist/index.js medium
Mitigation: Deobfuscate and review code before use.
Command injection risk: COMMAND_INJECTION_EVAL, COMMAND_INJECTION_USER_INPUT, MCP_CMD_DANGEROUS_SYSTEM, MCP_SCRIPT_TAGS, MCP_SQL_BLIND critical
Mitigation: Avoid eval(), exec(), and compile(). Use safer alternatives like ast.literal_eval()
Social engineering indicators: SOCIAL_ENG_VAGUE_DESCRIPTION low
Mitigation: Provide clear, detailed description of skill functionality
Want a deeper analysis?
This report was generated by static analysis. Get an LLM-powered deep review with behavioral reasoning and attack surface mapping.
๐ง Deep Analysis โ $5.00๐จ Incident Response
Kill switch: Stop the agent process
Containment: Review logs for unexpected actions
Recovery: Depends on skill capabilities
๐ Raw SSDS JSON click to expand
{
"meta": {
"document_id": "ssds:auto:x402_payment_tron:1.0.0",
"ssds_version": "0.2.0",
"scanner_version": "0.4.0+fe6fd9123d50",
"created_at": "2026-03-05T02:47:28.740Z",
"created_by": {
"agent": "safeagentskills-cli/generate-ssds"
},
"language": "en",
"notes": "Auto-generated SSDS. Manual review recommended."
},
"skill": {
"name": "x402-payment-tron",
"version": "0.0.4",
"format": "agent_skill",
"description": "\"Pay for x402-enabled Agent endpoints using USDT on TRON\"",
"publisher": "ClawHub",
"source": {
"channel": "local"
},
"artifact": {
"sha256": "1686e64e0e3e2458f7e8d441c85cff802e25e690dfa744a8f1d7c7ecb995710c",
"hash_method": "files_sorted"
}
},
"capabilities": {
"execution": {
"can_exec_shell": true,
"can_exec_code": true,
"privilege_level": "user",
"can_install_deps": true,
"can_persist": false
},
"filesystem": {
"reads_workspace": true,
"reads_user_home": true,
"reads_system": false,
"writes_workspace": true,
"writes_user_home": true,
"writes_system": false,
"can_delete": false
},
"network": {
"egress": "any",
"ingress": false
},
"credentials": {
"reads_env_vars": true,
"reads_credential_files": true,
"reads_browser_data": true,
"reads_keychain": false
},
"services": [
{
"service": "email",
"operations": [
"read",
"write"
]
}
],
"actions": {
"can_send_messages": true,
"can_post_public": false,
"can_purchase": false,
"can_transfer_money": false,
"can_deploy": false,
"can_delete_external": false
},
"prompt_injection_surfaces": [
"web"
],
"content_types": [
"general"
]
},
"hazards": {
"hdac": {
"H": 4,
"D": 4,
"A": 3,
"C": 1
},
"flags": [
"EXEC",
"CODE_EXEC",
"FS_READ_WORKSPACE",
"FS_READ_USER",
"FS_WRITE_WORKSPACE",
"FS_WRITE_USER",
"NET_EGRESS_ANY",
"CREDS_ENV",
"CREDS_FILES",
"CREDS_BROWSER",
"ACT_SEND_MESSAGE",
"PI_WEB"
],
"custom_flags": [
{
"code": "BASE64_EXEC",
"name": "Base64 Execute",
"description": "Decodes and executes obfuscated code in: dist/index.js"
},
{
"code": "OBFUSCATED_CODE",
"name": "Obfuscated Code",
"description": "Contains obfuscated code patterns in: dist/index.js"
},
{
"code": "SOCIAL_ENGINEERING",
"name": "Social Engineering Risk",
"description": "SOCIAL_ENG_VAGUE_DESCRIPTION: Skill description is too vague or missing"
},
{
"code": "COMMAND_INJECTION",
"name": "Command Injection Risk",
"description": "COMMAND_INJECTION_EVAL, COMMAND_INJECTION_USER_INPUT, MCP_CMD_DANGEROUS_SYSTEM, MCP_SCRIPT_TAGS, MCP_SQL_BLIND: Dangerous code execution functions that can execute arbitrary code"
}
],
"confidence": {
"level": "medium",
"basis": [
"static_analysis"
],
"notes": "Detected 4 security patterns (11 vendored rule hits). Review recommended."
},
"rationale": {
"H": "H4: Critical: Privilege escalation or malware detected",
"D": "D4: Critical: Credential theft or data exfiltration",
"A": "A3: External actions (deploy/message/post)",
"C": "C1: General content"
}
},
"containment": {
"level": "maximum",
"required": [
{
"control": "APPROVE_SEND",
"reason": "Can send messages"
},
{
"control": "SANDBOX_CONTAINER",
"reason": "Code execution capability"
}
],
"recommended": [
{
"control": "LOG_ACTIONS",
"reason": "Audit trail for all actions"
}
],
"uncontained_risk": "Risk level depends on manual review of actual capabilities."
},
"risks": {
"risks": [
{
"risk": "Base64 decode + execute pattern in: dist/index.js",
"severity": "critical",
"mitigation": "Decode and review obfuscated content before use."
},
{
"risk": "Code obfuscation detected in: dist/index.js",
"severity": "medium",
"mitigation": "Deobfuscate and review code before use."
},
{
"risk": "Command injection risk: COMMAND_INJECTION_EVAL, COMMAND_INJECTION_USER_INPUT, MCP_CMD_DANGEROUS_SYSTEM, MCP_SCRIPT_TAGS, MCP_SQL_BLIND",
"severity": "critical",
"mitigation": "Avoid eval(), exec(), and compile(). Use safer alternatives like ast.literal_eval()"
},
{
"risk": "Social engineering indicators: SOCIAL_ENG_VAGUE_DESCRIPTION",
"severity": "low",
"mitigation": "Provide clear, detailed description of skill functionality"
}
],
"limitations": [
"Static analysis only - runtime behavior not verified"
]
},
"incident_response": {
"kill_switch": [
"Stop the agent process"
],
"containment": [
"Review logs for unexpected actions"
],
"recovery": [
"Depends on skill capabilities"
]
},
"evidence": [
{
"evidence_id": "EV:file-1",
"type": "file_excerpt",
"title": "dist/index.js",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:file-2",
"type": "file_excerpt",
"title": "dist/package.json",
"file_path": "dist/package.json"
},
{
"evidence_id": "EV:file-3",
"type": "file_excerpt",
"title": "_meta.json",
"file_path": "_meta.json"
},
{
"evidence_id": "EV:file-4",
"type": "file_excerpt",
"title": "package.json",
"file_path": "package.json"
},
{
"evidence_id": "EV:file-5",
"type": "file_excerpt",
"title": "SKILL.md",
"file_path": "SKILL.md"
},
{
"evidence_id": "EV:file-6",
"type": "file_excerpt",
"title": "src/index.ts",
"file_path": "src/index.ts"
},
{
"evidence_id": "EV:cisco-1",
"type": "file_excerpt",
"title": "COMMAND_INJECTION_EVAL [CRITICAL] dist/index.js:10492: R.X=function(a){var b=k(a);if(\"number\"==b||\"string\"==b||\"boolean\"==b||\"null\"==b|",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-2",
"type": "file_excerpt",
"title": "COMMAND_INJECTION_USER_INPUT [MEDIUM] dist/index.js:23459: (()=>{var e={37:(e,t,r)=>{var n=r(306),o=n,a=\"undefined\"!=typeof globalThis&&glo",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-3",
"type": "file_excerpt",
"title": "OBFUSCATION_BASE64_LARGE [MEDIUM] dist/index.js:4416: return (0, decoder_js_1.read_compressed_payload)((0, base64_1.decode)('AEQF2AO2D",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-4",
"type": "file_excerpt",
"title": "OBFUSCATION_HEX_BLOB [MEDIUM] dist/index.js:31810: const rcon = [0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36, 0x6c, ",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-5",
"type": "file_excerpt",
"title": "OBFUSCATION_XOR_ENCODING [HIGH] dist/index.js:2951: BigNumber.prototype.xor = function (other) {",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-6",
"type": "file_excerpt",
"title": "MCP_CMD_DANGEROUS_SYSTEM [CRITICAL] dist/index.js:23459: (()=>{var e={37:(e,t,r)=>{var n=r(306),o=n,a=\"undefined\"!=typeof globalThis&&glo",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-7",
"type": "file_excerpt",
"title": "MCP_SCRIPT_TAGS [HIGH] dist/index.js:29618: // This correctly identifies schemes like `javascript:` which don't use `//`.",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-8",
"type": "file_excerpt",
"title": "MCP_SQL_BLIND [HIGH] dist/index.js:23459: (()=>{var e={37:(e,t,r)=>{var n=r(306),o=n,a=\"undefined\"!=typeof globalThis&&glo",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-9",
"type": "file_excerpt",
"title": "TIRITH_SHORTENED_URL [MEDIUM] dist/index.js:25960: // from http://goo.gl/0ejHHW",
"file_path": "dist/index.js"
},
{
"evidence_id": "EV:cisco-10",
"type": "file_excerpt",
"title": "TIRITH_USERINFO_TRICK [HIGH] dist/index.js:29569: component, e.g. `http://username:[email protected]`",
"file_path": "dist/index.js"
}
]
}