Files
cursor__plugins/code-review/rules/security-review-checklist.mdc
ericzakariasson 97128c02db Apply writing guide: sentence-case titles, remove em-dashes and semicolons
- Convert all H1 headings to sentence case across skills, rules, agents,
  commands, and READMEs (~65 headings)
- Replace em-dashes with colons in plugin.json descriptions and README
  taglines to match marketplace.json convention
- Replace semicolons with periods and restructure sentences across skills,
  rules, agents, and READMEs (~19 instances)

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-10 18:11:09 -08:00

13 lines
469 B
Plaintext

---
alwaysApply: true
---
# Security review checklist
1. Validate and sanitize untrusted input at trust boundaries.
2. Confirm authorization checks exist for sensitive actions and resource access.
3. Check for unsafe dynamic execution patterns (shell, SQL, template rendering).
4. Ensure secrets are never hardcoded or logged.
5. Verify security-relevant errors do not leak sensitive internals.
6. Prefer safe defaults and fail-closed behavior for permission checks.