Linux

Kalilinux Playground

Kali Linux is a Debian-based distribution tailored for digital forensics and penetration testing..

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.

What’s Pre-installed

  • Shell: Bash (install Zsh: apt install -y zsh)
  • Package manager: apt with 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 install first (slim base image).
  • For educational and authorised testing only.