Glossary
SECURITY

Blacklist / Blocklist

A database of IP addresses or domain names known to send spam, host malware, or engage in phishing. Mail servers and browsers query blacklists to block or flag suspicious traffic.

A blacklist (also called blocklist or DNSBL) is a real-time database of IP addresses or domain names that have been identified as sources of spam, phishing, malware, or other abusive behavior. Mail servers, email gateways, and browsers query these lists to make filtering decisions.

Types

TypeWhat It ListsUsed By
IP blacklistsSpam-sending IP addressesMail servers (Spamhaus ZEN, Barracuda)
Domain blacklistsDomains in spam contentContent filters (SURBL, URIBL)
Browser reputationPhishing/malware sitesChrome, Firefox (Google Safe Browsing)

How DNSBL Works

A DNS-based blacklist (DNSBL) is queried via DNS. To check if 1.2.3.4 is listed on zen.spamhaus.org:

dig 4.3.2.1.zen.spamhaus.org
# NXDOMAIN → not listed
# Returns 127.0.0.x → listed

IP octets are reversed, then the DNSBL domain is appended. This lets mail servers check millions of IPs in milliseconds using standard DNS infrastructure.

Impact

Being listed on Spamhaus ZEN can block 80-90% of email traffic — it’s queried by Gmail, Microsoft 365, Yahoo, and most enterprise mail gateways. Being listed on Google Safe Browsing shows security warnings in Chrome, Firefox, and Safari.

Getting Delisted

Fix the root cause first (compromised server, spam trap hit, malware). Then submit a delist request to the specific list operator. Most auto-expire after 24-72 hours once the IP stops generating complaints; others require manual review.