APEX IA Scanner

WarnAudited by ClawScan on May 11, 2026.

Overview

This is presented as a Binance Futures scanner, but the bundled code contains hardcoded Binance credentials, automatic futures order execution, and runtime package installation.

Review carefully before installing or running. Treat this as more than a scanner: remove or ignore the trading scripts, do not use bundled credentials, do not add real Binance keys unless you fully understand the order-execution code, and avoid running files that install packages through shell commands.

Findings (4)

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 a user runs these scripts or adapts them to real credentials, the skill could place unexpected leveraged crypto futures trades and create financial exposure.

Why it was flagged

The included code can automatically submit leveraged Binance Futures market orders and explicitly disables stop loss in this variant, which goes beyond the advertised scanner behavior.

Skill content
let MAX_LEVERAGE = 20; ... let USE_STOP_LOSS = false; ... let autoTrade = true; ... await binanceRequest('POST', '/fapi/v1/order', { ... type: 'MARKET' ... }, true);
Recommendation

Separate scanning from trading, default all trading to off, require explicit per-order user confirmation, document risk limits, and remove high-risk aggressive defaults.

What this means

Bundled trading credentials can be exposed or misused, and users may not realize the skill contains account-level trading authority.

Why it was flagged

Binance API credentials are hardcoded and used for signed account/order requests, while the registry metadata declares no required credentials.

Skill content
const API_KEY = 'Dq0...'; const API_SECRET = '1kV...'; ... headers: { 'X-MBX-APIKEY': API_KEY }
Recommendation

Revoke and rotate the exposed keys, remove secrets from source, require user-provided scoped testnet/mainnet credentials via environment variables, and declare the credential requirement clearly.

What this means

Running the script can modify the local Node environment and fetch external package code unexpectedly.

Why it was flagged

A source file invokes a shell command to install an npm package, despite the skill having no install spec or declared setup step.

Skill content
execSync('npm install ws', { stdio: 'inherit' });
Recommendation

Move dependencies to package.json/package-lock, avoid runtime shell installation, and require explicit user approval for any setup command.

What this means

Users could install the skill expecting only market scanning while overlooking bundled automated trading behavior.

Why it was flagged

The commercial documentation suggests automatic execution is not part of the free/pro scanner tiers, but included source files set autoTrade to true and implement order execution.

Skill content
| Execução automática | ❌ | ❌ | ✅ |
Recommendation

Align the documentation with the included code, remove unused trading bots from the scanner package, or clearly label them as disabled examples.