Introduction
In this tutorial we learn how to install stealth-doc
on Kali Linux.
What is stealth-doc
stealth-doc is:
STEALTH program performs File Integrity Checks on (remote) clients. It
differs from other File Integrity Checkers by not requiring baseline
integrity data to be kept on either write-only media or in the client’s file
system. In fact, client’s will contain hardly any indication at all that they
are being monitored, thus improving the stealthiness of the integrity scans.
STEALTH uses standard available software to perform file integrity checks
(like find(1) and md5sum(1)). Using individualized policy files, it is highly
adaptable to the specific requirements of its clients.
In production environments STEALTH should be run from an isolated computer
(called the STEALTH monitor'). In optimal configurations the STEALTH monitor should be a computer not accepting incoming connections. The account used to connect to its clients does not have to be
root’: usually
read-access to the client’s file system is enough to perform a full integrity
check. Instead of using `root’ a more restrictive administrative or
ordinary account might offer all requirements for the desired integrity
check.
STEALTH itself must communicate with the computers it should monitor. It is
essential that this communication is secure, and STEALTH configurations will
therefore normally specify SSH as the command-shell to use to connect to its
clients. STEALTH may be configured so as to use but one SSH connection per
client, even if integrity scans are to be performed repeatedly. Apart from
this, the STEALTH monitor might be allowed to send e-mail to remote clients
system’s maintainers.
STEALTH-runs itself may start randomly within specified intervals. The
resulting unpredicability of STEALTH-runs further increases STEALTH’s
stealthiness.
STEALTH’s acronym is expanded to `Ssh-based Trust Enforcement Acquired
through a Locally Trusted Host’: the client’s trust is enforced, the locally
trusted host is the STEALTH monitor.
This package provides the supplemental documentation for Stealth.
There are three methods to install stealth-doc
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 stealth-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install stealth-doc
using apt-get
by running the following command:
sudo apt-get -y install stealth-doc
Install stealth-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install stealth-doc
using apt
by running the following command:
sudo apt -y install stealth-doc
Install stealth-doc 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 update
After updating apt database, We can install stealth-doc
using aptitude
by running the following command:
sudo aptitude -y install stealth-doc
How To Uninstall stealth-doc on Kali Linux
To uninstall only the stealth-doc
package we can use the following command:
sudo apt-get remove stealth-doc
Uninstall stealth-doc And Its Dependencies
To uninstall stealth-doc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove stealth-doc
Remove stealth-doc Configurations and Data
To remove stealth-doc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge stealth-doc
Remove stealth-doc configuration, data, and all of its dependencies
We can use the following command to remove stealth-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge stealth-doc
Dependencies
stealth-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install stealth-doc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.