Please report security vulnerabilities privately via GitHub Security Advisories (the repository's Security tab → Report a vulnerability) rather than opening a public issue. We aim to acknowledge reports within a few business days.
Aria Conductor is an early-stage (v0.1.x) project. The current release makes several security trade-offs for ease of local evaluation. Do not expose a default deployment to untrusted networks or the public internet.
- No built-in authentication/authorization. All
/api/v1/**endpoints are currently unauthenticated. Place the service behind your own gateway/reverse proxy with authentication, or keep it on a trusted local network. By default the Docker services bind to127.0.0.1only. - Shell execution tool is disabled by default. The
shell_exectool is gated behindtools.shell.enabled(defaultfalse). Enabling it lets agent/LLM output run shell commands inside the container — enable only in trusted, sandboxed setups. While disabled, only whitelisted first-token commands run (tools.shell.whitelist/TOOLS_SHELL_WHITELIST) and shell metacharacters are refused. Since #65 the default whitelist includescurl, so agents can call REST APIs (e.g. create a pull request).curlis refused forfile://URLs and for local/internal targets (loopback,0.0.0.0, cloud metadata) so it cannot double as a local-file reader or an SSRF probe, and everyshell_execcall still passes the HIGH-risk approval gate.docker-composenow honoursTOOLS_SHELL_WHITELIST(it was previously hardcoded and silently ignored) — re-check your value after upgrading. To restore the previous set:TOOLS_SHELL_WHITELIST=git,ls,cat,find,echo,mvn,npm,pnpm. - LLM provider API keys are stored unencrypted at rest in the database. Protect your database accordingly; encryption at rest is on the roadmap.
- Change all default credentials.
.env.exampleships placeholder DB passwords (change-me*). Set strong values in.envbefore any non-local use. - CORS defaults to a localhost allow-list (
app.cors.allowed-origins) and does not allow credentials. Configure it for your deployment. - H2 console and dev SQL endpoints are restricted to the
h2dev profile and are not loaded in the production (mariadb) profile.
See the issues labelled security for hardening work in progress.