Check-Host.cc
Advanced Settings
Show world map

Highlight nodes that resolve to this value.

Global ANY Query DNS Checker

The ANY query (frequently referred to by its wildcard designation, the * query) is not a true resource record that an administrator configures within a zone file. Instead, it is a specialized, diagnostic request type built into the foundational architecture of the Domain Name System. When a client executes a standard DNS query, it explicitly requests a single data type, such as asking specifically for the A records or the MX records. An ANY query bypasses this filtering. It instructs the authoritative nameserver to bundle and return every single configured record associated with the requested domain node, regardless of type.

The Legacy of Network Troubleshooting

During the early expansion of the internet, the ANY query was an indispensable tool for systems administrators and network engineers. Instead of manually probing a server multiple times to map out its A, MX, NS, and TXT configurations, an engineer could simply drop into a terminal, execute dig ANY example.com, and instantly receive a comprehensive snapshot of the domain's routing infrastructure. It was the fastest way to verify that a zone file was parsed correctly after a reboot of the BIND service. However, the convenience of this bulk-download mechanism carried a severe architectural flaw that would eventually be weaponized at a massive scale.

Asymmetric Payloads and DDoS Amplification

The core issue with ANY queries is extreme payload asymmetry. The DNS protocol operates primarily over the stateless User Datagram Protocol (UDP). A malicious actor can craft a tiny, 40-byte UDP request packet, spoof the source IP address to perfectly match the IP of their intended victim, and broadcast this request to thousands of open DNS resolvers across the internet. When the resolvers process the ANY query, they fetch the entire target zone—which might contain thousands of bytes of DNSSEC signatures, TXT policies, and routing data—and fire that massive response directly at the victim's spoofed IP. This creates a catastrophic DDoS reflection attack, amplifying the attacker's bandwidth by factors of 50x to 100x and instantly overwhelming the victim's network interfaces.

RFC 8482 and Modern Mitigation Strategies

To neutralize this infrastructure abuse, the Internet Engineering Task Force (IETF) published RFC 8482, formally titled "Providing Minimal-Sized Responses to DNS Queries that have QTYPE=ANY". This document fundamentally altered how edge servers handle these requests. Modern, enterprise-grade DNS providers—including Cloudflare, AWS Route 53, and Google Public DNS—no longer respect ANY queries. When an edge server receives an ANY request today, it intentionally suppresses the zone data. It will typically return a heavily minimized subset of records (like just the SOA), or it will synthesize a blank HINFO response indicating that the query type is unsupported. Utilizing an ANY query checker today is primarily an auditing exercise to ensure your authoritative servers are properly mitigating amplification vulnerabilities.