diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-02 11:16:24 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-02 11:16:24 (GMT) |
commit | b15adb7762b6caaecaa83637abfcf5fdb4802092 (patch) | |
tree | 64eddbe2aa1a7f98a140be0f7973f05d7a781ae0 /contrib/rblcheck-web | |
parent | c4d5882b9e1d07c7b61091062b7d085fa5f00284 (diff) | |
download | monitoring-plugins-b15adb7762b6caaecaa83637abfcf5fdb4802092.tar.gz |
Remove "contrib" plugins
These days, sites such as "Nagios Exchange" are a much better place for
publishing plugins not maintained by the Plugins Development Team.
Diffstat (limited to 'contrib/rblcheck-web')
-rwxr-xr-x | contrib/rblcheck-web | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/contrib/rblcheck-web b/contrib/rblcheck-web deleted file mode 100755 index eb4fcde..0000000 --- a/contrib/rblcheck-web +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | #!/usr/bin/perl | ||
2 | # Multi-RBL Query tool, developer Vikram <vr@udel.edu> | ||
3 | use IO::Socket::INET; | ||
4 | |||
5 | die "Syntax: $0 -H <ip address>\n" unless $ARGV[1]; | ||
6 | |||
7 | $soc = new IO::Socket::INET->new(PeerPort=>80, | ||
8 | Proto=>'tcp', | ||
9 | PeerAddr=>"rbls.org") or die("Cannot connect to CERT"); | ||
10 | |||
11 | $ip = $ARGV[1]; | ||
12 | $uri = '/?q='.$ip; | ||
13 | |||
14 | $soc->send("GET $uri HTTP/1.1\nHost: rbls.org\n\n"); | ||
15 | @buff = <$soc>; | ||
16 | delete @buff[0..7]; | ||
17 | $len = @buff; | ||
18 | |||
19 | $alert = 0; | ||
20 | |||
21 | |||
22 | for( $i=0;$i<$len;$i++ ) { | ||
23 | next unless( defined $buff[$i] ); | ||
24 | chomp($buff[$i]); | ||
25 | #print "$buff[$i]\n"; | ||
26 | |||
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 ); | ||
31 | print "$rbl "; | ||
32 | $alert = 1; | ||
33 | } | ||
34 | } | ||
35 | print "$ip is not listed in any RBLS" if ( $alert == 0 ); | ||
36 | print "\n"; | ||
37 | exit($alert); | ||