Hacker News new | ask | show | jobs
Show HN: Django-security-hunter – Django security scanner CLI (pypi.org)
1 points by aburayhanalif 77 days ago
I 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

1 comments

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.