• 53 DNS

    Enumeration Mandatory Try to per­form a zone trans­fer:dig axfr @10.10.11.166 trick.htb

  • DNS Domain Name System

    Manual enumeration Subdomain enumeration Put usu­al domain names (Seclists!) and iter­ate them with the bash $ for ip in $(cat list.txt); do host $ip.domain.com; done IP enumeration Enu­mer­ate an IP range to find domains $ for ip in $(seq 50 100); do host 38.100.193.$ip; done | grep -v "not found" Zone transfer Per­form a DNS zone…