How to Install Kali Linux on a Bootable USB Drive — Complete Step-by-Step Guide

·

Kali Linux is the world's most popular operating system for cybersecurity professionals — packed with 600+ hacking and security testing tools. But you do not need to wipe your computer to use it. A bootable USB drive lets you run Kali on any computer, leave no trace when you're done, and carry your entire security toolkit in your pocket.

This guide walks you through every single step — from downloading the official Kali ISO image, verifying its integrity, flashing it to a USB drive, adjusting your computer's boot settings, and booting into a live Kali session. No experience required. If you can read and follow instructions, you can do this.

Estimated time: 30–45 minutes (mostly download wait time). You will need a USB drive of at least 8 GB and a Windows, macOS, or Linux computer to create the USB from.

◈ Table of Contents

01 What Is Kali Linux? 02 What You Need 03 Download the Kali ISO 04 Verify the ISO (Important!) 05 Flash USB on Windows 06 Flash USB on macOS 07 Flash USB on Linux 08 Enter BIOS & Set Boot Order 09 Boot Kali from the USB 10 First Steps in Kali 11 Optional: Persistent Storage 12 Troubleshooting
🐉

PHASE 01 — What Is Kali Linux?

BACKGROUND
01
Kali Linux — The Security Professional's OS
Context

Kali Linux is a free, open-source operating system maintained by Offensive Security. It is based on Debian Linux and comes pre-loaded with over 600 cybersecurity tools including network scanners, password crackers, wireless attack tools, web application testers, forensics utilities, and much more. Security professionals, ethical hackers, penetration testers, and students worldwide use it as their primary toolkit.

🔍

Penetration Testing

Test the security of networks, web applications, and systems — with permission — to find vulnerabilities before attackers do.

🎓

Learning & Certifications

Essential for OSCP, CEH, CompTIA Security+, and virtually every hands-on cybersecurity certification lab.

🔬

Digital Forensics

Recover deleted files, analyse disk images, and investigate incidents using built-in forensics tools like Autopsy and Volatility.

📡

Wireless Security

Audit Wi-Fi networks using tools like Aircrack-ng, Wireshark, and Kismet — all pre-installed and ready to go.

Kali Linux is designed for authorized security testing only. Never use Kali Linux tools against systems, networks, or devices you do not own or do not have explicit written permission to test. Unauthorized use is illegal and can result in criminal charges.

📋

PHASE 02 — What You Need

PREREQUISITES
02
Hardware & Software Requirements
Checklist

Before you start, make sure you have everything on this list. Missing any of these will stop you at some point during the guide.

Item Minimum Recommended Notes
USB Drive 8 GB MIN 16 GB+ REC USB 3.0 preferred for faster boot speed. All data on the drive will be erased.
Host Computer Any PC/Mac/Linux Windows 10/11 or macOS 12+ This is the computer you create the USB on — can be different from the one you boot Kali on.
Target Computer 64-bit CPU, 2 GB RAM 4+ GB RAM, SSD The computer you will run Kali on. Must support USB boot (most computers made after 2010 do).
Internet Connection Required Broadband (ISO is ~4 GB) To download the Kali ISO file.
Flashing Software Balena Etcher (free) Balena Etcher Free tool to write the ISO to your USB. Alternatives: Rufus (Windows), dd (Linux/Mac).
Disk Space 4 GB free (ISO storage) 8 GB free To download and temporarily store the Kali ISO file.
Pre-flight Checklist
  • USB drive plugged in and visible in File Explorer / Finder
  • USB drive is at least 8 GB — backup anything important on it first (it will be wiped)
  • You know the target computer's BIOS key (F2, F12, Del, Esc — look it up for your model)
  • Stable internet connection active
  • At least 4 GB free disk space on your host computer
⬇️

PHASE 03 — Download the Official Kali ISO

STEP 1 OF SETUP
03
Download Kali Linux from the Official Website
Download

Always download Kali Linux from the official source — kali.org. Never download from third-party sites, torrents (unless using the official Kali torrent), or any link you are not 100% sure about. A tampered ISO could contain malware.

◈ Step-by-Step
  • 1
    Open your web browser and go to https://www.kali.org/get-kali/ — this is the only official download page.
  • 2
    On the downloads page you will see several options. Click "Installer Images" — this is the standard full installation image. (Do NOT pick "Virtual Machines" or "Cloud" for a USB install.)
  • 3
    You will see two architecture options. For almost all modern computers (any PC or Mac made in the last 10 years), choose 64-bit (amd64). Only choose 32-bit (i386) for very old computers.
  • 4
    Click the download icon (the arrow-down button) next to the Kali Linux 64-bit Installer entry. A file ending in .iso will begin downloading. It is approximately 3.8 – 4.1 GB in size.
  • 5
    Also download the SHA256SUMS file from the same row — you will use this to verify the ISO in the next phase. Click the checksum icon next to the download button.
  • 6
    Wait for the download to complete. Save both files to the same folder (e.g. your Downloads folder). The ISO filename will look like: kali-linux-2024.2-installer-amd64.iso

LIVE vs INSTALLER: The "Live" image boots directly into Kali without installing. The "Installer" image lets you install Kali to the USB persistently or to a hard drive. For a bootable USB you can use either — this guide uses the Installer image which gives you the most options at boot time.

🌐
Kali Linux Official Download Page
https://www.kali.org/get-kali/ — always use this URL
🔐

PHASE 04 — Verify the ISO (Do Not Skip This)

SECURITY CHECK
04
Verify the SHA256 Checksum
Integrity

A checksum is a fingerprint for a file. If even one byte of the ISO was changed (corrupted download, tampered file), the checksum will be completely different. Verifying it takes 2 minutes and confirms your ISO is genuine and unmodified. This is not optional — a bad ISO can waste hours of your time or worse.

◈ On Windows
  • 1
    Open PowerShell — press Windows Key + X then click "Windows PowerShell" or "Terminal".
  • 2
    Navigate to your Downloads folder: type cd ~/Downloads and press Enter.
  • 3
    Run the checksum command below. Replace the filename with your exact ISO filename.
Windows PowerShell
PS C:\Users\you\Downloads> Get-FileHash kali-linux-2024.2-installer-amd64.iso -Algorithm SHA256 # Example output — your hash should match this exactly: Algorithm Hash --------- ---- SHA256 a1b2c3d4e5f6... (64 character string)
  • 4
    Open the SHA256SUMS file you downloaded (right-click → Open with Notepad). Find the line for your ISO file and compare the hash. They must be identical — every single character.
◈ On macOS
macOS Terminal
~ cd ~/Downloads ~/Downloads shasum -a 256 kali-linux-2024.2-installer-amd64.iso # Compare the output hash with the one in SHA256SUMS file
◈ On Linux
Linux Terminal
$ cd ~/Downloads $ sha256sum kali-linux-2024.2-installer-amd64.iso # Or verify against the SHA256SUMS file automatically: $ sha256sum -c SHA256SUMS 2>&1 | grep kali-linux-2024.2-installer-amd64.iso kali-linux-2024.2-installer-amd64.iso: OK # ← what you want to see

If the hashes match — great, your ISO is genuine. If they do NOT match — delete the ISO and re-download it. Never flash an ISO with a failed checksum.

💻

PHASE 05 — Flash the USB on Windows (Balena Etcher)

WINDOWS METHOD
BALENA ETCHER — 3-STEP INTERFACE: SELECT ISO → SELECT USB DRIVE → CLICK FLASH
05
Flash with Balena Etcher on Windows
Windows

Balena Etcher is the easiest, most beginner-friendly tool for creating bootable USB drives. It has a simple 3-step interface: pick the ISO, pick the USB drive, then click Flash. It works on Windows, macOS, and Linux.

◈ Download & Install Etcher
  • 1
    Go to https://etcher.balena.io/ and click the large "Download Etcher" button. Choose the Windows x64 Portable version (no install needed — just double-click to run).
  • 2
    Once downloaded, double-click the .exe file to open Etcher. Windows may show a SmartScreen warning — click "More info" then "Run anyway". This is normal for portable apps.
◈ Flash the ISO
  • 3
    In Etcher, click "Flash from file". A file browser will open — navigate to your Downloads folder and select your kali-linux-2024.2-installer-amd64.iso file.
  • 4
    Click "Select target". A list of connected drives will appear. Very carefully select your USB drive. Make sure you pick the correct drive — double-check the size matches your USB. The wrong choice will erase the wrong drive.
  • 5
    Click the "Flash!" button. Windows will ask for administrator permission — click Yes. The flashing process begins.
  • 6
    Wait for the process to complete. Etcher will first write the ISO (this takes 5–15 minutes depending on USB speed), then automatically verify what it wrote. Do not remove the USB during this process.
  • 7
    When Etcher shows "Flash Complete!" with a green checkmark — your USB is ready. Windows may pop up asking you to "Format the disk" — click Cancel. The USB is correctly formatted for Linux booting, not Windows.

IMPORTANT: In Step 4, selecting the wrong drive will permanently erase its contents. Triple-check the drive letter and size before clicking Flash. Disconnect any other external drives you are not using to avoid confusion.

ALTERNATIVE (Windows only): Rufus is another excellent option — lighter and faster than Etcher. Download from rufus.ie, select your ISO, select your USB drive, leave all settings at default, and click START. When asked about writing in ISO Image mode vs DD Image mode — choose DD Image mode for Kali Linux.

🍎

PHASE 06 — Flash the USB on macOS

MACOS METHOD
06
Flash with Etcher or dd on macOS
macOS

macOS users can use either Balena Etcher (easy, graphical) or the built-in dd command (advanced, powerful). Both work perfectly. If you are a beginner, use Etcher. If you are comfortable with the Terminal, dd is faster.

◈ Method A — Balena Etcher (Recommended for Beginners)
  • 1
    Go to https://etcher.balena.io/ and download the macOS .dmg installer.
  • 2
    Open the .dmg file and drag the Etcher icon into your Applications folder.
  • 3
    Open Etcher from Applications. macOS may warn about an unverified developer — go to System Settings → Privacy & Security → Open Anyway.
  • 4
    Follow the same 3 steps as Windows: Flash from file → Select your Kali ISO → Select your USB drive → Flash!
  • 5
    Wait for the "Flash Complete!" message. Eject the USB safely when done.
◈ Method B — Terminal / dd Command (Advanced)
  • 1
    Open Terminal (Cmd+Space, type "terminal", press Enter).
  • 2
    First, find your USB drive's device identifier:
macOS Terminal — Find USB Device
~ diskutil list # Look for your USB drive in the output. Example output: /dev/disk0 (internal): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme 500.1 GB disk0 /dev/disk2 (external, physical): ← This is your USB #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme 14.3 GB disk2 1: Windows_NTFS SANDISK 14.3 GB disk2s1
  • 3
    Unmount the USB disk (replace disk2 with your actual disk number):
macOS Terminal — Unmount USB
~ diskutil unmountDisk /dev/disk2 Unmount of all volumes on disk2 was successful
  • 4
    Flash the ISO using dd. Use rdisk2 (raw disk — much faster than disk2). This will take 10–20 minutes:
macOS Terminal — Flash ISO (takes 10-20 min)
~ sudo dd if=~/Downloads/kali-linux-2024.2-installer-amd64.iso of=/dev/rdisk2 bs=4m status=progress # Enter your macOS password when prompted. # The terminal will appear frozen — it is writing. Wait until it returns to the prompt. 3858759680 bytes transferred in 847.123 secs (4555789 bytes/sec) ~ sync # Flush writes to disk

In the dd command, if= is the INPUT (your ISO file) and of= is the OUTPUT (your USB drive). Getting these backwards will overwrite your ISO with nothing. Double-check both paths before pressing Enter.

🐧

PHASE 07 — Flash the USB on Linux

LINUX METHOD
07
Flash with dd on Linux
Linux

On Linux, the dd command is the most reliable way to create a bootable USB. You can also use Balena Etcher if you prefer a GUI — the macOS instructions above apply. The dd method is shown here as it works on every Linux distribution.

  • 1
    Plug in your USB drive. Then open a Terminal and identify the USB device:
Linux Terminal — Identify USB Drive
$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS sda 8:0 0 500.1G 0 disk ├─sda1 8:1 0 512M 0 part /boot/efi └─sda2 8:2 0 499.6G 0 part / sdb 8:16 1 14.3G 0 disk ← Your USB drive (note: no mount point) └─sdb1 8:17 1 14.3G 0 part
  • 2
    Unmount any mounted partitions on the USB (replace sdb with your device):
Linux Terminal — Unmount USB
$ sudo umount /dev/sdb1 # Repeat for sdb2, sdb3 etc. if they exist
  • 3
    Flash the ISO with dd:
Linux Terminal — Flash ISO
$ sudo dd if=~/Downloads/kali-linux-2024.2-installer-amd64.iso of=/dev/sdb bs=4M status=progress oflag=sync 3858759680 bytes (3.9 GB, 3.6 GiB) copied, 847 s, 4.6 MB/s 919+0 records in 919+0 records out 3858759680 bytes transferred in 847.123 secs $ sync # Ensure all data is written before removing USB

When dd returns to the command prompt and sync completes — your USB is ready. You can safely remove it. Linux may ask to "format disk" when you re-plug it later — always click Cancel.

TIP: Run "lsblk" before AND after plugging in the USB to spot exactly which new device appeared. The new device is your USB. Never run dd on /dev/sda — that is usually your main hard drive.

⚙️

PHASE 08 — Enter BIOS and Set Boot Order

CRITICAL STEP
BIOS BOOT ORDER SCREEN — USB DRIVE MUST BE AT POSITION #1 BEFORE HARD DRIVE
08
Enter BIOS / UEFI and Change Boot Order
Critical

The BIOS (Basic Input/Output System) or UEFI is the firmware that runs before your operating system. It decides which device to boot from first. By default, most computers are set to boot from the internal hard drive. You need to either change the boot order to put USB first, or use the one-time boot menu to select USB for a single boot.

◈ Step-by-Step
  • 1
    Plug in your Kali USB drive before you start the computer.
  • 2
    Power on or restart your computer. As soon as the screen lights up, immediately and repeatedly press the BIOS entry key for your computer brand. You have about 2–3 seconds before Windows starts loading. The key is usually shown briefly on the first screen.
Computer BrandBIOS KeyOne-Time Boot Menu Key
HPF10 or EscF9 or Esc then F9
DellF2F12
LenovoF1, F2, or EnterF12
ASUSF2 or DelF8
AcerF2 or DelF12
MSIDelF11
SamsungF2F10 or Esc
ToshibaF2 or EscF12
Apple Mac (Intel)Hold Option/Alt at startupHold Option/Alt at startup
  • 3
    Once inside BIOS/UEFI, use your arrow keys to navigate to the "Boot" tab or look for "Boot Priority" / "Boot Sequence" settings.
  • 4
    Find the USB drive in the boot list. It will be labelled something like "USB: [Brand Name]", "Removable Device", or "USB HDD".
  • 5
    Move the USB to the top of the list (position #1). Use the +/- keys, or F5/F6, or drag-and-drop if your BIOS has a mouse-friendly interface — it varies by manufacturer but the screen shows you the controls.
  • 6
    Press F10 to Save and Exit (most BIOS). Confirm the save when asked. Your computer will restart.

SHORTCUT: Many computers let you press F12, F8, F9, or Esc at startup to get a one-time "Boot Menu" without entering BIOS settings. This is even easier — just select your USB from the list and it boots from USB this one time, without permanently changing your settings. Check your brand's boot menu key in the table above.

SECURE BOOT: If Kali refuses to boot and you see an error about Secure Boot, you need to disable it in BIOS. Look for "Secure Boot" under the Security or Boot tab and set it to Disabled. Save and exit. Kali 2022+ images support Secure Boot, but older ISOs may not.

🚀

PHASE 09 — Boot Kali Linux from the USB

BOOT TIME
KALI LINUX BOOT MENU — SELECT "LIVE SYSTEM (AMD64)" TO BOOT WITHOUT INSTALLING
09
Select Boot Option and Enter Kali
Boot

After saving your BIOS changes, your computer will restart and boot from the USB. You will see the Kali Linux boot menu with several options. Here is exactly what each option means and which to choose.

◈ At the Kali Boot Menu
  • 1
    When the computer restarts, you should see the Kali Linux boot menu with a dragon logo and a list of options. If your computer boots into Windows instead, go back to BIOS and double-check the USB is at the top of the boot order.
  • 2
    Use the arrow keys (↑ ↓) to highlight your choice, then press Enter. Here are your main options:
Boot OptionWhat It DoesWhen to Choose
Live system (amd64)Boots into Kali desktop without installing anything. Changes are NOT saved when you shut down.✅ Choose this for your first time. Safest option — nothing is written to your computer's hard drive.
Live system (failsafe)Same as Live but with basic graphics drivers — slower but more compatible.Use this if Live system crashes or shows graphical errors on your hardware.
Graphical InstallInstalls Kali Linux permanently to your computer's hard drive using a visual installer.Only if you want to replace or dual-boot your OS. This will modify your hard drive.
InstallText-based installer — same as Graphical Install but without graphics.Same as above. Use if Graphical Install has display issues.
  • 3
    Select "Live system (amd64)" and press Enter.
  • 4
    Kali will start loading. You will see text scrolling by — this is normal. The boot process takes 1–3 minutes depending on your USB speed and computer hardware.
  • 5
    After loading, Kali will automatically log in and show the desktop. The default credentials are:
    Username: kali    Password: kali

You are now running Kali Linux! Your computer's original operating system (Windows/macOS) is untouched — Kali is running entirely from the USB drive in RAM. When you shut down and remove the USB, your computer boots normally.

🛠️

PHASE 10 — First Steps in Kali Linux

GETTING STARTED
10
Orientation: The Kali Desktop & Essential Commands
Orientation

Welcome to Kali! Here is a quick orientation of what you are looking at and the first things you should do after booting for the first time.

◈ The Desktop
  • 1
    Top taskbar — Application launcher, workspace switcher, system tray (network, volume, clock).
  • 2
    Applications menu (top-left, "Applications") — All tools organized by category: 01 - Information Gathering, 02 - Vulnerability Analysis, 03 - Web Application Analysis, 06 - Wireless Attacks, 09 - Sniffing & Spoofing, and more.
  • 3
    File Manager — Access your USB drive and any other mounted storage. Note: in Live mode, files saved to the desktop or /home/kali will disappear on reboot.
  • 4
    Terminal Emulator — The black terminal icon in the taskbar. This is where most of Kali's power comes from.
◈ First Commands to Run (in Terminal)
Kali Terminal — Initial Setup
# Connect to WiFi first (use the network icon in the taskbar), then: # 1. Update the package list (always do this first) kali@kali:~$ sudo apt update # 2. Upgrade all installed tools to their latest versions kali@kali:~$ sudo apt upgrade -y # 3. Check the Kali version you are running kali@kali:~$ cat /etc/os-release NAME="Kali GNU/Linux" VERSION="2024.2" # 4. List all available tools in a category (example: network scanners) kali@kali:~$ apt list --installed 2>/dev/null | grep nmap # 5. Run nmap (network scanner) — scan your own local network kali@kali:~$ nmap -sn 192.168.1.0/24 # Replace 192.168.1.0/24 with your own network range
◈ Most Used Tools — Quick Reference
ToolCategoryWhat It DoesRun With
nmapNetworkScan networks and find open ports and servicesnmap -sV 192.168.1.1
WiresharkNetworkCapture and analyse network traffic in real-timewireshark
MetasploitExploitationFramework for developing and running exploitsmsfconsole
Burp SuiteWebIntercept and modify HTTP/S web trafficburpsuite
aircrack-ngWirelessAudit WiFi network securityaircrack-ng --help
johnPasswordPassword cracker (John the Ripper)john --help
sqlmapWebAutomated SQL injection testingsqlmap -u "URL"
hashcatPasswordGPU-accelerated password hash crackinghashcat --help

Only run these tools against systems you own or have explicit written permission to test. Running nmap, Metasploit, or other tools against systems you do not own is illegal in most countries, even if you do not cause damage.

💾

PHASE 11 — Optional: Adding Persistent Storage

ADVANCED OPTION
11
What Is Persistence and How to Enable It
Optional

By default, Kali Live mode does not save anything — every reboot starts fresh. Persistence lets you save files, settings, and installed tools to a special partition on the USB drive that survives reboots. This turns your USB into a portable, personalized Kali installation.

REQUIREMENT: Your USB drive needs free space beyond the Kali ISO (about 4 GB minimum). A 16 GB USB drive flashed with Kali still has roughly 12 GB free that you can use for a persistence partition. You need to create this partition AFTER flashing with Etcher — Etcher only writes to the required space.

◈ Step-by-Step: Create Persistence Partition (from Kali Live)
  • 1
    Boot into Kali Live (as you did in Phase 09). Open a Terminal.
  • 2
    Find your USB device name:
Kali Terminal — Identify USB
kali@kali:~$ fdisk -l # Look for your USB device — example: /dev/sdb (about 14-16GB) # Note down the device name (sdb) and the end of the last partition
  • 3
    Create a new partition in the free space at the end of the USB using fdisk. The persistence partition must be ext4 format and labelled persistence exactly.
Kali Terminal — Create & Format Persistence Partition
# Partition the free space (interactive — follow the on-screen prompts) kali@kali:~$ sudo fdisk /dev/sdb # Inside fdisk: press n (new), p (primary), accept defaults, then w (write) # Format as ext4 kali@kali:~$ sudo mkfs.ext4 -L persistence /dev/sdb3 # Replace sdb3 with your actual new partition number # Mount it and create the persistence config file kali@kali:~$ sudo mkdir -p /mnt/usb kali@kali:~$ sudo mount /dev/sdb3 /mnt/usb kali@kali:~$ echo "/ union" | sudo tee /mnt/usb/persistence.conf kali@kali:~$ sudo umount /dev/sdb3
  • 4
    Reboot the computer and at the Kali boot menu, select "Live system (amd64 persistence)" instead of the normal Live option.
  • 5
    Kali will now save all changes — installed packages, created files, changed settings — to the USB drive's persistence partition. They will be there every time you boot with persistence.

ENCRYPTED PERSISTENCE: Kali also supports an encrypted persistence partition — select "Live system (amd64 encrypted persistence)" at boot. This protects your saved data with a password if the USB is lost or stolen. Setup is identical but uses cryptsetup during partition creation. Highly recommended for sensitive work.

🔧

PHASE 12 — Troubleshooting Common Problems

FIX IT
12
Solutions to the Most Common Issues
Troubleshoot

If something is not working, check this table first. These are the most common problems beginners encounter, with clear solutions.

ProblemCauseFix
Computer boots into Windows/macOS instead of Kali USB is not first in boot order, or one-time boot menu not used Re-enter BIOS. Confirm USB is #1 in Boot Priority. Or press F12/F8 at startup for one-time boot menu and select USB manually.
"No bootable device" or "Boot failed" error USB was not flashed correctly, or BIOS doesn't see it Re-flash the USB with Etcher. In BIOS, make sure "USB Boot" or "Legacy USB Support" is enabled. Try a different USB port (preferably USB 2.0 for older BIOS).
Black screen or frozen after selecting boot option Graphics driver incompatibility At the Kali boot menu, select "Live system (failsafe mode)" instead. This uses basic VESA graphics drivers compatible with all hardware.
Secure Boot error / boot refused UEFI Secure Boot blocking unsigned OS Enter BIOS → Security tab → set Secure Boot to Disabled. Save and try again. (Kali 2022+ supports Secure Boot, but older ISOs may not.)
Etcher shows "Flash Failed" error Corrupted ISO, bad USB drive, or permissions Re-verify the ISO checksum (Phase 04). Try a different USB drive. On Windows, run Etcher as Administrator.
WiFi not working in Kali Missing wireless driver Some WiFi cards need extra drivers. Connect via ethernet first, then run: sudo apt install kali-linux-firmware and reboot.
Very slow boot speed USB 2.0 drive or slow USB 2.0 port Use a USB 3.0 drive AND plug it into a USB 3.0 port (blue inside port). Speed difference is significant: 30 seconds vs 3 minutes.
Windows asks to "Format" the USB after flashing Windows cannot read Linux filesystem (ext4) This is normal and expected. Click Cancel. The USB is correctly formatted for Linux — Windows just can't read it.
◈ Getting Help
📚

Sources & Official References

VERIFIED
Kali Linux Official Downloads — kali.org/get-kali/ Kali Docs: Making a Kali Live USB on Linux — kali.org/docs/usb/ Kali Docs: Making a Kali Live USB on Windows — kali.org/docs/usb/ Kali Docs: Adding Persistence to a Kali Linux Live USB — kali.org/docs/ Balena Etcher Official Download — etcher.balena.io Rufus USB Flasher (Windows) — rufus.ie Kali Docs: Should I Use Kali Linux? — kali.org/docs/introduction/

◈ Level Up Your Security Skills

Now that you have Kali Linux running, the real learning begins. CyberHawk Threat Intel has free courses, live tools, and step-by-step guides covering everything from your first nmap scan to advanced penetration testing techniques. The IOC Scanner and live threat tools are free to use.

Sign up for a free account at app.cyberhawkthreatintel.com to track your learning progress, access premium guides, and join the CyberHawk community of security professionals and students.

Browse Free Courses →    Read More Guides →

◈ Stay Connected

Follow CyberHawk Threat Intel for threat intelligence, deployment guides and hands-on SOC tooling content.

🌐 Website ▶️ YouTube ▶️ YouTube (2) 𝕏 Twitter / X ♪ TikTok ✈️ Telegram
🔍 IOC Scanner 🛠️ Live Tools 📚 Courses 🚨 Threat Intel 📝 Blog 📋 SOPs

"They can't exploit you if you are the Exploit."