-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDNS in Detail
More file actions
63 lines (40 loc) · 1.23 KB
/
Copy pathDNS in Detail
File metadata and controls
63 lines (40 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#Task 1 What is DNS?
- What does DNS Stand for?
Domain Name System
#Task 2 Domain Hierarchy
- What is the maximum length of a subdomain?
63
- Which of the following characters cannot be used in a subdomain ( 3 b _ - )?
_
- What is the maximum length of a domain name?
253
- What type of TLD is .co.uk?
ccTLD
#Task 3 Record Types
- What type of record would be used to advise where to send email?
mx
- What type of record handles IPv6 addresses?
AAAA
# Task 4 Making A Request
- What field specifies how long a DNS record should be cached for?
TTL
- What type of DNS Server is usually provided by your ISP?
recursive
- What type of server holds all the records for a domain?
authoritative
# Task 5 Practical
- What is the CNAME of shop.website.thm?
hint: cname=shop
shops.myshopify.com
- What is the value of the TXT record of website.thm?
hint: txt=
THM{7012BBA60997F35A9516C2E16D2944FF}
- What is the numerical priority value for the MX record?
hint:mx=
30
- What is the IP address for the A record of www.website.thm?
hint:A=
10.10.10.10
https://tryhackme.com/room/dnsindetail
https://dev.to/applegamer22/tryhackme-dns-in-detail-3b2n
https://blog.gauravraj.tech/posts/dns-in-detail-tryhackme-machine-writeup-and-walkthrough/