Ten standing security checks the checklist does not have #4
Labels
No Label
P0
P1
P2
release-blocker
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: null/Project-Template#4
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
docs/security/SECURITY_CHECKLIST.md's Standing checks list has four entries. Grep across docs/** finds zero mentions of security headers, token storage, account enumeration, audit trail, test environment, rate limiting or payment reversal.
Add, each stating what it proves, in the file's existing style: logged-out callers refused on every authenticated endpoint; objects and list endpoints scoped to the caller; privileged routes checking a role rather than a session; no secrets in the built bundle; session tokens in HttpOnly cookies rather than localStorage; authentication responses that do not reveal whether an account exists; a CSP and frame policy with nothing on plain HTTP; a record of who changed what and when; a non-production environment to test against; and (precautionary) rate limits on authentication and on anything costing money per request, with spend alerting somewhere a person reads.
The audit-trail and test-environment rows are a different bar from the rest: they are what a compliance review asks for rather than what a launch needs. Given Privacy LLC, that is the bar worth building for.
Verify: docs/security/SECURITY_CHECKLIST.md's Standing checks list contains all ten, each naming what it proves, with precautionary entries marked.