Skip to main content
Jeston applies security headers and protects the request path with bounded input. The default body limit is 1 MiB, and oversized payloads receive HTTP 413. The default request timeout is two minutes.

SSRF protection

Use assertSafeUrl before making server-side requests to user-controlled or tenant-controlled destinations. HTTPS is the default allowed protocol, private IPv4 and IPv6 ranges are blocked by default, and production code should additionally use an explicit host allowlist.
Combine URL validation with fetchWithPolicy to enforce upstream timeouts, retry budgets, and response-size limits.

Production requirements

Use HTTPS, secret management, least-privilege database accounts, dependency updates, secure cookies, CSRF protection for cookie-based mutations, authorization checks, audit logging for sensitive actions, and backups. Do not log passwords, session tokens, authorization headers, payment data, or personal data. The structured logger masks known sensitive keys, but application-specific data must still be reviewed.

Reporting vulnerabilities

Do not open a public issue for a security vulnerability. Follow the private reporting process in SECURITY.md. Include the affected version, impact, reproduction steps, and a minimal proof of concept without real credentials.
Jeston provides security mechanisms; it cannot make an application secure automatically. Review the complete data flow, dependencies, deployment, and authorization model.
Last modified on September 10, 2026