Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.35 KB

File metadata and controls

34 lines (24 loc) · 1.35 KB

Security Policy

Supported Versions

Ceres is currently in early development (pre-v1.0). Security updates will be provided for the latest development version.

Version Supported
main

Reporting a Vulnerability

If you discover a security vulnerability in Ceres, please report it privately:

  1. Do not open a public issue
  2. Email the maintainers or use GitHub's private vulnerability reporting
  3. Include:
    • Description of the vulnerability
    • Steps to reproduce
    • Potential impact
    • Suggested fix (if any)

We will respond within 48 hours and work with you to address the issue.

Security Considerations

When using Ceres:

  • API Keys: Never commit API keys or database credentials to version control
  • Admin Endpoints: Protect harvest and admin API endpoints with a strong CERES_ADMIN_TOKEN (Bearer token auth)
  • CORS: Keep CORS_ALLOWED_ORIGINS=* for local development only; production deployments should list explicit trusted origins
  • Database: Use strong passwords for PostgreSQL and restrict network access
  • Input Validation: Be cautious when harvesting from untrusted data portals
  • Dependencies: Keep Rust dependencies updated with cargo update; run cargo deny check for audits