Threat Bus
The missing tool to interconnect open-source security applications.
Getting Started — Contributing Guidelines — Writing Plugins — License — Documentation
Chat with us on Matrix.
Key Features
-
Connect Open-Source Security Tools: Threat Bus is a pub-sub broker for threat intelligence data. With Threat Bus you can seamlessly integrate MISP intelligence with the Zeek intel framework or report sightings from IDS deployments to some data base.
-
Plugin-based Architecture: The project is plugin-based and can be extended easily. We welcome contributions to adopt new open source tools! So far, there exist plugins for VAST, MISP, Zeek, and CIFv3.
-
Snapshotting: The snapshot feature allows subscribers to directly request threat intelligence data for a certain time range from other applications. Threat Bus handles the point-to-point communication of all involved apps.
Getting Started
The config.yaml.example file provides a working configuration for Threat Bus
with all existing application plugins enabled together with the RabbitMQ
backbone.
The following example shows how to connect MISP, Zeek via Threat Bus. There are more integrations available, so make sure to check out all Threat Bus projects on PyPI.
Start Threat Bus
mv config.yaml.example config.yaml # rename example config file
venv/bin/threatbus -c config.yaml
Start Zeek as Threat Bus app
zeek -i <INTERFACE> -C ./apps/zeek/threatbus.zeek
Start Zeek and request a snapshot
zeek -i <INTERFACE> -C ./apps/zeek/threatbus.zeek -- "Tenzir::snapshot_intel=30 days"
Threat Bus also ships as pre-built Docker image and is available on Docker Hub.
Use the Threat Bus Docker container
docker run tenzir/threatbus:latest --help
Start Threat Bus container with a custom config file
docker run -p 47661:47661 -v $PWD/my-custom-config.yaml:/opt/tenzir/threatbus/my-custom-config.yaml tenzir/threatbus:latest -c my-custom-config.yaml
Installation
Install threatbus and all plugins that you require. Optionally, use a virtual
environment.
virtualenv venv # optional
source venv/bin/activate # optional
pip install threatbus
pip install threatbus-inmem
pip install threatbus-misp
pip install threatbus-zeek
pip install threatbus-rabbitmq
pip install threatbus-<plugin_name>
Testing
Use the Makefile to run unit and integration tests.
make unit-tests
make integration-tests
The integration tests require a local Zeek installation.
Plugin Development
Setup a virtual environment and install threatbus and some plugins with the
in development mode:
virtualenv venv
source venv/bin/activate
make dev-mode
Configuration & Extension
A plugin must define a setup.py. Whenever a plugin is installed, you have to
add a corresponding configuration section to threatbus' config.yaml. That
section has to be named after the name in the entrypoint declaration of the
plugin's setup.py file.
Please adhere to the plugin naming conventions
and always prefix your plugin name with threatbus-.
Plugins can either be apps or backbones. Application plugins (apps) add new
functionality to threatbus and allow communication to a
threat-intelligence-enabled app (e.g., Zeek or Suricata). Backbone plugins add a
new storage and distribution backend to threatbus (e.g., in-memory or Kafka).
Example:
- plugin folder structure:
plugins ├── apps | └── threatbus-zeek │ ├── setup.py | └── threatbus_zeek.py └── backbones └── threatbus-inmem ├── setup.py └── threatbus_inmem.py
setup.pyfrom setuptools import setup setup( name="threatbus-myapp", install_requires="threatbus", entry_points={"threatbus.app": ["myapp = threatbus_myapp"]}, py_modules=["threatbus_myapp"], )
config.yamlentry forthreatbus... plugins: apps: myapp: ...
Threat Bus API
Plugins specifications are available in threatbus/appspecs.py and
threatbus/backbonespecs.py, respectively. For any plugin, you should at least
implement the run function.
App plugins are provided two callback functions to use for subscription management. Internally, Threat Bus will propagate subscription requests to all installed backbone plugins.
The subscription callback allows applications to request an optinal snapshot
time delta. Threat Bus will forward snapshot requests to all those apps that
have implemented the snapshot feature (see threatbus/appspecs.py).
License
Threat Bus comes with a 3-clause BSD license.
Release files for threatbus 2020.11.26
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| threatbus-2020.11.26.tar.gz | 15.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| threatbus-2020.11.26-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 30.3 kB
Release files / threatbus-2020.11.26.tar.gz
| Download URL | threatbus-2020.11.26.tar.gz |
|---|---|
| Size | 15.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
922b7f9207124a55525468da41761d1441c8c5068fb2b7ab6b55d536ee22527d
|
|
BLAKE2b-256 checksum How to use checksums |
f7a6689f707acb1bf5dceea0db354d54748fcc8f43ec8f7d3c5649a15ee60cff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6
|
Release files / threatbus-2020.11.26-py3-none-any.whl
| Download URL | threatbus-2020.11.26-py3-none-any.whl |
|---|---|
| Size | 14.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
327ecfd4be339c45b801e19b06b7e10e7c8f52e19c3e1043eef0335026da790b
|
|
BLAKE2b-256 checksum How to use checksums |
1333b5a9fc248ebf2a7f91a95fdfdef7590d23a9a5511d35389525f97ef30368
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6
|