which-llm

clawhub:which-llm

View source
C
62/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

5

Score

62/100

HIGH 2
MEDIUM 1
LOW 2

Findings (5)

HIGH
Curl or wget piped to shell
L314

Detects downloading scripts piped directly to a shell interpreter

curl -L https://foundry.paradigm.xyz | bash
FIX

Download the script first, inspect it, verify its checksum, then run it. Do not pipe curl/wget output directly to sh/bash. Prefer package manager installs.

FP?

Likely FP if the download is from a well-known installer domain (e.g., brew.sh, rustup.rs), though this pattern is inherently risky even with trusted sources.

HIGH
Download-and-execute
L314

Detects patterns of downloading and piping to shell execution

curl -L https://foundry.paradigm.xyz | bash
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.

MEDIUM
Read sensitive files and transmit externally
L153

Detects skills that both read sensitive credential files and send data to external services

read -s WALLET_PRIVATE_KEY + send payment proof headers to API
FIX

Block access to git credentials, SSH keys, and repository tokens. If git operations are needed, use scoped deploy keys and restrict the tool to specific repositories.

FP?

Likely FP if the match is documentation about git configuration (e.g., setting up git credentials helper) rather than code that reads and transmits them.

LOW
Cross-tool data leakage
L153

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

read -s WALLET_PRIVATE_KEY + POST /decision/outcome` to report result
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
Chained shell command execution
L314

Detects chained commands using shell operators with dangerous operations

curl -L https://foundry.paradigm.xyz | bash
FIX

Break chained commands into discrete, individually validated steps. Avoid piping untrusted output directly into a shell interpreter.

FP?

Likely FP if the matched text is a documentation example showing a common installer one-liner for a well-known tool with a canonical URL.