• Finding subdomains

    Subwiz https://github.com/hadriansecurity/subwiz can pre­dict pos­si­ble sub­do­mains via a LLM. Subfinder https://github.com/projectdiscovery/subfinder tries to get sub­do­mains via pas­sive infor­ma­tion gathering. Gobuster Gob­uster can brute-force subdomains.

  • 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…