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:
- Information Gathering: Tools like
dnsenum,theHarvester. - Vulnerability Analysis: Tools like
OpenVAS(conceptual). - Web Application Analysis: Tools like
Burp Suite. - Database Assessment: Tools for SQL injection.
- Password Attacks: Tools like
Hydra,John the Ripper. - Wireless Attacks: Tools like
Aircrack-ng. - 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