tcpdump cheat sheet for vulnerability assessment and penetration testing
Installation & Setup
# Install on Kali Linux (pre-installed)
sudo apt update && sudo apt install tcpdump
# Install on Ubuntu/Debian
sudo apt install tcpdump
# Install on CentOS/RHEL
sudo yum install tcpdump
# or
sudo dnf install tcpdump
# Install on macOS
brew install tcpdump
# Install on Windows (via WSL or WinPcap version)
# Download from: https://www.winpcap.org/
# Verify installation
tcpdump --version
# Check available interfaces
tcpdump -D
# Install additional analysis tools
sudo apt install wireshark tshark ngrepNetwork Reconnaissance Phase
Service Discovery & Fingerprinting
Vulnerability Detection Phase
Exploitation & Post-Exploitation Monitoring
Protocol-Specific Analysis
Advanced Filtering & Performance
Analysis & Reporting
Quick Reference - Common Filters
PreviousOpenVAS cheat sheet for vulnerability assessment and penetration testingNextMetasploit cheat sheet for penetration testing
Last updated