x-ai

clawhub:x-ai

View source
C
70/100

First Seen

Feb 20, 2026

Last Scanned

Feb 22, 2026

Findings

3

Score

70/100

HIGH 2
LOW 1

Findings (3)

HIGH
Fetch URL and use as instructions
L93

Detects fetching external URLs and using the content as agent instructions or rules

prompts to xAI's API at `api
FIX

Sanitize or validate all external inputs (file contents, API responses, user messages) before including them in prompts or tool calls. Implement input/output boundaries between trusted and untrusted data.

FP?

Likely FP if the matched text is the skill's own instruction set describing how to handle user input, not an actual injection payload.

HIGH
Data transmission pattern
L101

Detects patterns indicating sensitive data being sent to external services

send credentials to
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.

LOW
Runtime URL controlling behavior
L30

Detects URLs fetched at runtime that control or influence agent behavior without pinning

Get your API key at: https:// + prompt
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.