initial-enumeration-of-the-domain
Network Discovery and Traffic Analysis
Capture traffic using Wireshark
sudo wiresharkCapture packets on interface ens224 using tcpdump
sudo tcpdump -i ens224Run Responder for LLMNR, NBT-NS, and MDNS poisoning
sudo responder -I ens224 -APing sweep using fping
fping -asgq 172.16.5.0/23Responder
sudo responder -I <interface> -AHost and Service Enumeration
Perform aggressive scan on hosts listed in hosts.txt
sudo nmap -v -A -iL hosts.txt -oN /home/htb-student/Documents/host-enumAggressive scan on a specific host
User Enumeration
Clone kerbrute repository
View make options
Build kerbrute
Run kerbrute binary
Check current PATH
Move kerbrute to a directory in PATH
Enumerate valid Active Directory users
Last updated