NIST 800-30 Risk Management for Netbox
Project description
Netbox Nbrisk
Netbox Plugin inspired in NIST 800-30 Risk Management BETA VERSION
Compatibility
This plugin in compatible with NetBox 3.4.0 and later.
Installation
The plugin is available as a Python package and can be installed with pip. To ensure NBRisk plugin is automatically re-installed during future upgrades, create a file named local_requirements.txt (if not already existing) in the NetBox root directory (alongside requirements.txt) and list the NBRisk package:
For NetBox 3.4.x
# echo "NbRisk==^34.0.0" >> local_requirements.txt
For NetBox 3.5.x
# echo "NbRisk==^35.0.0" >> local_requirements.txt
Once installed, the plugin needs to be enabled in your configuration.py
# In your configuration.py
PLUGINS = ["nb_risk"]
First run
source /opt/netbox/venv/bin/activate
to enter the Python virtual environment.
Then run
cd /opt/netbox/netbox
pip install NbRisk
python3 manage.py migrate nb_risk
Configuration
To assign vulnerabilities to a specific model in NB Risk, you can add the following code to the PLUGINS_CONFIG
section of your netbox/configuration.py
file, using the additional_assets
parameter:
PLUGINS_CONFIG = {
'nb_risk': {
'additional_assets': [
'app_label.model_name',
],
},
}
Replace app_label
and model_name
based in the model you want to add. For example, if you want to assign vulnerabilities to the platform model in the dcim app, you would use 'dcim.platform' as shown in the example below:
PLUGINS_CONFIG = {
'nb_risk': {
'additional_assets': [
'dcim.platform',
],
},
}
Note that you can specify multiple models by adding them to the additional_assets
list.
Screenshots
Plugin Menu
Vulnerability View
Affected Assets
Device Vulnerabilities
Threat Event View
Risks View
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.