atxp-2

clawhub:atxp-2

View source
C
62/100

First Seen

Feb 19, 2026

Last Scanned

Feb 22, 2026

Findings

5

Score

62/100

HIGH 2
MEDIUM 1
LOW 2

Findings (5)

HIGH
Autonomous agent spawning
L74

Detects autonomous sub-agent or cron-based execution without human oversight

background process + autonomous
FIX

Remove directives that force the agent to call specific tools or APIs not required for the skill's stated functionality. Tool calls should be determined by user intent, not embedded directives.

FP?

Likely FP if the skill legitimately needs to call other tools as part of its workflow (e.g., a deployment skill that calls git and cloud CLI tools).

HIGH
Private data read with public output
L125

Skill can read private data (credentials, SSH keys, env vars) AND write to public channels (Slack, Discord, email). This combination enables data exfiltration.

[reads_private_data] Load credentials + [writes_public_output] send it via email
FIX

Break the toxic data flow by adding validation and sanitization between the input source and the sensitive operation. Do not pass untrusted data directly to file system, network, or execution APIs.

FP?

Likely FP if the data flow involves only trusted, hardcoded values and the taint analysis over-approximated the untrusted input sources.

MEDIUM
Unrestricted email or messaging access
L241

Detects CLI tools granting unrestricted send/read access to email or messaging

email send --to
FIX

Restrict email and messaging API access to user-initiated actions. Prevent automated sending that could exfiltrate data via email body or attachments.

FP?

Likely FP if the skill is an email client or messaging tool whose documented purpose is to send messages on behalf of the user.

LOW
Cross-tool data leakage
L125

Detects patterns where credential or secret reads are combined with external data transmission

Load credential + send `ATXP_CONNECTION` or any content
FIX

Prevent credentials and sensitive data obtained by one MCP tool from being passed to other tools. Implement data isolation between tools and restrict cross-tool data flow for secrets.

FP?

Likely FP if the cross-tool data flow is intentional API authentication (e.g., a tool fetches an auth token that another tool uses for the same service).

LOW
Unrestricted email or messaging access
L286

Detects CLI tools granting unrestricted send/read access to email or messaging

email send --to
FIX

Restrict email and messaging API access to user-initiated actions. Prevent automated sending that could exfiltrate data via email body or attachments.

FP?

Likely FP if the skill is an email client or messaging tool whose documented purpose is to send messages on behalf of the user.