in reply to Re: Apache log piped to Perl
in thread Apache log piped to Perl
#!/usr/bin/perl -w $SIG{CHLD} = 'IGNORE'; use strict; use Fcntl qw(:DEFAULT); use Net::Netmask; use Net::Whois::IANA; use Proc::Fork; use SDBM_File; my $iana = Net::Whois::IANA->new; my $bye = join '|', ( 'strings known to occur', 'in custname and orgname', ); my $badhosts = 'some\.bad|other\.worse\d+'; tie (my %seen, 'SDBM_File', '/some/sdbm', O_RDWR|O_CREAT, 0666) or die "$!"; while (<STDIN>) { chomp; next if exists $seen{$_}; $seen{$_} = 1; my $ip = $_; child { my $problem = 0; my $host = `host $ip` or die "$!"; $problem = 1 if $host =~ /$badhosts/i; if ($problem or $host =~ /not found/) { $iana->whois_query(-ip=>$ip); my $inetnum = $iana->inetnum || ''; my $custname = $iana->{QUERY}->{custname} || ''; my $orgname = $iana->{QUERY}->{orgname} || ''; exit unless $inetnum and ($problem or $custname or $orgname); if ($problem or $custname =~ /$bye/i or $orgname =~ /$bye/i){ my $mask = Net::Netmask->new($inetnum); `iptables -A INPUT -s $mask -j DROP`; } } exit }; } untie %seen;
|
|---|