The purpose of this project is to create a Threat Intelligence Network leveraging Software Defined Networking (SDN) principles in conjunction with Moving Target Defense and decoy techniques. This work also introduces a flexible management system that allows for automatic deployment, setup, and real-time monitoring of honeypots

WORK IN PROGRESS
In order to execute the project you need to install Open vSwitch, Vagrant, VirtualBox, Python3, ONOS, Docker.
Inside the main directory create three virtual environment (named: tin_services, tin_manager_server and client):
python3 -m venv <name_of_the_environment>
For all the three virtual environment, install the requirements:
cd /<name_of_the_environment>
pip install -r requirements.txt
Additionally, inside the client folder, install also the frontend requirements:
cd /client
nodeenv -p
npm install
Run the following command to pull and run the mongodb docker image:
docker pull mongo:latest
docker volume create mongodata
docker run -d -v tincan:/data/db -p 27017:27017 --name tindb -e MONGO_INITDB_ROOT_USERNAME=<user> -e MONGO_INITDB_ROOT_PASSWORD=<passwd> mongo:latest --port 27017
cd /tin_services
source bin/activate
flask --app vm_configurator.py -p 5000
cd /tin_services
source bin/activate
flask --app network_configurator.py -p 5001
cd /tin_manager_server
source bin/activate
flask --app tin_manager.py -p 5003
cd /client
source bin/activate
npm run dev