WHOIS (pronounced "who is") is a query-and-response protocol that dates back to the early days of ARPANET. When the internet was a small research network, maintaining a directory of every connected system was straightforward — a single text file listed every hostname, IP address, and responsible person. As the network grew, this directory became distributed, but the principle remained: there should be a publicly accessible record of who is responsible for every domain and IP block.
Today, WHOIS is governed by ICANN (the Internet Corporation for Assigned Names and Numbers) for generic top-level domains (.com, .net, .org) and by individual registry operators for country-code domains (.uk, .my, .de). The protocol itself is simple — port 43, plain text, minimal structure — but the ecosystem around it has grown increasingly complex.
A WHOIS record contains several categories of information about a registered domain. The exact fields vary by registrar and TLD, but most records include:
example.com).clientTransferProhibited prevents unauthorized transfers, serverHold means the registry has suspended the domain.Historically, all registrant contact details were publicly visible in WHOIS. Anyone could look up a domain and find the owner's name, address, phone number, and email. This was a goldmine for spammers, scammers, and doxxers.
The EU's General Data Protection Regulation (GDPR), which took effect in May 2018, fundamentally changed this. ICANN was forced to redact personal data from WHOIS output for registrants in the European Economic Area. In practice, most registrars extended this redaction globally to simplify compliance.
Today, most WHOIS records show redacted contact information — often just a privacy email like [email protected] that forwards to the real owner. This is separate from paid WHOIS privacy services (offered by most registrars), which replace your details with proxy information even for domains registered outside GDPR jurisdictions.
If you need to contact a domain owner for legitimate reasons (security disclosure, copyright issue, business inquiry), use the privacy proxy email. If the domain has no contact information at all, ICANN provides a Registrant Verification process through accredited registrars.
WHOIS is an essential tool in security investigations and threat intelligence. Here's how professionals use it:
WHOIS records include status codes (also called EPP status codes) that control what operations can be performed on a domain. Understanding these is critical for domain management:
clientTransferProhibited — The most important status. Prevents the domain from being transferred to another registrar without explicit unlock. Should always be enabled unless you're actively transferring.clientUpdateProhibited — Locks all changes to the domain record. Useful for high-value domains that shouldn't change.serverDeleteProhibited — Prevents accidental deletion. Combined with transfer lock, this provides maximum protection.serverHold — The registry has suspended the domain, usually due to abuse, legal dispute, or non-payment. The domain will not resolve.clientRenewProhibited — Prevents automatic renewal. Rarely used intentionally; usually indicates a billing issue.addPeriod / autoRenewPeriod — Grace periods after initial registration or renewal during which the domain can still be refunded.redemptionPeriod — The domain has expired and been deleted, but the original owner can still recover it by paying a redemption fee (often $80-200). Lasts 30 days.pendingDelete — After the redemption period, the domain enters a 5-day pending delete phase before becoming available for new registration.The simplest method is a web-based WHOIS tool. Our WHOIS Lookup retrieves the full record for any domain in real-time, with parsed and formatted output.
For command-line users, the whois utility is available on most systems:
whois example.com — Basic lookupwhois -h whois.verisign-grs.com example.com — Query a specific registry directlywhois 8.8.8.8 — Reverse WHOIS on an IP address (returns the owning organization and netblock)For bulk lookups or automated monitoring, RDAP (Registration Data Access Protocol) is replacing WHOIS. RDAP provides structured JSON output, supports authentication for non-public data, and is required for all gTLDs. Most modern WHOIS tools query RDAP behind the scenes.