How To Install ivre on Kali Linux
Introduction
In this tutorial we learn how to install ivre on Kali Linux.
What is ivre
ivre is:
This package contains IVRE (Instrument de veille sur les r?seaux ext?rieurs) or DRUNK (Dynamic Recon of UNKnown networks), a network recon framework, including tools for passive recon (flow analytics relying on Bro, Argus, Nfdump, fingerprint analytics based on Bro and p0f and active recon.
IVRE uses Nmap to run scans, can use ZMap as a pre-scanner; IVRE can also import XML output from Nmap and Masscan.
There are three methods to install ivre on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install ivre Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ivre using apt-get by running the following command:
sudo apt-get -y install ivreInstall ivre Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ivre using apt by running the following command:
sudo apt -y install ivreInstall ivre Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install ivre using aptitude by running the following command:
sudo aptitude -y install ivreHow To Uninstall ivre on Kali Linux
To uninstall only the ivre package we can use the following command:
sudo apt-get remove ivreUninstall ivre And Its Dependencies
To uninstall ivre and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ivreRemove ivre Configurations and Data
To remove ivre configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ivreRemove ivre configuration, data, and all of its dependencies
We can use the following command to remove ivre configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ivreDependencies
ivre have the following dependencies:
- python3-bottle
- python3-cryptography
- python3-dbus
- python3-future
- python3-matplotlib
- python3-mysqldb
- python3-openssl
- python3-pil
- python3-psycopg2
- python3-pymongo
- python3-sqlalchemy
- python3-tinydb
- python3
References
Summary
In this tutorial we learn how to install ivre package on Kali Linux using different package management tools: apt, apt-get and aptitude.