| Version | Supported |
|---|---|
| Latest | Yes |
If you discover a security vulnerability, please report it responsibly:
- Do not open a public issue
- Email: web8stars@gmail.com
- Include a description and steps to reproduce
We will respond within 48 hours and work with you to address the issue.
The SECRET_KEY environment variable is used for JWT token signing. In production:
- Use a strong random string (32+ characters)
- Never commit it to version control
- Rotate periodically
- MySQL credentials should be set via environment variables
- Default credentials in
.env.exampleare for development only
- Production deployments should set
SITE_BASE_URLto restrict CORS origins - The default
allow_origins=["*"]is for development convenience only
- Passwords are hashed with PBKDF2-SHA256
- JWT tokens expire after 7 days by default
- Admin privileges are granted to hardcoded email or first registered user