2 # Multi-RBL Query tool, developer Vikram <vr@udel.edu>
5 die "Syntax: $0 -H <ip address>\n" unless $ARGV[1];
7 $soc = new IO
::Socket
::INET
->new(PeerPort
=>80,
9 PeerAddr
=>"rbls.org") or die("Cannot connect to CERT");
14 $soc->send("GET $uri HTTP/1.1\nHost: rbls.org\n\n");
22 for( $i=0;$i<$len;$i++ ) {
23 next unless( defined $buff[$i] );
27 if ( $buff[$i] eq "<tr bgcolor=#ffc0c0>" ) {
28 $rbl = substr($buff[$i+1], 5, index($buff[$i], "</tr>") - 5);
29 next if ( index($rbl, '.') == -1 );
30 print "$ip is listed in the following RBLS: " if ( $alert == 0 );
35 print "$ip is not listed in any RBLS" if ( $alert == 0 );