← All articles

How DNS Becomes a Weapon (And How Operators Shut the Door)

September 18, 2026 · 6 min read

DNS is built for efficiency — small requests, useful answers, minimal overhead. That same efficiency is exactly what makes it attractive to abuse for one specific class of attack: DNS amplification. This is a defensive explainer, not a how-to — the goal is understanding the mechanism well enough to make sure your own infrastructure isn't unwittingly part of one.

The core trick: small in, big out

A DNS amplification attack relies on two properties of the protocol that are individually completely normal: a DNS query can be tiny, and a DNS response — particularly for certain record types, or when DNSSEC data is included — can be many times larger. On top of that, DNS traditionally runs over UDP, a connectionless protocol where the source IP address on a packet isn't verified by default.

Put those together, and an attacker can send a small query to an open DNS resolver with the source IP address forged to be the victim's address. The resolver, doing exactly what it's designed to do, sends its (much larger) response — not back to the attacker, but to the forged address: the victim. Multiply that across thousands of open resolvers and a flood of unwanted traffic, many times larger than what the attacker actually sent, lands on the victim's network.

Why "open resolvers" are the fuel

The attack depends on resolvers that will answer DNS queries from anyone on the internet, not just their own intended users — these are called open resolvers. A DNS server that's only supposed to serve your own office network, but is accidentally reachable and responsive from the public internet, becomes free amplification infrastructure for anyone who finds it, without the operator ever knowing.

The defensive controls that actually matter

If you run any DNS infrastructure — a recursive resolver, a lightly-configured DNS server on a cloud instance — a short list of controls closes off almost all of this risk:

Checking your own exposure

If you operate DNS infrastructure, the first useful step is simply confirming whether it's accidentally open to the public. Running a scan and reviewing your nameserver and DNS configuration is a reasonable starting point for spotting misconfigurations — and if something looks unexpectedly exposed, that's worth investigating with your hosting provider before it's discovered by someone with worse intentions.

The bigger picture

DNS amplification isn't a flaw unique to DNS — the same reflection principle has been used against NTP, memcached, and other UDP-based protocols with a similar small-query/large-response shape. The common thread is always the same: an open, unauthenticated service, and a network that doesn't verify where its outbound traffic claims to come from. Closing either gap breaks the attack.

🔮 DNS fact: The .com TLD was one of the original six top-level domains created in 1985 — the very first .com ever registered was symbolics.com, for a defunct computer company.

Want to see this analysed on a real domain?

Run a free DNS scan →