TheHive WALKOFF App aims to (eventually) provide WALKOFF orchestration for receiving TheHive webhooks as well as creating cases in TheHive.
TheHive is a modern incident case management system geared for Security Operation Centers and Computer Emergency Response Teams.
WALKOFF is an OSS project made by the NSA that provides an automation framework for automating repetitive tasks.
- Clone the repo
git clone https://github.com/billmurrin/thehive-walkoff-app.git
- Copy the TheHive directory to WALKOFF/apps directory
- From the WALKOFF directory, install the package dependencies in requirements.txt
# python installDependencies -a TheHive
- Start, or restart, the WALKOFF web server
# python startServer.py
- The 'Web Hooks' action is an event that will listen for web hooks from TheHive.
- You can configure TheHive to send Case creation and update events to the App by adding the following to your application.conf (restart thehive after):
webhooks {
myLocalWebHook {
url = "http://10.0.0.30:5000/apps/TheHive/thehive_webhook"
}
}
- As of this writing. It will receive the data but not do much with it.
- You must add the 'Web Hooks' event to a workflow and start it in order for it to be available to TheHive
- Provide sample workflows.
- Additional actions for interacting with return objects
- @actions for creating cases in TheHive
- Implement tests using pytest.