Authentication & Sessions
- Sign-in is handled by Clerk, a dedicated authentication provider. We never see or store your password.
- Sessions use HttpOnly, Secure cookies that JavaScript cannot read, protected against XSS.
- OAuth authorization flows use a state parameter signed with a server-side secret, so login requests cannot be forged.
- Inbound webhooks (Clerk, cron, IndexNow) require signature verification or a shared secret. Unsigned requests are rejected with 401.