autobahn

clawhub:autobahn

View source
C
67/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

67/100

CRITICAL 1
MEDIUM 1
LOW 2

Findings (4)

CRITICAL
Instruction override combined with dangerous operations
L1

Instruction override combined with dangerous operations

AUTOBAHN_PRIVATE_KEY — override deployer private key
FIX

Remove language that attempts to override safety guidelines or bypass system-level controls. This pattern is a strong indicator of a jailbreak attempt.

FP?

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.

MEDIUM
Section claims authority and urgency with dangerous instructions
L1884

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...
FIX

Remove false authority claims (e.g., claiming administrator or root-level access) from tool descriptions. Tool descriptions should describe capabilities, not claim elevated roles.

FP?

Likely FP if the matched text is documentation explaining role-based access control concepts or describing user personas, not impersonating a system role.

LOW
External API response used without validation
L489

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

API stores off-chain + returns calldata + automatically — no manual `send-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
Shell script file execution
L1765

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

bash ./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.