Buzz BD

WarnAudited by ClawScan on May 10, 2026.

Overview

The token-scanning purpose is mostly coherent, but an included adapter builds a shell command from message text, which could let crafted input run local commands.

Treat this as a review-before-install skill. The DexScreener scanning behavior is expected for its purpose, but avoid using the elizaOS adapter until the shell-command construction is fixed, and independently verify any crypto token links or social links before acting on them.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If this adapter is used, a malicious or malformed token query could run commands with the same permissions as the agent process.

Why it was flagged

The handler interpolates message.content.text into a shell command. Because execSync uses a shell, crafted token text containing quotes or command substitution could execute unintended local commands.

Skill content
execSync(`node ${skillDir}scripts/buzz-scan.mjs --token "${message.content.text}" --json`, { encoding: 'utf-8', timeout: 30000 })
Recommendation

Replace execSync with execFile/spawn using an argument array, validate token inputs strictly, and avoid passing free-form user messages to a shell.

What this means

Users could over-trust social links or token metadata that may still originate from third-party or project-controlled sources.

Why it was flagged

The skill claims verified working social links, while the provided scanner code appears to output provider-supplied social URLs from DexScreener. Users should not treat token links as independently verified unless the implementation is confirmed.

Skill content
Every token result includes: ... ✅ Social links (verified working)
Recommendation

Label third-party token/social data as untrusted or provider-sourced unless the skill performs and documents independent verification.

What this means

It may be harder for users to confirm that the installed artifact matches the advertised project.

Why it was flagged

The registry source is unknown, and the supplied package metadata references a related but different GitHub repository name. This is a provenance note rather than proof of malicious behavior.

Skill content
Source: unknown; Homepage: https://github.com/buzzbysolcex/buzz-bd-agent
Recommendation

Verify the ClawHub package contents against the intended GitHub repository before installing or running included scripts.