Question
Interaja com o DNS de destino usando seu endereço IP e enumere o FQDN dele para o domínio "inlanefreight.htb".
sudo echo '10.129.189.226 inlanefreight.htb' >> /etc/hosts

Identifique se é possível realizar uma transferência de zona e envie o registro TXT como resposta. (Formato: HTB{...))

Qual é o endereço IPv4 do hostname DC1?

Qual é o FQDN do host cujo último octeto termina com "xxx203"?
for sub in $(cat /usr/share/wordlists/seclists/Discovery/DNS/fierce-hostlist.txt);do dig $sub.dev.inlanefreight.htb @10.129.189.226 | grep -v ';\|SOA' | sed -r '/^\s*$/d' | grep $sub | tee -a subdomains.txt;done
dev1.dev.inlanefreight.htb. 604800 IN A 10.12.3.6
ns.dev.inlanefreight.htb. 604800 IN A 127.0.0.1
win2k.dev.inlanefreight.htb. 604800 IN A 10.12.3.203
Last updated