Skip to content
licitrasimone edited this page Apr 17, 2026 · 1 revision

Installation

PyPI (recommended)

pip install aix-framework

Optional dependencies

# Embedding-based model fingerprinting (sentence-transformers)
pip install aix-framework[ml]

# Development tools (pytest, black, ruff, mypy)
pip install aix-framework[dev]

From source

git clone https://github.com/licitrasimone/aix-framework.git
cd aix-framework

# Quick install
chmod +x install.sh && ./install.sh

# Or manually
pip install -e .
pip install -e ".[dev]"

Verify

aix --version
aix --help

Requirements

  • Python 3.9+
  • Works on Linux, macOS, Windows

Key dependencies

Package Purpose
httpx[http2] Async HTTP client with HTTP/2 support
websockets WebSocket connector
rich Terminal UI, progress bars, tables
click CLI framework
pyyaml Attack chain playbook parsing

Proxy setup

AIX respects standard proxy environment variables and the --proxy flag:

aix inject https://target.com -k sk-xxx --proxy 127.0.0.1:8080

SSL verification is disabled by default — compatible with Burp Suite and ZAP intercept proxies.

Clone this wiki locally