Get access to the Kalilinux playground with one click
Welcome to the Kali Linux Playground!
Kali Linux — the industry-standard distribution for penetration testing, digital forensics, and security research, with 600+ pre-installable security tools.
Important: Use only for authorised testing and education. Scanning or attacking systems you don’t own is illegal.
What’s Pre-installed
- Shell: Bash (install Zsh:
apt install -y zsh) - Package manager:
aptwith kali-rolling repo - Base tools: curl, wget, git, vim, nano (installed on first connect)
Quick Start
apt update apt install -y nmap nikto nmap -sV localhost nmap -A -T4 localhost
Common Workflows
# Network scanning apt install -y nmap nmap -sC -sV <target> # Web vulnerability scanning apt install -y nikto gobuster gobuster dir -u http://localhost -w /usr/share/wordlists/dirb/common.txt # Password tools apt install -y john hashcat echo "5f4dcc3b5aa765d61d8327deb882cf99" | john --stdin --format=raw-md5 # Forensics apt install -y binwalk foremost binwalk <file>
Advanced Tips
# Install all tools in a category apt install -y kali-tools-top10 # List all available kali tool categories apt-cache search kali-tools # Metasploit (resource-intensive) apt install -y metasploit-framework msfconsole
Session Notes
- Session lasts 1 hour.
- Most tools require
apt installfirst (slim base image). - For educational and authorised testing only.