Period: -24 Hours

image/svg+xml

Statistics

Top 25 Country +(today)
China: China +301
Vietnam: Vietnam +19
Brazil: Brazil +26
India: India +122
United States of America: United States of America +91
Russian Federation: Russian Federation +20
Mexico: Mexico +5
Argentina: Argentina +22
Taiwan: Taiwan +14
Turkey: Turkey +6
Iran: Iran +11
Korea: Korea +22
Colombia: Colombia +2
Italy: Italy +7
Ukraine: Ukraine +3
Spain: Spain +3
Germany: Germany +6
United Kingdom: United Kingdom +3
Romania: Romania +2
Thailand: Thailand +12
Poland: Poland +2
Indonesia: Indonesia +5
Japan: Japan +16
France: France, French Republic +5
Chile: Chile +2

API Examples

PHP

<?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

Status: Unresponsive
rbl.blockedservers.com

Status: Unresponsive
netscan.rbl.blockedservers.com

Status: Unresponsive
spam.rbl.blockedservers.com

Status: Unresponsive
torexit.rbl.blockedservers.com

Contact Details

For all questions and remarks, please use 🔒 PGP

No rights given; all rights are in the dumpster; Copyleft 2012 - 3013 - page generated in 0.012892007827759 secs