Skip to content

Security: dynamiq-ai/arcllm

Security

SECURITY.md

Security Policy

Supported Versions

We release patches for security vulnerabilities in the following versions:

Version Supported
0.1.x

Reporting a Vulnerability

Please do not report security vulnerabilities through public GitHub issues.

Instead, please report security vulnerabilities by emailing the maintainers directly or by using GitHub's private vulnerability reporting feature.

When reporting a vulnerability, please include:

  1. Description: A clear description of the vulnerability
  2. Impact: The potential security impact
  3. Steps to Reproduce: Detailed steps to reproduce the issue
  4. Affected Versions: Which versions are affected
  5. Suggested Fix: If you have a fix in mind, please share it

Response Timeline

  • Initial Response: Within 48 hours
  • Status Update: Within 7 days
  • Resolution: Depends on complexity, typically within 30 days

Security Best Practices

When using arcllm:

API Key Management

  • Never commit API keys to version control
  • Use environment variables for API keys:
    export OPENAI_API_KEY="sk-..."
    export ANTHROPIC_API_KEY="sk-ant-..."
  • Use secrets management in CI/CD (GitHub Secrets, etc.)
  • Rotate API keys regularly

Input Validation

  • Validate and sanitize user inputs before passing to LLM APIs
  • Be cautious with user-provided content in system prompts
  • Consider content filtering for production applications

Network Security

  • arcllm uses HTTPS for all provider communications
  • TLS certificate verification is enabled by default
  • Consider network-level controls for production deployments

Logging

  • arcllm does not log API keys or sensitive content by default
  • Be careful when enabling debug logging in production
  • Do not log full request/response bodies in production

Dependency Security

arcllm ships four curated runtime dependencieshttpx[http2], aiohttp, msgspec, orjson — all chosen for their maturity and small attack surface. We don't accept new runtime deps without an approved issue and review.

For dependency hygiene we:

  • Pin minimum versions in pyproject.toml.
  • Regularly bump to patched releases.
  • Require a maintainer review on any dependency change in a PR.

Security Features

Built-in Protections

  1. TLS/SSL: All HTTPS connections use system CA certificates with a minimum of TLS 1.2.
  2. Tightly curated dependency tree: 4 runtime deps, audited.
  3. Input sanitization: request bodies serialised through orjson.
  4. Connection pooling: secure connection reuse with proper cleanup.

What We Don't Do

  • We don't store or cache API keys beyond the request lifecycle
  • We don't send telemetry or analytics
  • We don't make requests to any domains other than the configured provider endpoints

Acknowledgments

We appreciate security researchers who responsibly disclose vulnerabilities. Contributors who report valid security issues will be acknowledged (with permission) in release notes.

Contact

For security-related questions that don't involve vulnerabilities, please open a GitHub issue.

There aren't any published security advisories