vibe
Audited by Runlayer on Mar 14, 2026
Shadow Persistence
Privilege Escalation
Destructive Action
Resource Abuse
Context Poisoning
Prompt Injection
Guardrail Bypass
Tool passed security scan
Malicious tool definition detected
Tool: vibe/references/shell-standards.md [2/3] Description: } # ------------------------------------------------------------------- # Main # ------------------------------------------------------------------- main() { local required_arg="" # Parse arguments while [[ $# -gt 0 ]]; do case "$1" in -h|--help) usage exit 0 ;; -n|--namespace) NAMESPACE="$2" shift 2 ;; --dry-run) DRY_RUN="true" shift ;; -*) die "Unknown option: $1" ;; *) required_arg="$1" shift ;; esac done validate_args "${required_ar
Malicious tool definition detected
Tool passed security scan
Malicious tool definition detected
Tool: vibe/references/python-standards.md [4/4] Description: hardcode secrets in source code: ```python # DANGEROUS - Hardcoded secrets API_KEY = "REDACTED" # Leaked in git history forever db_url = "postgresql://user:REDACTED@prod-db:5432/app" # SAFE - Environment variables import os API_KEY = os.environ["API_KEY"] # Fails loudly if missing # SAFE - With default for optional config DEBUG = os.environ.get("DEBUG", "false").lower() == "true" # SAFE - Vault/secrets manager for production from hvac
Malicious tool definition detected
Risky tool definition detected
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Passed Files (7)Click to expand
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan