You are using NMAP to resolve domain names into IP addresses for a ping sweep later.
Which of the following commands looks for IP addresses?
>host -t a hackeddomain.com
>host -t soa hackeddomain.com
>host -t ns hackeddomain.com
>host -t AXFR hackeddomain.com
The A record is an Address record. It returns a 32-bit IPv4 address, most commonly used to map hostnames to an IP address of the host.
References: https://en.wikipedia.org/wiki/List_of_DNS_record_types
Submit