How To Install xortool on Rocky Linux 8
Introduction
In this tutorial we learn how to install xortool on Rocky Linux 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 Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install xortool.
Install xortool on Rocky Linux 8 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install xortool using dnf by running the following command:
sudo dnf -y install xortool
Install xortool on Rocky Linux 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install xortool using yum by running the following command:
sudo yum -y install xortool
How To Uninstall xortool on Rocky Linux 8
To uninstall only the xortool package we can use the following command:
sudo dnf remove xortool
xortool Package Contents on Rocky Linux 8
/usr/bin/xortool
/usr/bin/xortool-xor
/usr/lib/python3.6/site-packages/xortool
/usr/lib/python3.6/site-packages/xortool-0.99-py3.6.egg-info
/usr/lib/python3.6/site-packages/xortool-0.99-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/xortool-0.99-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/xortool-0.99-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/xortool-0.99-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/xortool-0.99-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/xortool/__init__.py
/usr/lib/python3.6/site-packages/xortool/__pycache__
/usr/lib/python3.6/site-packages/xortool/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/args.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/args.cpython-36.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/charset.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/charset.cpython-36.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/colors.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/colors.cpython-36.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/libcolors.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/libcolors.cpython-36.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/routine.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/xortool/__pycache__/routine.cpython-36.pyc
/usr/lib/python3.6/site-packages/xortool/args.py
/usr/lib/python3.6/site-packages/xortool/charset.py
/usr/lib/python3.6/site-packages/xortool/colors.py
/usr/lib/python3.6/site-packages/xortool/libcolors.py
/usr/lib/python3.6/site-packages/xortool/routine.py
/usr/share/doc/xortool
/usr/share/doc/xortool/README.md
/usr/share/licenses/xortool
/usr/share/licenses/xortool/LICENSE
References
Summary
In this tutorial we learn how to install xortool on Rocky Linux 8 using yum and dnf.