
#Dig Dug
Turns out this machine is a DNS server - it's time to get your shovels out. This is a very easy room to get familiar with DNS requests. Let's dig a dug.
#Writeup
#Retrieve the flag from the DNS server!
This task is very simple. Just read the description and think clearly. First thing I did whas writing down the given information:
<IP_ADDRESS>
is our DNS server
dig
is the command we use to gather DNS information
givemetheflag.com
is the domain name to investigate
Now that we know that, let's put it together in a one-liner:
The @
parameter defines the DNS server we wanna use. This will provide us the information we need. The flag is in a TXT-record:
Congratiulations, you've completed the room.