agirails

clawhub:agirails

View source
C
69/100

First Seen

Feb 19, 2026

Last Scanned

Feb 22, 2026

Findings

14

Score

69/100

HIGH 1
MEDIUM 2
LOW 11

Findings (14)

HIGH
Base64-encoded instructions
L534

Detects instructions to decode and execute base64 content

BASE64` + `ACTP_KEY_PASSWORD` (for Docker/Railway/serverless
FIX

Remove text that simulates multi-turn conversations or fake user/assistant message pairs. These patterns attempt to manipulate the agent by fabricating conversation history.

FP?

Likely FP if the matched text is documentation showing example conversations or API request/response formats for illustration purposes.

MEDIUM
Base64-encoded instructions
L1465

Detects instructions to decode and execute base64 content

BASE64 (base64-encoded keystore — for Docker/Railway/serverless
FIX

Remove text that simulates multi-turn conversations or fake user/assistant message pairs. These patterns attempt to manipulate the agent by fabricating conversation history.

FP?

Likely FP if the matched text is documentation showing example conversations or API request/response formats for illustration purposes.

MEDIUM
Base64-encoded instructions
L1481

Detects instructions to decode and execute base64 content

base64-encoded keystore for containerized/serverless
FIX

Remove text that simulates multi-turn conversations or fake user/assistant message pairs. These patterns attempt to manipulate the agent by fabricating conversation history.

FP?

Likely FP if the matched text is documentation showing example conversations or API request/response formats for illustration purposes.

LOW
pip install arbitrary package
L54

Detects pip install of arbitrary packages that modify the host environment

pip install ag
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
pip install arbitrary package
L193

Detects pip install of arbitrary packages that modify the host environment

pip install ag
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
Unverified npx package execution
L519

Detects npx executing packages from unverified sources without pinned versions

npx @agirails/sdk 
FIX

Pin the npx package to an exact version (e.g., npx @scope/package@1.2.3). Unversioned npx commands can silently install a different or malicious package version.

FP?

Likely FP if the npx command targets a well-known package in documentation context, though unpinned versions are a real supply chain concern.

LOW
Unverified npx package execution
L526

Detects npx executing packages from unverified sources without pinned versions

npx @agirails/sdk 
FIX

Pin the npx package to an exact version (e.g., npx @scope/package@1.2.3). Unversioned npx commands can silently install a different or malicious package version.

FP?

Likely FP if the npx command targets a well-known package in documentation context, though unpinned versions are a real supply chain concern.

LOW
Hardcoded secrets in MCP env block
L545

Detects hardcoded API keys, tokens, or passwords in MCP server environment configuration

"env": { + "ACTP_KEY_PASSWORD": "your-keystore-password"
FIX

Remove shell metacharacters (semicolons, pipes, ampersands, backticks) from MCP server arguments. Use explicit argument arrays and avoid shell expansion in MCP configurations.

FP?

Likely FP if the metacharacter is a literal part of a non-shell argument (e.g., a regex pattern or a URL query parameter containing ampersands).

LOW
pip install arbitrary package
L573

Detects pip install of arbitrary packages that modify the host environment

pip install ag
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
Non-localhost remote MCP server URL
L1091

Detects MCP server configurations connecting to non-localhost remote URLs

"url": "https://your-agent-endpoint.com"
FIX

Change the MCP server URL to localhost or a trusted internal endpoint. If a remote server is required, verify the domain ownership and use HTTPS with certificate validation.

FP?

Likely FP if the URL points to example.com, a documentation domain, or a well-known SaaS API endpoint (e.g., api.openai.com).

LOW
pip install arbitrary package
L1149

Detects pip install of arbitrary packages that modify the host environment

pip install ag
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
Shell script file execution
L1272

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

bash {baseDir}/scripts/setup.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
External API response used without validation
L1320

Detects patterns where external API responses are used directly without validation or sanitization

Endpoint | Purpose | Data + without `actp init`. If you use
FIX

Validate and sanitize all data received from external APIs before using it in tool operations or agent prompts. Implement schema validation and treat API responses as untrusted input.

FP?

Likely FP if the match is a truncated table cell or documentation fragment that mentions API responses in a descriptive context, not actual unvalidated data processing.

LOW
pip install arbitrary package
L1476

Detects pip install of arbitrary packages that modify the host environment

pip install ag
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.