mirror of
git://git.acid.vegas/massrdns.git
synced 2024-11-21 15:16:37 +00:00
dynamic reverse dns lookup with rotating servers & concurrency
LICENSE | ||
massrdns.go | ||
README.md |
MASSRDNS
Reverse DNS Lookup Tool
This tool provides an efficient way to perform reverse DNS lookups on IP addresses, especially useful for large IP ranges. It uses concurrent workers and distributes the work among them to achieve faster results. Each request will randomly rotate betweeen the supplied DNS servers to split the load of a large CDIR across many DNS servers.
Building the Project
- Clone the repository:
git clone https://github.com/acidvegas/massrns
cd massrdns
- Build the project:
go build -o massrdns
This will produce an executable named massrdns
.
Usage
The tool requires two main arguments:
-cidr
: The IP address CIDR range you want to perform reverse DNS lookup on.-dnsfile
: The path to a file containing DNS servers, one per line.
Optional arguments:
-concurrency
: The number of concurrent workers for reverse DNS lookup. Default is 10.
Example:
./massrdns -cidr "0.0.0.0/0" -dnsfile "dns_servers.txt"
DNS Servers File Format
The file should contain one DNS server per line, e.g.:
8.8.8.8
1.1.1.1
4.23.54.222:9001
The input defaults to port 53 if no port is specified.
Mirrors
acid.vegas • GitHub • GitLab • SuperNETs