π§Miscellaneous Techniques
π― Overview
π‘ Passive Traffic Capture
Network Sniffing for Credentials
# Check if tcpdump available and usable
which tcpdump
tcpdump --version
# Capture network traffic
tcpdump -i any -w capture.pcap
# Real-time credential hunting
tcpdump -i any -A | grep -E "(password|user|login|auth)"
# Capture specific protocols
tcpdump -i any port 21 # FTP
tcpdump -i any port 23 # Telnet
tcpdump -i any port 80 # HTTPTools for Credential Extraction
ποΈ Weak NFS Privileges
NFS Export Enumeration
Check NFS Configuration
NFS Privilege Escalation
πΊ Tmux Session Hijacking
Find Tmux Sessions
Session Hijacking
Create Hijackable Session (for persistence)
π Detection & Enumeration
Miscellaneous Techniques Check
NFS Specific Enumeration
π Quick Exploitation Reference
Immediate Opportunities
Emergency Techniques
π Key Points
Traffic Capture Value
NFS Exploitation Impact
Tmux Session Benefits
Last updated