x1-vault-memory

clawhub:x1-vault-memory

View source
B
75/100

First Seen

Feb 19, 2026

Last Scanned

Feb 22, 2026

Findings

2

Score

75/100

CRITICAL 1
LOW 1

Findings (2)

CRITICAL
Download-and-execute
L62

Detects patterns of downloading and piping to shell execution

curl | sh
FIX

Download the file first, verify its integrity (checksum, signature), inspect it, then run it. Prefer package managers over raw downloads. Never fetch-and-run in one step.

FP?

Likely FP if the target is a well-known installer (e.g., rustup, Homebrew) from its canonical HTTPS domain, though the pattern is inherently risky.

LOW
Runtime URL controlling behavior
L34

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

Get it at https:// + config
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.