In this article, I will write a write-up for Networking Core Protocols that covers DNS: Remembering Addresses, WHOIS, HTTP(S): Accessing the Web, FTP: Transferring Files, SMTP: Sending Email, POP§: Receiving Email and IAMP: Synchronizing Email.
Which DNS record type refers to IPv6?
AAAA
Which DNS record type refers to the email server?
MX
When was the x.com record created? Provide the answer in YYYY-MM-DD format.
1993-04-02
When was the twitter.com record created? Provide the answer in YYYY-MM-DD format.
2000-01-21
Use
telnet
to access the fileflag.html
onMACHINE_IP
. What is the hidden flag?THM{TELNET-HTTP}
We used Wireshark to examine the exchanged messages more closely. The client’s messages are in red, while the server’s responses are in blue. Notice how various commands differ between the client and the server. For example, when you type
ls
on the client, the client sendsLIST
to the server. One last thing to note is that the directory listing and the file we downloaded are sent over a separate connection each.Answer the questions below
Using the FTP client
ftp
on the AttackBox, access the FTP server atMACHINE_IP
and retrieveflag.txt
. What is the flag found?THM{FAST-FTP}
Which SMTP command indicates that the client will start the contents of the email message?
DATA
What does the email client send to indicate that the email message has been fully entered?
.
Looking at the traffic exchange, what is the name of the POP3 server running on the remote server?
Dovecot
Use
telnet
to connect toMACHINE_IP
’s POP3 server. What is the flag contained in the fourth message?THM{TELNET_RETR_EMAIL}
What IMAP command retrieves the fourth email message?
FETCH 4 body[]
Thank you for reading my article. Please leave any questions or comments on improving my learning journey and the THM challenges. We can also connect more on LinkedIn or X.