Show HN: Django-security-hunter – Django security scanner CLI
pypi.orgI built a lightweight CLI tool for Django and Django REST Framework projects to help detect common security issues early in development.
It focuses on problems like:
unsafe production settings exposed or misconfigured APIs missing security configurations common security risks in Django projects
The goal is to make security checks simple and part of everyday development or CI workflows.
GitHub: https://github.com/abu-rayhan-alif/djangoSecurityHunter Are you focusing more on static analysis or runtime checks?
In my experience a lot of Django issues only show up once config + environment are combined (middleware, reverse proxy headers, etc.), so curious how far you can get without execution context.