Security

Security best practices Use when this capability is needed.

tomevault-io Updated

File contents

Always check for and prevent:

  1. SQL injection - use parameterized queries only
  2. XSS - escape all user input in HTML output
  3. CSRF - use tokens for state-changing requests
  4. Hardcoded secrets - use environment variables
  5. Insecure dependencies - check npm audit / pip audit
  6. Missing input validation - validate all user inputs
  7. Improper error exposure - don't leak stack traces
  8. Missing authentication - verify auth on all protected routes
  9. Broken access control - check authorization for every action
  10. Sensitive data exposure - encrypt at rest and in transit

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/agricidaniel--claude-code-essentials-vs-code--security commit af387d92eb

Frequently asked questions

npx skillmds@latest add tomevault-io/security-25