What problem does it solve? Django applications face common web vulnerabilities like SQL injection, XSS, CSRF attacks, and misconfigured production settings. This Skill provides concrete, code-level security patterns to harden Django projects against these threats. ## Core Features & Use Cases - Production Hardening: Configures secure settings including HTTPS redirects, HSTS, secure cookies, and environment-based secret management. - Authentication & Authorization: Implements custom user models, Argon2 password hashing, RBAC, and DRF permission classes like IsOwnerOrReadOnly. - Attack Prevention: Provides safe patterns for ORM queries, template escaping, CSRF tokens, file upload validation, and API rate limiting. - Use Case: Before deploying a Django app to production, use this Skill to audit your settings.py, add security headers middleware, and verify your views properly enforce object-level permissions. ## Quick Start Review my Django project for security issues and apply production-ready security settings following best practices.