Getting Started
Just pip install bandit
and go to the folder which contains the project's directory then run:
bandit -r <projectname> -f csv -o outputfile
-f
stands for file type. Here I use csv as and example.
-r
stands for recursive. Bandit will recursively search inside the whole project and check for the invulnerability of all Python files.
-o
stands for output file name.
Last updated