Skip to content

Kali Linux

Kali Linux is the most recognized security-focused Linux distribution, released by Offensive Security in 2013 as the successor to BackTrack Linux. Based on Debian testing and following a rolling release model, it ships with over 600 pre-installed tools for penetration testing, digital forensics, and reverse engineering.

Basic Information

AttributeDetails
Based onDebian testing (rolling)
Release cycleRolling release
Default desktopXfce (since 2019); GNOME, KDE available
Target usersSecurity professionals, pentesters, CTF players
Websitehttps://www.kali.org

Key Features

  • 600+ security tools: Nmap, Metasploit, Burp Suite, Wireshark, Aircrack-ng, John the Ripper, and hundreds more — all grouped by category and ready to use immediately after installation.
  • Rolling release model: Tracks Debian testing, so tools are continuously updated without needing a full reinstall.
  • Multi-platform support: Available for x86_64, ARM, WSL (Windows Subsystem for Linux), Docker, and dedicated Raspberry Pi images.
  • Live mode: Boot directly from a USB drive without installing to disk, ideal for temporary assessments and fieldwork.
  • Kali Undercover mode: One-click transformation of the desktop to resemble Windows 10, useful when working in public spaces.

Relationship to Debian

Kali Linux is based on Debian testing, regularly syncing packages from that branch. Offensive Security adds custom kernel patches (such as wireless card injection support) and maintains a separate repository of security tools not found in Debian. Kali's package management is APT-compatible with Debian, but mixing Debian or Ubuntu repositories into a Kali system is strongly discouraged as it can break tool dependencies and system stability.

Getting Started

bash
# Download the ISO from: https://www.kali.org/get-kali/
# Recommended: the Installer edition for a full install, or Live for USB boot

# After installation, update the system
sudo apt update && sudo apt full-upgrade -y

# Install the complete tool suite
sudo apt install kali-linux-everything -y

# Install only the top 10 most-used tools
sudo apt install kali-tools-top10 -y

# Switch to GNOME desktop (optional)
sudo apt install kali-desktop-gnome -y

Who Is It For?

  • Professional penetration testers conducting authorized security assessments
  • CTF (Capture The Flag) competitors and security challenge participants
  • Students studying cybersecurity courses and certifications (OSCP, CEH, etc.)
  • Digital forensics analysts and malware researchers

Legal Notice

The tools included in Kali Linux must only be used against systems you own or have explicit written permission to test. Unauthorized use of penetration testing tools is illegal in most jurisdictions.


Next Steps

Return to the Debian Derivatives overview to explore other Debian-based distributions.