Skip to main content

Ares - operator-supervised security assessment runtime

Ares

Ares is an operator-supervised security assessment runtime for authorized engagements. It gives a model room to reason and request actions while keeping scope, risk, approvals, routing, persistence, evidence, and reporting under deterministic operator control.

Ares is designed for security practitioners who need more than a chat wrapper but do not want an unattended agent making arbitrary offensive decisions.

Authorized testing only. Do not use Ares against systems you do not own or do not have explicit permission to assess.

Product identity

  • Product: Ares
  • Python distribution: bluedot-ares
  • Python import: ares
  • Primary command: ares
  • Current source version: 1.1.1
  • License: MIT
  • Supported Python: 3.11, 3.12, and 3.13

The PyPI project named ares belongs to an unrelated package. Do not install it expecting this project. Install bluedot-ares in an isolated environment.

What Ares provides

Ares combines four execution paths behind the same policy and evidence model:

Path Purpose Model authority
ares run Supervised model and tool loop for a bounded task May request registered tools, subject to dispatcher policy
Deterministic missions Repeatable source, dependency, secret, and report workflows No model-authored task graph
Governed autonomous reconnaissance Evidence-driven attack-surface coverage May select only exact Ares-issued coverage IDs
Authorized operator validation Explicit advanced validation from an operator-supplied graph Model cannot select advanced tasks

The runtime includes:

  • OpenAI-compatible, Anthropic, and Gemini model adapters
  • provider fallback chains and OAuth helpers
  • a central tool registry with availability, schema, risk, and toolset metadata
  • dispatcher-owned scope, rules of engagement, risk, approval, duplicate, route, and timeout enforcement
  • governed autonomous reconnaissance with a persistent attack-surface graph and coverage ledger
  • a finding lifecycle from observation through corroboration, safe validation, and reporting
  • evidence-bound, single-use approval receipts for advanced operator validation
  • SQLite state for sessions, messages, tool calls, hosts, services, missions, findings, and memory
  • GhostMCP and bounded OnionClaw integrations
  • Markdown session and mission reports
  • separate gateway, dashboard, and terminal operator surfaces

Install

The recommended end-user installation is an isolated application environment:

pipx install bluedot-ares
# or
uv tool install bluedot-ares

If the matching bluedot-ares release is not available from PyPI, install its verified wheel from the GitHub release or use the source installation path in INSTALL.md.

Verify the install:

ares --version
ares doctor
ares doctor --json

Optional provider and tool integrations remain extras:

pipx install 'bluedot-ares[anthropic]'
pipx install 'bluedot-ares[gemini]'
pipx install 'bluedot-ares[ghostmcp]'

See INSTALL.md for upgrades, source installs, Windows notes, and migration from the older GitHub wheel.

Five-minute start

Run the guided setup:

ares onboard

For a local OpenAI-compatible model server:

export LLM_PROVIDER="local"
export LLM_MODEL="local-model"
export OPENAI_BASE_URL="http://127.0.0.1:1234/v1"
export OPENAI_API_KEY="lm-studio"

Check the selected route without executing tools:

ares route \
  --target 127.0.0.1 \
  --prompt "Enumerate the authorized loopback target and stop after useful initial findings."

Run a bounded loopback assessment:

ares run \
  --target 127.0.0.1 \
  --prompt "Enumerate the authorized loopback target and stop after useful initial findings." \
  --max-iterations 20

Higher-risk actions are denied by default. --approve-dangerous satisfies only the dispatcher approval gate. Scope, risk, route, and tool policy still run before execution.

The full walkthrough is in docs/quickstart.md.

Governed autonomous reconnaissance

The autonomous-recon mission profile allows a model to prioritize reconnaissance work without giving it arbitrary tool or target construction authority.

ares mission run \
  --profile autonomous-recon \
  --target 192.0.2.10 \
  --allowed-host 192.0.2.10 \
  --max-risk active \
  --ports 22,80,443,8000 \
  --max-tasks 16 \
  --autonomous \
  --out autonomous-recon.md

Ares persists each attack-surface node, relationship, coverage item, planner decision, tool result, recovery attempt, finding hypothesis, and limitation. The planner can choose only from exact coverage IDs compiled by Ares into fixed tools, targets, and arguments.

This path performs passive and safe-active reconnaissance. It does not perform exploitation, authentication attempts, persistence, or arbitrary command execution.

Authorized operator validation

Advanced validation uses an explicit operator-supplied task graph. It requires same-mission evidence, a GhostMCP engagement policy where applicable, an immutable approval receipt bound to the exact task digest, and an out-of-model approval.

ares mission run \
  --profile authorized-operator-validation \
  --mission-id engagement-2026-001 \
  --target 192.0.2.10 \
  --allowed-host 192.0.2.10 \
  --max-risk post-exploitation \
  --initial-tasks tasks.json \
  --ghostmcp-policy engagement-policy.json \
  --approval-receipts approval-receipts.json \
  --approve-high-risk

The model never selects advanced-role tasks. Failed, empty, cross-target, cross-mission, expired, replayed, or contract-mismatched evidence and receipts fail closed.

Operator surfaces

Gateway

The gateway is the backend API and control plane for authentication, pairing, allowlists, run submission, run status, event polling, and audit logging.

ares gateway-config --mode loopback
ares gateway

Remote exposure should use bearer authentication and a CIDR allowlist:

ares gateway-config \
  --mode exposed \
  --auth-enabled \
  --allow-cidr 203.0.113.0/24

Dashboard

The dashboard is the browser frontend backed by the gateway:

ares dashboard
# or
ares-dashboard

For a remote server:

ares dashboard --mode lan --no-open

Terminal UI

ares tui
# or
ares-tui

The gateway, dashboard, and TUI are separate product surfaces even when the gateway serves bundled dashboard assets.

Diagnostics and support

Machine-readable diagnostics:

ares doctor --json

Create a redacted support bundle that excludes credentials and engagement evidence:

ares support-bundle --out ares-support-bundle.json

Read SUPPORT.md before opening an issue. Installation and runtime failures are covered in docs/troubleshooting.md.

Offline Evaluation Lab

Run the bundled deterministic regression fixtures without a model, network request, or engagement data:

ares evaluate
ares evaluate --out ares-evaluation.json

The result measures exact agreement with the versioned fixtures for mission and task outcomes, scope and policy decisions, and finding-validation readiness. It does not measure model quality, live-target behavior, vulnerability discovery, or broad security efficacy. See docs/evaluation-lab.md for metric semantics and limitations.

Release verification

Official releases include:

  • wheel and source distribution
  • SHA256SUMS
  • CycloneDX SBOM
  • release metadata
  • GitHub build provenance and SBOM attestations

Verification commands are documented in docs/verifying-releases.md.

Architecture

The model does not call tools directly. Ares converts a model request or mission decision into a dispatcher request, validates it against policy and authorization state, records the result, indexes evidence, and then renders operator-visible state and reports.

See docs/architecture.md and docs/v1-support-boundary.md for the supported contract.

Development

git clone https://github.com/BlueDot-IT/Ares.git
cd Ares
git submodule update --init --recursive

python -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e '.[dev,anthropic,gemini,ghostmcp]' -e vendor/ghostmcp

python -m pytest tests -q
python -m compileall src/ares
python -m build
python -m twine check dist/*

Contribution requirements are in CONTRIBUTING.md.

Documentation

License

Ares is released under the MIT License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bluedot_ares-1.1.1.tar.gz (264.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bluedot_ares-1.1.1-py3-none-any.whl (206.7 kB view details)

Uploaded Python 3

File details

Details for the file bluedot_ares-1.1.1.tar.gz.

File metadata

  • Download URL: bluedot_ares-1.1.1.tar.gz
  • Upload date:
  • Size: 264.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bluedot_ares-1.1.1.tar.gz
Algorithm Hash digest
SHA256 5bad1e1c5fc79c05c92becaa9f53d3278c502485b51382a7e57082dc84c09038
MD5 1cac8c123f8a11966a1a84153d40f69b
BLAKE2b-256 517c4965517a7d0715aa401989324762a8b2e1131dcb2f3eabd4bafdc1bd0696

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluedot_ares-1.1.1.tar.gz:

Publisher: release.yml on BlueDot-IT/Ares

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bluedot_ares-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: bluedot_ares-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 206.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bluedot_ares-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 89ee6a554432d478c769766ac45075a804143cf8aca71467a2aaefaf592c8b1a
MD5 fbd4a8623ddfececaac125ae0f76ada6
BLAKE2b-256 05e21a2f370ed7ccfff6a232bb02ccd39c36274bd748217c0a7c63c1ac09d103

See more details on using hashes here.

Provenance

The following attestation bundles were made for bluedot_ares-1.1.1-py3-none-any.whl:

Publisher: release.yml on BlueDot-IT/Ares

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.1.1 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page