skill-security-auditor

clawhub:skill-security-auditor

View source
C
59/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

6

Score

59/100

CRITICAL 1
MEDIUM 2
LOW 3

Findings (6)

CRITICAL
Download-and-execute
L179

Detects patterns of downloading and piping to shell execution

curl | 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
Remote SDK or script fetch as agent input
L179

Detects fetching remote documentation or code to load as agent context

curl | bash` or `wget  + https://openclaw-security.github.io/threat-intel/latest.json
FIX

Pin the SDK or script to a specific version and verify its checksum after download. Prefer installing SDKs via a package manager instead of fetching remote scripts directly.

FP?

Likely FP if the match is documentation showing how to install an official SDK (e.g., Google Cloud SDK, AWS CLI) from its canonical URL.

MEDIUM
Base64 encode and send
L180

Detects base64 encoding of content followed by transmission

base64 encode + curl
FIX

Block patterns that base64-encode data and immediately transmit it. If base64 encoding is needed, ensure the encoded data does not contain secrets and destinations are allowlisted.

FP?

Likely FP if base64 encoding is used for legitimate purposes like encoding images for display or constructing data URIs, with no network transmission.

LOW
Shell profile modification for persistence
L112

Detects instructions to modify shell config files for environment persistence

>> ~/.bashrc
FIX

Avoid modifying shell profiles (.bashrc, .zshrc, .profile) programmatically. Instruct users to add PATH entries manually, or use a version manager (nvm, pyenv) instead.

FP?

Likely FP if the match is documentation showing how to add a tool to PATH manually, especially if it only appends to PATH without modifying other settings.

LOW
Shell script file execution
L120

Detects execution of shell script files via bash/sh command or direct invocation

bash
~/.openclaw/skills/skill-security-auditor/analyze-skill.sh
FIX

Replace direct shell script execution with a language-native implementation or a sandboxed executor. If shell scripts must run, restrict them to a vetted allowlist with integrity checks.

FP?

Likely FP if the match references running a script that is part of the skill's own repository (e.g., ./setup.sh) with clear, auditable contents.

LOW
Runtime URL controlling behavior
L166

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

Download openclaw-agent.zip from https:// + Instructions
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.