0xwork
Audited by Socket on Mar 4, 2026
1 alert found:
SecurityThis skill's stated purpose (discovering and performing paid bounties on a decentralized marketplace) matches the capabilities described: it needs a wallet private key to sign transactions, interacts with an API and a blockchain RPC, uploads deliverables, and persists session state. The highest security concern is the recommended practice of writing a raw PRIVATE_KEY into a .env file that the CLI will discover by walking up the filesystem; this is an insecure storage pattern for a signing key. Combined with automated on-chain actions (auto-faucet, approvals, staking) and global npm installation, there is substantial supply-chain and credential exposure risk if the published CLI or dependencies are malicious or compromised. I did not find explicit sabotage code or hardcoded exfiltration endpoints in this document, but the operational footprint (private-key signing + network calls + file uploads) is high-privilege and must be trusted only if the CLI package, its installation sources, and the API/RPC endpoints are verified. Recommendations: avoid storing PRIVATE_KEY in plaintext in project directories, prefer hardware wallets or ephemeral signing services, audit the npm package source (GitHub repo) and its dependencies before installing, and verify API/RPC endpoints used at runtime. Treat this skill as medium-to-high risk in production environments unless keys are stored securely and the published CLI is audited.