surrealdb-knowledge-graph-memory

clawhub:surrealdb-knowledge-graph-memory

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
Fake system prompt
L320

Detects content pretending to be a system prompt

system prompt
   -
FIX

Remove encoded or obfuscated directives (base64, ROT13, unicode escapes, hex-encoded text). All text should be in plaintext and human-readable.

FP?

Likely FP if the encoded content is legitimate data (e.g., a base64-encoded image, a hex-encoded binary hash) rather than concealed directives.

LOW
Shell script file execution
L215

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

./scripts/install.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
pip install arbitrary package
L226

Detects pip install of arbitrary packages that modify the host environment

pip install su
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
L500

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

./scripts/migrate-v2.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.