BlastDNS
An async rust library for DNS lookups. Can be used to perform simple, one-off lookups or bulk lookups in parallel with many resolvers, similar to massdns.
Features
BlastDNS is simultaneously a:
Benchmark
20K DNS lookups against local dnsmasq, with 100 workers:
| Library | Language | Time | QPS | Success Rate | vs dnspython |
|---|---|---|---|---|---|
| massdns | C | 0.308s | 65,019 | 100% | 31.52x |
| blastdns-cli | Rust | 0.336s | 59,548 | 100% | 28.86x |
| blastdns-python | Python+Rust | 1.564s | 12,791 | 100% | 6.20x |
| dnspython | Python | 9.695s | 2,063 | 100% | 1.00x |
CLI
The CLI mass-resolves hosts using a specified list of resolvers. It outputs to JSON.
# send all results to jq
|
# print only the raw IPv4 addresses
|
# load from stdin
|
# skip empty responses (e.g., NXDOMAIN with no answers)
|
# skip error responses (e.g., timeouts, connection failures)
|
CLI Help
$ blastdns --help
BlastDNS - Async DNS spray client
Usage: blastdns [OPTIONS] --resolvers <FILE> [HOSTS_TO_RESOLVE]
Arguments:
[HOSTS_TO_RESOLVE] File containing hostnames to resolve (one per line). Reads from stdin if not specified
Options:
--rdtype <RECORD_TYPE>
Record type to query (A, AAAA, MX, ...) [default: A]
--resolvers <FILE>
File containing DNS nameservers (one per line)
--threads-per-resolver <THREADS_PER_RESOLVER>
Worker threads per resolver [default: 2]
--timeout-ms <TIMEOUT_MS>
Per-request timeout in milliseconds [default: 1000]
--retries <RETRIES>
Retry attempts after a resolver failure [default: 10]
--purgatory-threshold <PURGATORY_THRESHOLD>
Consecutive errors before a worker is put into timeout [default: 10]
--purgatory-sentence-ms <PURGATORY_SENTENCE_MS>
How many milliseconds a worker stays in timeout [default: 1000]
--skip-empty
Don't show responses with no answers
--skip-errors
Don't show error responses
-h, --help
Print help
-V, --version
Print version
Example JSON output
BlastDNS outputs to JSON by default:
Debug Logging
BlastDNS uses the standard Rust tracing ecosystem. Enable debug logging by setting the RUST_LOG environment variable:
# Show debug logs from blastdns only
RUST_LOG=blastdns=debug
# Show debug logs from everything
RUST_LOG=debug
# Show trace-level logs for detailed internal behavior
RUST_LOG=blastdns=trace
Valid log levels (from least to most verbose): error, warn, info, debug, trace
Rust API
use ;
use StreamExt;
use RecordType;
use Duration;
// read DNS resolvers from a file (one per line -> vector of strings)
let resolvers = read_to_string
.expect
.lines
.map
.;
// create a new blastdns client with default config
let client = new.await?;
// or with custom config
let mut config = default;
config.threads_per_resolver = 5;
config.request_timeout = from_secs;
let client = with_config.await?;
// lookup a domain
let result = client.resolve.await?;
// print the result as serde JSON
println!;
// resolve_batch: process many hosts in parallel with bounded concurrency
// streams results back as they complete
let wordlist = ;
let mut stream = client.resolve_batch;
while let Some = stream.next.await
// resolve_multi: resolve multiple record types for a single host in parallel
let record_types = vec!;
let results = client.resolve_multi.await?;
for in results
Python API
The blastdns Python package is a thin wrapper around the Rust library.
# install python dependencies
# build and install the rust->python bindings
# run tests
To use it in Python, you can use the Client class:
=
=
# resolve: lookup a single host
= await
# resolve_batch: process many hosts in parallel with bounded concurrency
# streams results back as they complete
=
# resolve_multi: resolve multiple record types for a single host in parallel
=
= await
Python API Methods
-
Client.resolve(host, record_type=None): Lookup a single hostname. Defaults toArecords. Returns a JSON-shaped dictionary matching the CLI output. -
Client.resolve_batch(hosts, record_type=None, skip_empty=False, skip_errors=False): Resolve many hosts in parallel. Takes an iterable of hostnames and streams back(host, response)tuples as results complete. Setskip_empty=Trueto filter out successful responses with no answers. Setskip_errors=Trueto filter out error responses. Useful for processing large wordlists efficiently. -
Client.resolve_multi(host, record_types): Resolve multiple record types for a single hostname in parallel. Takes a list of record type strings (e.g.,["A", "AAAA", "MX"]) and returns a dictionary keyed by record type. Each value is either a successful response or an error dictionary with an"error"key.
ClientConfig exposes the knobs shown above (threads_per_resolver, request_timeout_ms, max_retries, purgatory_threshold, purgatory_sentence_ms) and validates them before handing them to the Rust core.
Architecture
BlastDNS is built on top of hickory-dns, but only makes use of the low-level Client API, not the Resolver API.
BlastDNS is designed to be faster the more resolvers you give it.
Beneath the hood of the BlastDNSClient, each resolver gets its own ResolverWorker tasks, with a configurable number of workers per resolver (default: 2, configurable via BlastDNSConfig.threads_per_resolver).
When a user calls BlastDNSClient::resolve, a new WorkItem is created which contains the request (host + rdtype) and a oneshot channel to hold the result. This WorkItem is put into a crossfire MPMC queue, to be picked up by the first available ResolverWorker. Workers are spawned immediately during client instantiation.
Testing
To run the full test suite including integration tests, you'll need a local DNS server running on 127.0.0.1:5353 and [::1]:5353.
Install dnsmasq:
Start the test DNS server:
Then run tests with:
When done, stop the test DNS server:
Linting
Run clippy for lints:
Run rustfmt for formatting: