Version
By |
Version |
Comment |
noraj |
1.0 |
Creation |
CTF
Description
There's something about this domain... search.icec.tf, I don't see anything, but maybe its all about the conTEXT.
Solution
- Default behaviour of main dns lookup utilities (like nslookup or dig) is to look for A type record.
- But we want to look at TXT type record.
- So instead of using
dig search.icec.tf/
(eq. dig -t A search.icec.tf/
),
- we'll use
dig -t TXT search.icec.tf/
.
For more details about DNS record types, see the List of DNS record types.