clawdbot-for-vcs

clawhub:clawdbot-for-vcs

View source
C
52/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

6

Score

52/100

CRITICAL 1
HIGH 1
MEDIUM 1
LOW 3

Findings (6)

CRITICAL
Instruction override attempt
L770

Detects attempts to override or ignore previous instructions

ignore previous instructions
FIX

Remove the injection payload from the skill definition. Text that attempts to reset agent context or override prior directives is a direct attack vector.

FP?

Likely FP if the text is in a security tutorial or research paper discussing injection techniques as examples, not in an active skill description.

HIGH
Data transmission pattern
L776

Detects patterns indicating sensitive data being sent to external services

exfiltrate data
FIX

Restrict file reading to the project directory and block outbound network calls that include file contents. Implement file path validation to prevent directory traversal.

FP?

Likely FP if the tool legitimately reads project files and displays them to the user locally, without sending data to external services.

MEDIUM
Obfuscated shell command
L802

Detects obfuscated command execution patterns

$(echo "YOUR_PASSWORD_BASE64" | base64 -d)
FIX

Verify the authenticity of downloaded packages by checking GPG signatures or SHA-256 checksums against a trusted source. Do not rely solely on HTTPS for package integrity.

FP?

Likely FP if the package installation uses a well-known package manager (npm, pip) which already verifies package integrity by default.

LOW
Unrestricted email or messaging access
L550

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

gmail search "COMPANY_NAME has:attachment" --max
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
Unrestricted email or messaging access
L553

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

gmail search "COMPANY_NAME docsend.com" --max
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
go install from remote
L796

Detects go install fetching and compiling arbitrary Go packages

go install github.com/martynsmith/gog@
FIX

Pin Go install targets to a specific version (e.g., go install example.com/tool@v1.2.3). Avoid @latest as it fetches whatever is currently published.

FP?

Likely FP if the go install target is a well-known tool (e.g., golang.org/x/ packages) pinned to a specific version in documentation.