Kali à la Carte
Charly's Column – katoolin 3
Charly uses the katoolin 3 installation script for a targeted approach to installing his favorite Kali Linux tools on the Ubuntu desktop.
You probably know Kali Linux [1], which comes with a wealth of tools for forensics and penetration testing. You can install the distribution or boot it as a Live system from a USB stick. Users of mainstream Linux often wish to use Kali's range of functions in their preferred distribution. Katoolin [2] tries to fulfill this wish.
I first looked at katoolin in 2017. The script collection for installing Kali Linux tools was tailor-made for the then current Ubuntu LTS and written in Python 2. However, the way it integrated into Ubuntu was a pretty brutal process, involving autonomous changes to the system configuration and frequently ending up with the distribution getting into a total mess on the next update. But the idea was still good, and now we have katoolin 3, which finally files the rough edges off the process. Ported to Python 3, it integrates smoothly into the system and no longer interferes with Ubuntu's own tools.
To get katoolin running, you need to include the universe
repository (Listing 1, line 1); you also need Git to clone the repository (line 2). Once these dependencies are installed, you are ready to go. I mirrored the code to my Ubuntu (line 3), changed to the newly created katoolin3/
directory in the next step, made the install.sh
file executable, and ran it (lines 4 to 6). It makes sense to have a look at the install.sh
file's code beforehand – Git repos can be compromised and can contain malicious code. If everything looks good, the installation can start; this will ideally complete with a success message (line 8).
Listing 1
Installing katoolin 3
01 $ sudo add-apt-repository universe 02 $ sudo apt install git 03 $ git clone https://github.com/s-h-3-l-l/katoolin3 04 $ cd katoolin3/ 05 $ chmod +x ./install.sh 06 $ sudo ./install.sh 07 [...] 08 Successfully installed. 09 $ sudo katoolin3
Since katoolin 3 is an installation tool, I have to run it with root privileges (line 9). The main menu appears on the screen. Theoretically, I could now just treat myself to the full Kali Linux treasure trove by choosing Install all – but hardly anyone really needs the full arsenal. Instead press 0 to see a list of the available categories (Figure 1). From there, you can branch into, say, Wireless Attacks. Entering the numbers to the left of the individual tools starts the installation. You can also specify ranges or lists, such as 1,3,5-7
.
Katoolin 3 does not update automatically, so you do have to run update.sh
from time to time from the katoolin3/
directory created earlier. This is also where you will find uninstall.sh
in case you want to get rid of everything. Because one thing is clear: Although katoolin 3 does give you a taste of the tools in the Kali collection, sooner or later you will end up wanting to permanently install Kali Linux.
Infos
- Kali Linux: https://www.kali.org
- katoolin 3: https://github.com/s-h-3-l-l/katoolin3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.