Skip to main content
Strix is an autonomous penetration testing framework that combines AI agents, specialized security knowledge, and runtime sandboxing to discover vulnerabilities in your applications.

Architecture Overview

At its core, Strix orchestrates multiple components working together:

AI Agents

LLM-powered security experts that reason about targets and execute tests

Tools

Specialized capabilities for terminal, browser, proxy, file manipulation

Skills

Domain-specific security knowledge injected into agent context

Runtime

Isolated sandboxes providing safe execution environments

Execution Flow

When you start a scan, Strix follows this workflow:

1. Scan Initialization

Strix creates a root agent and initializes a sandbox environment:
The root agent receives:
  • Target information (URLs, repositories, IP addresses)
  • User instructions (custom testing requirements)
  • Sandbox workspace (isolated environment with tools)

2. Agent Loop

Each agent operates in a continuous reasoning loop: The agent loop handles:
Each agent has a maximum iteration limit (default: 300) to prevent infinite loops. As the agent approaches the limit, it receives warnings to prioritize task completion.
Agent state tracks the full execution context:
  • agent_id: Unique identifier
  • messages: Conversation history with LLM
  • actions_taken: Tool invocations performed
  • context: Custom data storage
  • errors: Any failures encountered
  • iteration: Current loop iteration
Tools execute either locally (in the Strix CLI) or remotely (in the sandbox):

3. Multi-Agent Coordination

Strix can spawn specialized sub-agents for complex tasks:
Sub-agents share the same workspace and proxy history but maintain independent conversation contexts. This enables parallel testing while building on previous discoveries.

4. Vulnerability Reporting

When agents discover security issues, they create structured reports:
Reports include:
  • CVSS scoring (automatic calculation from metrics)
  • Proof-of-concept code (executable exploit)
  • Duplicate detection (prevents redundant findings)
  • Code locations (vulnerable files and line numbers)

Sandbox Architecture

Strix sandboxes provide isolated environments where agents can safely execute commands, browse applications, and test for vulnerabilities without affecting your local system.
Each sandbox includes:
  • Tool server: HTTP API for executing tools (terminal, browser, file operations)
  • Caido proxy: Intercepts and logs all HTTP/HTTPS traffic
  • Workspace: Shared /workspace directory for code analysis
  • Isolated network: Contained environment with controlled internet access

Agent Communication

Agents can send messages to each other for coordination:

LLM Integration

Strix supports multiple LLM providers with structured output:
  • Anthropic Claude: Extended thinking, tool use
  • OpenAI GPT-4: Function calling, structured responses
  • Google Gemini: Multi-modal analysis
  • OpenRouter: Access to multiple models

State Persistence

Agent state is tracked throughout execution:
This enables:
  • Resume from interruptions: Continue scans after pauses
  • Debugging: Review full execution history
  • Analytics: Track agent performance and behavior

Next Steps

Agents

Learn about agent types and capabilities

Tools

Explore available tools and their usage

Skills

Understand the skills system

Vulnerability Detection

See how Strix finds security issues