Wildeditor is pre-release software. No released version line currently carries a formal security-support guarantee; security fixes are made on the active development branch as maintainers are able.
Do not open a public issue or discussion for a suspected vulnerability, exposed credential, or exploit.
Use the repository's private vulnerability-reporting flow at GitHub Security Advisories when it is available. If GitHub does not offer that form, contact a repository maintainer privately through the LuminariMUD organization and ask for a secure reporting channel. Do not include exploit details in a public message.
Include, where possible:
- the affected commit, service, route, and configuration;
- reproduction steps using non-production data;
- expected and observed behavior;
- practical impact and required attacker access;
- a minimal proof of concept with secrets removed;
- whether you believe a credential or production system is already exposed.
Maintainers will assess the report and coordinate remediation and disclosure according to severity and availability. This project does not promise a fixed response or remediation time and does not currently operate a bug-bounty program.
- Use accounts, data, and infrastructure you own or have explicit permission to test.
- Stop if testing could expose another person's data, degrade availability, or mutate production state.
- Do not use social engineering, denial of service, persistence, or destructive techniques.
- Retain only the minimum evidence needed to describe the issue and transmit it privately.
Deployment owners must review configuration and architecture before exposing the system to a network. In particular:
- the browser sends self-hosted Auth user tokens to backend and chat; it must never receive a backend, MCP, database, signing, or administrative secret;
- backend and chat validate exact-issuer asymmetric JWTs and protected roles; chat additionally enforces token-subject session ownership;
- MCP operations use an independent
X-API-Key, while MCP-to-backend calls use a distinct server-only Bearer service principal; - a Vite
VITE_*value is compiled into the browser bundle and must always be treated as public configuration; - several legacy root probes contain credential-like literal defaults that must be treated as exposed and removed before reuse;
- backend validation errors omit rejected input values from logs and responses;
- development authentication bypasses must never be enabled in public environments;
- CORS, TLS termination, rate limiting, secret storage, database least privilege, monitoring, and backups are deployment responsibilities unless the active configuration proves otherwise.
The architectural decision is recorded in ADR-003; production controls and recovery procedures are in the self-hosted Auth runbook.
- Keep real values in an approved secret manager or deployment platform, not Git, Markdown, command histories, URLs, screenshots, fixtures, or logs.
- Use distinct, randomly generated credentials per environment and trust boundary.
- Rotate any credential that may have appeared in repository history, archived documentation, logs, or a browser bundle; deleting or redacting the current file does not remove Git history or deployed artifacts.
- Treat frontend environment variables as public configuration.
- Review root diagnostic scripts before use because some target external services and accept privileged credentials.
For non-security defects, use the repository's public issue tracker.