A DNS resolver written in Go. This project is a recreational project or an attempt to get a basic understanding of how DNS works.
Screen.Recording.2025-01-30.at.19.54.57.mov
This project is a simple DNS resolver implemented in Go. It sends DNS queries to a specified DNS server and parses the responses. The project aims to provide a basic understanding of how DNS works and how to implement a DNS resolver from scratch.
-
Clone the repository:
git clone https://github.com/unnxt30/dns-go.git cd dns-go
-
Install the required Go version (1.22.1 or later).
-
Build the project:
go build -o dns-go main.go
To use the DNS resolver, run the compiled binary with the -domain
flag to specify the domain you want to resolve:
./dns-go -domain example.com