View the exercise here: PentesterLab: Recon 16arrow-up-right
For this challenge, your goal is to get the version of bind used by z.hackycorp.com.
Bindarrow-up-right is one of the most common DNS servers used. If you know how to ask, it will reveal its version.
dig @z.hackycorp.com version.bind CHAOS TXT
dig: The tool used for querying DNS.
dig
@z.hackycorp.com: Specifies the DNS server (z.hackycorp.com) to query.
@z.hackycorp.com
z.hackycorp.com
version.bind: This asks for the version of the DNS server.
version.bind
CHAOS: The DNS class used for special queries like retrieving server information (in this case, the version).
CHAOS
TXT: Requests the response as a text record (where the version info is stored).
TXT
Last updated 1 year ago