Please do not open a public issue for a security vulnerability. Instead, use GitHub's private vulnerability reporting (Security → Report a vulnerability). I'll acknowledge receipt within a few days and keep you updated on the fix.
CodeJury runs LLM agents that clone repositories and execute code and tests from them. That is inherent to what it does, and it shapes how it should be deployed:
- Treat any instance as sensitive. It holds provider API keys and can push commits
and open pull requests. Do not expose it to an untrusted network.
run.shbinds to127.0.0.1by default; only bind0.0.0.0behind a trusted network or a proxy that handles TLS and access control. - Only run it against repositories you trust, unless you sandbox execution. The QA/Dev stages run tests from the target repo. The Docker image runs as a non-root user, but that is not a substitute for a real sandbox; containerized per-repo test execution is on the roadmap.
- Demo mode is on by default so the PR stage is a dry-run until you deliberately
opt in and authenticate
gh.
- The first-boot
adminpassword is generated randomly (or taken fromADMIN_PASSWORD) — there is no guessable default. - API keys saved from the Settings screen are encrypted at rest with Fernet, keyed by
CODEJURY_SECRET_KEYor a generated.secret.keyfile (chmod 600). .env,.secret.key, and*.dbare gitignored. Never commit them. If you ever do, rotate the exposed credentials immediately — removing them in a later commit is not enough.
This is an actively developed project; fixes land on main. Please report against the
latest main.