Finding Common Security Issues in Python Code with Bandit
Posted by Aly Sivji in Quick Hits
Bandit is a static analysis tool that can find common security issues in Python code. The command line utility scans .py
files and generates a report detailing issues by confidence and severity.
I ran Bandit on a few of my repositories and found I was using md5
to hash passwords …