How To Install logdata-anomaly-miner on Kali Linux
Introduction
In this tutorial we learn how to install logdata-anomaly-miner on Kali Linux.
What is logdata-anomaly-miner
logdata-anomaly-miner is:
This tool allows one to analyze log data streams and detect violations or anomalies in it. It can be run from console, as daemon with e-mail alerting, or embedded as library into own programs. It was designed to run the analysis with limited resources and lowest possible permissions to make it suitable for production server use. Analysis methods include:
- log line parsing and filtering with extended syntax and options
- detection of new data elements (IPs, user names, MAC addresses)
- statistical anomalies in log line values and frequencies
- correlation rules between log lines
The tool is suitable to operate as a sensor feeding a SIEM and distributing messages via message queues.
There are three methods to install logdata-anomaly-miner 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 logdata-anomaly-miner Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install logdata-anomaly-miner using apt-get by running the following command:
sudo apt-get -y install logdata-anomaly-minerInstall logdata-anomaly-miner Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install logdata-anomaly-miner using apt by running the following command:
sudo apt -y install logdata-anomaly-minerInstall logdata-anomaly-miner 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 logdata-anomaly-miner using aptitude by running the following command:
sudo aptitude -y install logdata-anomaly-minerHow To Uninstall logdata-anomaly-miner on Kali Linux
To uninstall only the logdata-anomaly-miner package we can use the following command:
sudo apt-get remove logdata-anomaly-minerUninstall logdata-anomaly-miner And Its Dependencies
To uninstall logdata-anomaly-miner and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove logdata-anomaly-minerRemove logdata-anomaly-miner Configurations and Data
To remove logdata-anomaly-miner configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge logdata-anomaly-minerRemove logdata-anomaly-miner configuration, data, and all of its dependencies
We can use the following command to remove logdata-anomaly-miner configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge logdata-anomaly-minerDependencies
logdata-anomaly-miner have the following dependencies:
References
Summary
In this tutorial we learn how to install logdata-anomaly-miner package on Kali Linux using different package management tools: apt, apt-get and aptitude.