require_once('Net/DNSBL.php'); $iplist = file("/path/to/iplist"); foreach ($iplist as $ip){ $dnsbl = new Net_DNSBL(); $dnsbl->setBlacklists(array( 'sbl-xbl.spamhaus.org', 'dnsbl.sorbs.net', 'bl.spamcop.net', 'dnsbl-1.uceprotect.net', 'dnsbl-2.uceprotect.net', 'dnsbl-3.uceprotect.net', 'isps.spamblocked.com', 'zen.spamhaus.org' )); if ($dnsbl->isListed($ip)) { echo "IP $ip is blacklisted!\n"; } else { echo "IP $ip not listed\n"; } } ?>