Quantcast
Channel: LowEndTalk
Viewing all articles
Browse latest Browse all 39981

Handy script to test IP range to RBL

$
0
0

<?php 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"; } } ?>

This checks your IP's to a RBL listing so you can take appropriate action against abusers.

Credits & Source: http://www.v-nessa.net/2010/07/16/simple-php-script-for-rbl-checking


Viewing all articles
Browse latest Browse all 39981

Trending Articles