Add security headers, CORS, rate limiting, and API authentication#5
Open
Add security headers, CORS, rate limiting, and API authentication#5
Conversation
- Add helmet middleware for security headers (CSP, X-Frame-Options, etc.) - Add express-rate-limit (100 req/15min) on /api/ endpoints - Lock CORS to ALLOWED_ORIGINS env var; only same-origin allowed by default - Add Bearer token auth middleware on /api/chat and /api/clear (via API_SECRET_KEY env) - Update .env.example with new config options - Add tests for all security features (100% coverage maintained) https://claude.ai/code/session_01757fV1nPvDZ7rviGSuYwp7
|
🚅 Deployed to the padtask-pr-5 environment in padtask
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR enhances the security posture of the PadTask server by implementing multiple security layers: HTTP security headers via Helmet, configurable CORS restrictions, rate limiting on API endpoints, and optional Bearer token authentication.
Key Changes
ALLOWED_ORIGINSenvironment variable; defaults to same-origin only/api/endpoints (100 requests per 15 minutes per IP)API_SECRET_KEYenvironment variable; when configured, all API requests requireAuthorization: Bearer <token>header.env.examplewith new configuration optionsImplementation Details
/api/chatand/api/clearendpoints and gracefully skips validation whenAPI_SECRET_KEYis not sethttps://claude.ai/code/session_01757fV1nPvDZ7rviGSuYwp7