openclaw-kirocli-coding-agent

clawhub:openclaw-kirocli-coding-agent

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

3

Score

77/100

HIGH 1
MEDIUM 1
LOW 1

Findings (3)

HIGH
Data transmission pattern
L48

Detects patterns indicating sensitive data being sent to external services

Send key 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.

MEDIUM
MCP server auto-registration
L255

Detects automatic registration of MCP servers into agent configuration

mcp add --name my-server --command "node server
FIX

Pin the curl/wget download to a specific URL with version and verify the downloaded file's SHA-256 checksum before using it. Prefer package manager installs over raw downloads.

FP?

Likely FP if the download is from a well-known canonical source (e.g., official GitHub release) and the documentation includes checksum verification steps.

LOW
Global package installation
L310

Detects global installation of packages which affects the host system

npm install -g @
FIX

Replace npm install -g with a local install (npm install --save-dev) or use npx with a pinned version. Global installs modify the system and risk supply chain attacks.

FP?

Likely FP if the global install is for a well-known CLI tool (e.g., typescript, eslint) in setup documentation, though the supply chain risk remains real.