Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Security: Khamel83/argus

Security

SECURITY.md

Security Policy

Supported Versions

Only the latest release is actively maintained. Check PyPI for the current version.

Reporting a Vulnerability

Please report security issues privately — do not open a public GitHub issue.

Preferred: open a private security advisory on this repository. That keeps the report visible only to the maintainers until a fix is ready.

If you cannot use GitHub Security Advisories, email the maintainer at [email protected] with a description, reproduction steps, and any proposed mitigation.

Expect an initial acknowledgement within a few days. We aim to resolve confirmed vulnerabilities and publish a fix before disclosing details.

What Argus Handles

  • SSRF protection: All URL extraction blocks private/internal IP ranges (10.x, 172.16-31.x, 192.168.x, 127.x, ::1)
  • Domain rate limiting: 10 requests/minute per domain to prevent abuse
  • Remote auth: non-local HTTP callers and remote MCP transports must authenticate with ARGUS_API_KEY
  • Admin separation: privileged HTTP routes live under /api/admin/* and require the admin key
  • Residential worker auth: residential extraction requires a shared bearer secret and caller allowlist
  • No user data storage: Search queries and sessions are stored locally by the user — nothing is sent to Argus servers
  • API keys: Keys are read from environment variables only — never logged, transmitted, or stored outside the user's config

Deployment Defaults

  • Prefer loopback binds (127.0.0.1) unless you are intentionally exposing Argus to trusted peers.
  • If you publish Argus on a network, set ARGUS_API_KEY first and use ARGUS_ADMIN_API_KEY for privileged routes where possible.
  • Treat remote MCP as an authenticated interface. Local stdio is the safest default.
  • Treat residential extraction as an internal worker on Tailscale/private IP space, not a general-purpose HTTP fetch service.

Dependencies

Argus relies on httpx for outbound HTTP requests. Keep dependencies updated:

pip install --upgrade argus-search

Dependabot is enabled on this repository for automated dependency tracking.

There aren't any published security advisories