Skip to content
This repository was archived by the owner on Mar 11, 2021. It is now read-only.

Prerequisites

Michele "O-Zone edited this page Sep 12, 2017 · 4 revisions

Nidan relies on some tools and libraries on your system.

Web controller needs a working Apache2 with PHP and MySQL. To improve security, i suggest to implement SSL for Nidan virtual hosts.

  • PHP 5.x or 7.x
  • Apache 2.4.x
  • MySQL 5.x or MariaDB 10.x

On Debian/Ubuntu systems, should be enought to install:

sudo apt install apache2 php7 mariadb-server

and i suggest to install also phpmyadmin to manage database, with:

sudo apt install phpmyadmin

Agents, written in Python, needs:

  • NMap 6.x
  • Python-nmap
  • Python-schedule
  • Python-jsonpickle
  • Python-requests

To install all required libraries and modules:

sudo apt install nmap python-pip 
sudo pip install python-nmap schedule jsonpickle requests

Should be enought to run Nidan agents :-)

Clone this wiki locally