Initial Enumeration of the Domain
Wireshark
#TCPDUMP
sudo tcpdump -i ens224
#responder
sudo responder -I ens224 -A
#fping
fping -asgq 172.16.5.0/23
#nmap
sudo nmap -v -A -iL hosts.txt -oN /home/htb-student/Documents/host-enum
nmap -A 172.16.5.100
#kerbrute to find valid usernames
kerbrute userenum -d INLANEFREIGHT.LOCAL --dc 172.16.5.5 jsmith.txt -o valid_ad_usersThere are several ways to gain SYSTEM-level access on a host, including but not limited to:
By gaining SYSTEM-level access on a domain-joined host, you will be able to perform actions such as, but not limited to:
Let's find a user!
Last updated