10 lines
419 B
Bash
Executable file
10 lines
419 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# run-showcase.sh — Wrapper for the prompt injection showcase
|
|
# Usage:
|
|
# cd plugins/llm-security
|
|
# ./examples/prompt-injection-showcase/run-showcase.sh
|
|
# ./examples/prompt-injection-showcase/run-showcase.sh --verbose
|
|
# ./examples/prompt-injection-showcase/run-showcase.sh --category "Bash Evasion"
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec node "$SCRIPT_DIR/run-showcase.mjs" "$@"
|