Django based application with Celery backend task management.
VM-Orchestrator is a tool for facilitating project creation and management.
The idea is to automate all the steps we follow when a new project arrives, this includes:
- Scope recongnition based on a domain / ip
- Alerts when scope definition finishes, as well as notifications when new assets are found
- Self-monitoring projects. Scan periodicity can be set up which will allow scans to run whenever the user wants.
- Baseline vulnerability scans.
- Alerts when new vulnerabilities are found (Redmine, slack, etc).
- Dashboards that show the state of the project and assets
Installation will begin with a plain Debian machine.
We first install git
sudo apt-get install git
Clone repository with --recurse-submodules
. We will be using other repositories in this project.
git clone https://github.com/badBounty/VM-Orchestrator.git --recurse-submodule
Now python
sudo apt-get install python3-pip
We like pipenv here but you can install with pip3 install
sudo pip3 install pipenv
We are going to install requirements for our project and subprojects
pipenv install -r requirements.txt
pipenv install -r VM_Orchestrator/VM_OrchestratorApp/src/scanning/tools/CORScanner/requirements.txt
pipenv install -r VM_Orchestrator/VM_OrchestratorApp/src/utils/tools/LinkFinder/requirements.txt
sudo apt-get install dnsutils
sudo apt-get install nmap
We will now install our rabbitMQ server (Our broker)
sudo apt-get install rabbitmq-server
sudo rabbitmqctl add_user myuser pass
sudo rabbitmqctl set_user_tags myuser mytag
sudo rabbitmqctl add_vhost myvhost
sudo rabbitmqctl set_permissions -p myvhost myuser ".*" ".*" ".*"
We can start the server with
sudo rabbitmq-server