First Seen
Feb 18, 2026
Last Scanned
Feb 22, 2026
Findings
4
Score
67/100
Findings (4)
Instruction override combined with dangerous operations
AUTOBAHN_PRIVATE_KEY — override deployer private key Remove language that attempts to override safety guidelines or bypass system-level controls. This pattern is a strong indicator of a jailbreak attempt.
Likely FP if the matched text is in a security research document or educational content clearly marked as an example rather than an active payload.
Section claims authority and urgency with dangerous instructions
Security note: For server-initiated operations (entity deploy, loans, docs), USEROP_SIGNER_KEY must be installed as an authorized ECDSA validator module on each smart account it signs for. For CLI gov... Remove false authority claims (e.g., claiming administrator or root-level access) from tool descriptions. Tool descriptions should describe capabilities, not claim elevated roles.
Likely FP if the matched text is documentation explaining role-based access control concepts or describing user personas, not impersonating a system role.
Detects patterns where external API responses are used directly without validation or sanitization
API stores off-chain + returns calldata + automatically — no manual `send-use 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.
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.
Detects execution of shell script files via bash/sh command or direct invocation
bash ./scripts/install.sh 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.
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.