Last 24 Hours
image/svg+xml

Statistics

Top 25
  • USA USA+136
  • China China+68
  • India India+79
  • Korea Korea+38
  • Russian Russian+34
  • United Kingdom United Kingdom+20
  • Brazil Brazil+19
  • Pakistan Pakistan+32
  • Germany Germany+20
  • Bulgaria Bulgaria+23
  • Romania Romania+23
  • Netherlands the Netherlands the+17
  • Taiwan Taiwan+9
  • Sweden Sweden+11
  • Hong Kong Hong Kong+12
  • Seychelles Seychelles+15
  • Vietnam Vietnam+10
  • United Arab Emirates United Arab Emirates+5
  • Turkey Turkey+7
  • France, French Republic France+6
  • Singapore Singapore+5
  • Canada Canada+4
  • Iran Iran+1
  • Philippines Philippines+2
  • Argentina Argentina+5

API Examples

PHP

function rbl_lookup($ipv4) {
    $ip = explode(".", $ipv4);
    $rbl_url = ".rbl.blockedservers.com";
    $rbl_hostname = $ip[3].".".$ip[2].".
                  ".$ip[1].".".$ip[0]."". $rbl_url;

    $rbl_lookup = gethostbyname($rbl_hostname);

    if($rbl_lookup == $rbl_hostname) {
        return 1;
    }
    else {
        return 0;
    }
}

Perl

#!/usr/bin/perl
# ./api_perl.pl 123.234.123.234

use Net::DNS;

$check_host = join(".", reverse(split(/\./, $ARGV[0]))) .
                 '.rbl.blockedservers.com';
$check_data = Net::DNS::Resolver->new;
$check_query = $check_data->search("$check_host");

if($check_query) {
    print "$ARGV[0] is listed.\n";
}
else {
    print "$ARGV[0] is not listed.\n";
}

Postfix

#
# Main.cf
#

smtpd_client_restrictions = permit_mynetworks,
        permit_sasl_authenticated,
        reject_unauth_destination,
        reject_rbl_client rbl.blockedservers.com,
        permit

Policyd-Weight

@dnsbl_score = (
  "pbl.spamhaus.org",     3.25,   0,      "DYN_PBL_SPAMHAUS",
  "dnsbl.njabl.org",      4.25,   -1.5,   "BL_NJABL",
  "bl.spamcop.net",       1.75,   -1.5,   "SPAMCOP",
  "sbl-xbl.spamhaus.org", 4.35,   -1.5,   "SBL_XBL_SPAMHAUS",
  "list.dsbl.org",        4.35,   0,      "DSBL_ORG",
  "ix.dnsbl.manitu.net",  4.35,   0,      "IX_MANITU",
  "relays.ordb.org",      3.25,   0,      "ORDB_ORG",
  "rbl.blockedservers.com", 1.25,   0,    "BLOCKEDSERVERS_COM"
);

Service Status

rbl.blockedservers.com
Running
netscan.rbl.blockedservers.com
Running
spam.rbl.blockedservers.com
Running
torexit.rbl.blockedservers.com
Running
BlockedServers.com © 2026 — Free Threat Intelligence Service