> Posted by: linux_ghost | Rank: Elite Member | Joined: 2022 [/I]
This is for EDUCATIONAL and AUTHORIZED TESTING purposes only. Don't come to me crying if you get caught using these on production systems without permission.
Alright, let's get straight to it.[/B]
I've been running Kali for 5+ years across hundreds of engagements. Most guys install it and have no idea what half the tools do. Today I'm breaking down the 50 tools I actually use, organized by category. No fluff, just what works.
---
βββ INFORMATION GATHERING βββ
Code:
# Network Recon
nmap # The king of network scanning
masscan # Super fast port scanner (10M+ packets/sec)
netdiscover # Active/passive ARP scanning
arp-scan # Layer 2 device discovery
# DNS Enumeration
dnsrecon # Comprehensive DNS enumeration
dnswalk # DNS zone transfer tool
dnsenum # DNS enumeration with brute force
fierce # DNS reconnaissance tool
theharvester # Email, subdomain, employee harvesting
dig # DNS lookup utility
host # Simple DNS lookup
# Web Recon
whatweb # Website fingerprinting
wpscan # WordPress vulnerability scanner
subfinder # Subdomain discovery
amass # Attack surface management
assetfinder # Asset discovery
My workflow:
Code:
amass enum -d target.com -o amass_results.txt
Code:
whatweb -i results.txt
Code:
nmap -sV -sC -oA initial_scan target
---
βββ VULNERABILITY ANALYSIS βββ
Code:
nmap --script vuln # Built-in vuln scanning
openvas # Full vulnerability scanner
nessus # Enterprise vuln scanner (free for home)
nikto # Web server scanner
arachni # Web app scanner
skipfish # Web app security scanner
wapiti # Web vulnerability scanner
acunetix # Commercial but amazing
zaproxy # OWASP ZAP - free web scanner
Pro tip: Run
Code:
nmap --script vuln
---
βββ WEB APP EXPLOITATION βββ
Code:
sqlmap # SQL injection powerhouse
burpsuite # Web proxy & testing (community is free)
commix # Command injection tool
xsser # XSS automation
droopescan # Drupal scanner
joomscan # Joomla scanner
dotDotPwn # Path traversal fuzzer
skipfish # Web app scanner
w3af # Web application attack framework
---
ββοΏ½ OVERCREDENTIAL HARVESTING βββ
Code:
hydra # Network logon cracker (16+ protocols)
john # John the Ripper - password recovery
hashcat # Advanced GPU-accelerated cracking
cewordlist # Wordlist generator
crunch # Wordlist generator
rockyou.txt # The classic wordlist (usually in /usr/share/wordlists)
seclists # Massive wordlist collection
My cracking setup:
Code:
# ZIP files
john --format=zip lockprotected.zip
# NTLM hashes
hashcat -m 1000 hashes.txt rockyou.txt
# PDF passwords
pdfcrack encrypted.pdf
# WiFi (WPA/WPA2)
aircrack-ng capture.cap -w wordlist.txt
---
βββ WIRELESS ATTACKS βββ
Code:
aircrack-ng # WiFi cracking suite
wash # WPS scanner
reaver # WPS brute force
bully # Alternative WPS tool
cowpatty # Precomputed PMK attack
pixiewps # WPS pixie dust attack
kismet # Wireless sniffer
fern-wifi # GUI WiFi attacker
---
βββ POST-EXPLOITATION βββ
Code:
meterpreter # Metasploit's shell
mimikatz # Credential extraction (Windows)
powersploit # PowerShell post-exploitation
empire # PowerShell post-exploitation agent
pwdump # Windows password dump
g pp # Linux privilege escalation checker
linux-exploit-suggester # Linux privilege escalation
Quick post-exploit checklist:
Code:
# Windows
whoami /priv
query user
net user /domain
net group "Domain Admins" /domain
set
printenv
route print
netstat -ano
# Linux
whoami
id
uname -a
cat /etc/passwd
cat /etc/shadow
crontab -l
systemctl list-units
ps aux
netstat -tulpn
---
βββ EXPLOITATION FRAMEWORKS βββ
Code:
metasploit # The industry standard
beef # Browser exploitation framework
veil # Evasion framework for metershellcode
shellter # AV evasion for executable payloads
veil-evasion # Next-gen evasion
covenant # .NET C2 framework
sliver # Modern C2 framework
merlin # Cross-platform C2
---
βββ PRIVILEGE ESCALATION βββ
Code:
# Windows
winPEAS # Windows enumeration
Seatbelt # Windows security posture scanner
PowerUp # PowerShell privilege escalation
Get-System # Multiple escalation techniques
JuicyPotato # Token manipulation (CVE-2019-1388)
PrintSpoofer # Print spooler exploit (CVE-2021-1675)
GodPotato # JuicyPotato alternative
---
βββ NETWORK ATTACKS βββ
Code:
mitmproxy # Intercepting proxy
bettercap # Network attack framework
dsniff # Network credential harvesting
ettercap # ARP poisoning & MITM
tcpdump # Packet capture
wireshark # Network protocol analyzer
col # Network steganography
netcat # The swiss army knife of networking
socat # Socket cat - advanced netcat
---
βββ REPORTING βββ
Code:
reportlab # Python PDF generation
report-merlin # Automated reporting
brutereport # Brute forcer reporting
nessus-exporter # Nessus to various formats
arachni-reporter # Arachni reporting
---
βββ MY DAILY DRIVEN KALI SETUP βββ
Code:
#!/bin/bash
# My daily Kali automation script
echo "[*] Starting daily security workflow..."
# Update system
sudo apt update && sudo apt upgrade -y
# Update tool databases
sudo npm install -g whatweb
sudo gem install faraday
sudo pip3 install --upgrade requests beautifulsoup4
# Quick network sweep
echo "[*] Scanning local network..."
sudo netdiscover -r 192.168.1.0/24 -P
# Check for any open services on localhost
echo "[*] Checking local services..."
sudo netstat -tulpn
# Quick DNS check
echo "[*] DNS reconnaissance..."
dig example.com AXFR @ns1.example.com 2>/dev/null
echo "[*] Workflow complete. Happy hacking!"
---
βββ TL;DR βββ
Code:
β
Nmap + Masscan for recon
β
Burp Suite + SQLMap for web apps
β
Hydra + John for credentials
β
Metasploit + Empire for exploitation
β
Mimikatz for credential harvesting
β
WinPEAS + Linux-privilege-escalator for post-exploitation
β
Wireshark + tcpdump for network analysis
β
Automate your workflow with bash scripts
---
What tools are in your daily rotation? Drop 'em below.
Next: Advanced Burp Suite techniques nobody teaches.
Last edited by linux_ghost; 6 hours ago.
[SIG]ββββββββββββββββββββββββββββββββββββββββ
linux_ghost | Elite Member | Kali Linux Specialist
ββββββββββββββββββββββββββββββββββββββββ[/SIG][/b][/b][/b][/b][/b][/b][/b][/b][/b][/b][/b][/b]