How To Install xortool on CentOS 8
Introduction
In this tutorial we learn how to install xortool on CentOS 8.
What is xortool
A tool to do some XOR analysis to guess the key length (based on count of equal chars) and to guess the key (base on knowledge of most frequent char).
We can use yum or dnf to install xortool on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install xortool.
Install xortool on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install xortool using yum by running the following command:
sudo yum -y install xortool
Install xortool on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install xortool using dnf by running the following command:
sudo dnf -y install xortool
How To Uninstall xortool on CentOS 8
To uninstall only the xortool package we can use the following command:
sudo dnf remove xortool
References
Summary
In this tutorial we learn how to install xortool on CentOS 8 using yum and dnf.