How To Install xortool on Fedora 36
Introduction
In this tutorial we learn how to install xortool on Fedora 36.
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 Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install xortool.
Install xortool on Fedora 36 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 Fedora 36 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 Fedora 36
To uninstall only the xortool package we can use the following command:
sudo dnf remove xortool
xortool Package Contents on Fedora 36
/usr/bin/xortool
/usr/bin/xortool-xor
/usr/lib/python3.10/site-packages/xortool
/usr/lib/python3.10/site-packages/xortool-0.99-py3.10.egg-info
/usr/lib/python3.10/site-packages/xortool-0.99-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/xortool-0.99-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/xortool-0.99-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/xortool-0.99-py3.10.egg-info/requires.txt
/usr/lib/python3.10/site-packages/xortool-0.99-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/xortool/__init__.py
/usr/lib/python3.10/site-packages/xortool/__pycache__
/usr/lib/python3.10/site-packages/xortool/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/args.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/args.cpython-310.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/charset.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/charset.cpython-310.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/colors.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/colors.cpython-310.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/libcolors.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/libcolors.cpython-310.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/routine.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/xortool/__pycache__/routine.cpython-310.pyc
/usr/lib/python3.10/site-packages/xortool/args.py
/usr/lib/python3.10/site-packages/xortool/charset.py
/usr/lib/python3.10/site-packages/xortool/colors.py
/usr/lib/python3.10/site-packages/xortool/libcolors.py
/usr/lib/python3.10/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 Fedora 36 using yum and [dnf]((/fedora/36/dnf/).