docs/tools/terminal.mdx
Strix has access to a persistent bash terminal running inside the Docker sandbox. This gives the agent access to all pre-installed security tools.
| Feature | Description |
|---|---|
| Persistent state | Working directory and environment persist between commands |
| Multiple sessions | Run parallel terminals for concurrent operations |
| Background jobs | Start long-running processes without blocking |
| Interactive | Respond to prompts and control running processes |
# Subdomain enumeration
subfinder -d example.com
# Vulnerability scanning
nuclei -u https://example.com
# SQL injection testing
sqlmap -u "https://example.com/page?id=1"
# Fast SAST triage
semgrep --config auto ./src
# Structural AST search
sg scan ./src
# Secret detection
gitleaks detect --source ./
trufflehog filesystem ./
# Supply-chain and misconfiguration checks
trivy fs ./
# Run Python exploits
python3 exploit.py
# Execute shell scripts
./test_auth_bypass.sh
The agent can run multiple terminal sessions concurrently, for example: