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
-
System76 Refreshes Meerkat Mini PC
If you're looking for a small form factor PC powered by Linux, System76 has exactly what you need in the Meerkat mini PC.
-
Gnome 48 Alpha Ready for Testing
The latest Gnome desktop alpha is now available with plenty of new features and improvements.
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.