Back to course

Kali Linux Interface and Essential Menus

Cyber Security Mastery: From Zero to Hero

Navigating Kali Linux

Once logged into Kali (usually using the XFCE desktop environment), you need to know where the tools are located.

The Applications Menu

The main menu is structured according to the phases of a penetration test:

  1. Information Gathering: Tools like dnsenum, theHarvester.
  2. Vulnerability Analysis: Tools like OpenVAS (conceptual).
  3. Web Application Analysis: Tools like Burp Suite.
  4. Database Assessment: Tools for SQL injection.
  5. Password Attacks: Tools like Hydra, John the Ripper.
  6. Wireless Attacks: Tools like Aircrack-ng.
  7. Exploitation Tools: The Metasploit Framework.

Key Utilities

  • Terminal Emulator: This is where 90% of your work happens.
  • Filesystem: Located at /, critical directories include /etc (configuration), /var/log (logs), and /root (default user home directory).
  • Updating Kali: Always keep your tools fresh!

bash sudo apt update sudo apt full-upgrade -y