I would like to talk to you about DNS Blacklists. Most IT Administrators that deal with mail have heard of this term but some components are still unclear. This post aims to clarify these doubts and is split into 3 sections:
1) Definition of DNS Blacklists
2) How they work
3) Use of DNSBlacklists.
I have also added a bonus section at the end, which explains how to test DNSBlacklists.
Domain Name System Blacklists (DNSBLs) are spam blocking lists which contain a number of IPs (mailserver IPs) which have been reported as sending out spam. These lists are based on the Internet’s DNS, which converts IP addresses such as 130.94.64.252 into domain names like spam.com, making the lists much easier to read, use, and search.
DNS Blacklists may also include a zombie check. These particular DNS Blacklists therefore check the addresses of zombie computers or other computers being used to send spam, listing the addresses of ISPs who willingly host spammers, or addresses which have sent spam to a honeypot system.
Many anti-spam software programs such as GFI MailEssentials and Ninja Blade use these lists to control Spam by blocking any email that originates from one of these domains. These lists are developed and maintained by organisations such as SORBS and SpamHaus.
The three basic components that make up a DNS Blacklist are the following:
- A domain to host it under.
- A name server to host that domain.
- A list of addresses to publish the list.
The following four steps explain what is done when a mail server checks an email sender againts a DNS Blacklist:
- The receiving mailserver takes the sender’s mail server IP address, say, 174.36.154.100 and reverses the order of octets, yielding 100.154.36.174
- It appends the DNSBL’s domain name: 100.154.36.174.dnsbl.example.org
- It looks up this name in the DNS as a domain name (“A” record). This will return either an IP address, indicating that the sender is listed; or an “NXDOMAIN” (“No such domain”) code, indicating that the sender is not.
- If the sender is blacklisted, what is done with the email then depends on what actions you configure on your mail server or anti-spam software.
DNSBLs are used by spam blocking software like GFI MailEssentials where different blacklists are given point scores by SpamRazer, GFI MailEssentials’ main anti-spam engine, which can be mitigated by white rules to reduce false positives. They can also be used by mail servers like Exchange and Postfix to outright block email if the senders IP address or host name is listed in a DNSBL.
Some DNSBLs in anti-spam software also hold a cache of the requests that have been done in memory. All requests are retained in the cache for X days. This will result in faster responses for the items which are found in the cache, since DNS requests may be time consuming. The side effect of this is that the DNSBL feature may return that an IP address is on the DNSBL site, when in reality it has been removed.
Finally, I would like to give you a few tips on how to test DNSBlacklists using Nslookup.
- Open Command Prompt
- Type ‘nslookup’ without the “‘”and press Enter
- By default the query type is for A records. You can specify other query types, for example to request TXT records, use ‘set type=txt’ or ‘set q=txt’
- Type the domain that you would like to query (e.g. sorbs.net or bl.spamcop.net )
- When the domain does not exist, you will get a “Non-existent domain” in the response.
- When the domain exists, the way the result is displayed will depend on the type of DNS record requested.
- For A records, one or more IP addresses may be returned.
1 Comment