Skip to main content

Pybuilder plugin for bandit security linter

Project description

pybuilder-bandit

GitHub Workflow Status coverage complexity PyPI version python

A pybuilder plugin that analyzes your project for common security issues using bandit. Bandit is a security linter for Python code, for more information refer to the bandit pypi page.

To add this plugin into your pybuilder project, add the following line near the top of your build.py:

use_plugin('pypi:pybuilder_bandit')

NOTE if you are using Pybuilder version v0.11.x, then specify the following version of the plugin:

use_plugin('pypi:pybuilder_bandit', '~=0.1.3')

Pybuilder bandit properties

The pybuilder task pyb bandit will use bandit to scan your project to find common security issues, verbose mode will display to the screen any issues found. The following plugin properties are available to further configure the scan.

Name Type Default Value Description
bandit_break_build bool False Fail build if scan detects any issues
bandit_confidence_level str LOW Report only issues of a given confidence level or higher: LOW, MEDIUM, HIGH
bandit_severity_level str LOW report only issues of a given severity level or higher: LOW, MEDIUM, HIGH
bandit_skip_ids str None comma-separated list of test IDs to skip
bandit_include_testsources bool False include scanning of project test sources
bandit_include_scripts bool False include scanning of project scripts

The plugin properties are set using project.set_property, the following is an example of how to set the properties:

project.set_property('bandit_break_build', True)
project.set_property('bandit_confidence_level', 'LOW')
project.set_property('bandit_severity_level', 'MEDIUM')
project.set_property('bandit_skip_ids', 'B110,B315')
project.set_property('bandit_include_testsources', True)
project.set_property('bandit_include_scripts', True)

Development

Clone the repository and ensure the latest version of Docker is installed on your development server.

Build the Docker image:

docker image build \
-t pybbandit:latest .

Run the Docker container:

docker container run \
--rm \
-it \
-v $PWD:/code \
pybbandit:latest \
bash

Execute the build:

pyb -X

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybuilder-bandit-0.3.2.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

pybuilder_bandit-0.3.2-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page