smithnode

clawhub:smithnode

View source
B
75/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

75/100

CRITICAL 1
LOW 3

Findings (4)

CRITICAL
Download-and-execute
L97

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
Mutable GitHub raw content reference
L47

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/smithnode/smithnode/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L48

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/smithnode/smithnode/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.

LOW
Mutable GitHub raw content reference
L49

Detects references to raw.githubusercontent.com on mutable branches like main/master

raw.githubusercontent.com/smithnode/smithnode/main/
FIX

Replace GitHub raw.githubusercontent.com references with pinned commit SHAs instead of branch names (e.g., /commit-sha/file instead of /main/file). Branch references are mutable.

FP?

Likely FP if the raw GitHub URL points to a versioned release tag in a well-known repository, though even tags are technically mutable.