From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim FitzGeorge To: development@lists.ipfire.org Subject: [PATCH v2 3/8] ipblacklist: WUI Log page Date: Mon, 27 Apr 2020 15:31:18 +0100 Message-ID: <20200427143123.6378-4-ipfr@tfitzgeorge.me.uk> In-Reply-To: <20200427143123.6378-1-ipfr@tfitzgeorge.me.uk> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6134547479117355715==" List-Id: --===============6134547479117355715== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Tim FitzGeorge --- html/cgi-bin/logs.cgi/ipblacklists.dat | 363 +++++++++++++++++++++++++++++++= ++ 1 file changed, 363 insertions(+) create mode 100755 html/cgi-bin/logs.cgi/ipblacklists.dat diff --git a/html/cgi-bin/logs.cgi/ipblacklists.dat b/html/cgi-bin/logs.cgi/i= pblacklists.dat new file mode 100755 index 000000000..9b8db7062 --- /dev/null +++ b/html/cgi-bin/logs.cgi/ipblacklists.dat @@ -0,0 +1,363 @@ +#!/usr/bin/perl +# +# SmoothWall CGIs +# +# This code is distributed under the terms of the GPL +# +# JC HERITIER +# page inspired from the initial firewalllog.dat +# +# Modified for IPFire by Christian Schmidt +# and Michael Tremer (www.ipfire.org) + +use strict; +use Getopt::Std; + +# enable only the following on debugging purpose +#use warnings; +#use CGI::Carp 'fatalsToBrowser'; + +require '/var/ipfire/general-functions.pl'; +require "${General::swroot}/geoip-functions.pl"; +require "${General::swroot}/lang.pl"; +require "${General::swroot}/header.pl"; + +use POSIX(); + +my %cgiparams=3D(); +my $errormessage =3D ''; + +my @shortmonths =3D ( 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', + 'Sep', 'Oct', 'Nov', 'Dec' ); +my @longmonths =3D ( $Lang::tr{'january'}, $Lang::tr{'february'}, $Lang::tr{= 'march'}, + $Lang::tr{'april'}, $Lang::tr{'may'}, $Lang::tr{'june'}, $Lang::tr{'july'},= $Lang::tr{'august'}, + $Lang::tr{'september'}, $Lang::tr{'october'}, $Lang::tr{'november'}, + $Lang::tr{'december'} ); + +my @now =3D localtime(); +my $dow =3D $now[6]; +my $doy =3D $now[7]; +my $tdoy =3D $now[7]; +my $year =3D $now[5]+1900; + +$cgiparams{'DAY'} =3D $now[3]; +$cgiparams{'MONTH'} =3D $now[4]; +$cgiparams{'ACTION'} =3D ''; + +&Header::getcgihash(\%cgiparams); + +my $start =3D -1; +if ($ENV{'QUERY_STRING'} && $cgiparams{'ACTION'} ne $Lang::tr{'update'}) +{ + my @temp =3D split(',',$ENV{'QUERY_STRING'}); + $start =3D $temp[0]; + $cgiparams{'MONTH'} =3D $temp[1]; + $cgiparams{'DAY'} =3D $temp[2]; +} + +if (!($cgiparams{'MONTH'} =3D~ /^(0|1|2|3|4|5|6|7|8|9|10|11)$/) || + !($cgiparams{'DAY'} =3D~ /^(1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18= |19|20|21|22|23|24|25|26|27|28|29|30|31)$/)) +{ + $cgiparams{'DAY'} =3D $now[3]; + $cgiparams{'MONTH'} =3D $now[4]; +} +elsif($cgiparams{'ACTION'} eq '>>') +{ + my @temp_then=3D(); + my @temp_now =3D localtime(time); + $temp_now[4] =3D $cgiparams{'MONTH'}; + $temp_now[3] =3D $cgiparams{'DAY'}; + @temp_then =3D localtime(POSIX::mktime(@temp_now) + 86400); + ## Retrieve the same time on the next day - + ## 86400 seconds in a day + $cgiparams{'MONTH'} =3D $temp_then[4]; + $cgiparams{'DAY'} =3D $temp_then[3]; +} +elsif($cgiparams{'ACTION'} eq '<<') +{ + my @temp_then=3D(); + my @temp_now =3D localtime(time); + $temp_now[4] =3D $cgiparams{'MONTH'}; + $temp_now[3] =3D $cgiparams{'DAY'}; + @temp_then =3D localtime(POSIX::mktime(@temp_now) - 86400); + ## Retrieve the same time on the previous day - + ## 86400 seconds in a day + $cgiparams{'MONTH'} =3D $temp_then[4]; + $cgiparams{'DAY'} =3D $temp_then[3]; +} + +if (($cgiparams{'DAY'} ne $now[3]) || ($cgiparams{'MONTH'} ne $now[4])) +{ + my @then =3D (); + if ( ( $cgiparams{'MONTH'} eq $now[4]) && ($cgiparams{'DAY'} > $now[3]) || + ( $cgiparams{'MONTH'} > $now[4] ) ) { + @then =3D localtime(POSIX::mktime( 0, 0, 0, $cgiparams{'DAY'}, $cgiparams{= 'MONTH'}, $year - 1901 )); + } else { + @then =3D localtime(POSIX::mktime( 0, 0, 0, $cgiparams{'DAY'}, $cgiparams{= 'MONTH'}, $year - 1900 )); + } + $tdoy =3D $then[7]; + my $lastleap=3D($year-1)%4; + if ($tdoy>$doy) { + if ($lastleap =3D=3D 0 && $tdoy < 60) { + $doy=3D$tdoy+366; + } else { + $doy=3D$doy+365; + } + } +} + +my $datediff=3D0; +my $dowd=3D0; +my $multifile=3D0; +if ($tdoy ne $doy) { + $datediff=3Dint(($doy-$tdoy)/7); + $dowd=3D($doy-$tdoy)%7; + if (($dow-$dowd)<1) { + $datediff=3D$datediff+1; + } + if (($dow-$dowd)=3D=3D0) { + $multifile=3D1; + } +} + +my $monthstr =3D $shortmonths[$cgiparams{'MONTH'}]; +my $longmonthstr =3D $longmonths[$cgiparams{'MONTH'}]; +my $day =3D $cgiparams{'DAY'}; +my $daystr=3D''; +if ($day <=3D 9) { + $daystr =3D " $day"; } +else { + $daystr =3D $day; +} + +my %lists; +my %directions; +my %sources =3D (); +my %settings =3D (); +&General::readhash("${General::swroot}/ipblacklist/settings", \%settings); +eval qx|/bin/cat /var/ipfire/ipblacklist/sources|; + +foreach my $blacklist (keys %sources) +{ + $lists{$blacklist} =3D {} if ($settings{$blacklist} eq 'on'); +} + +my $skip=3D0; +my $filestr=3D''; +if ($datediff=3D=3D0) { + $filestr=3D"/var/log/messages"; +} else { + $filestr=3D"/var/log/messages.$datediff"; + $filestr =3D "$filestr.gz" if -f "$filestr.gz"; +} + +if (!(open (FILE,($filestr =3D~ /.gz$/ ? "gzip -dc $filestr |" : $filestr)))= ) { + $errormessage =3D "$Lang::tr{'date not in logs'}: $filestr $Lang::tr{'could= not be opened'}"; + $skip=3D1; + # Note: This is in case the log does not exist for that date +} + +my $lines =3D 0; +my $directions =3D 0; + +if (!$skip) +{ + while () + { + if (/^${monthstr} ${daystr} ..:..:.. [\w\-]+ kernel:.*BLKLST_(\w+)\s*IN=3D= (\w*)/) + { + my $list =3D $1; + + if ($2 =3D~ m/ppp|red/) + { + $lists{$list}{in}++; + $directions{in}++; + } + else + { + $lists{$list}{out}++; + $directions{out}++; + } + + $lines++; + } + + } + close (FILE); +} + +if ($multifile) { + $datediff=3D$datediff-1; + if ($datediff=3D=3D0) { + $filestr=3D"/var/log/messages"; + } else { + $filestr=3D"/var/log/messages.$datediff"; + $filestr =3D "$filestr.gz" if -f "$filestr.gz"; + } + if (!(open (FILE,($filestr =3D~ /.gz$/ ? "gzip -dc $filestr |" : $filestr))= )) { + $errormessage=3D"$Lang::tr{'date not in logs'}: $filestr $Lang::tr{'could = not be opened'}"; + $skip=3D1; + } + if (!$skip) { + while () { + if (/^${monthstr} ${daystr} ..:..:.. [\w\-]+ kernel:.*BLKLST_(\w+)\s*IN= =3D(\w+)/) + { + my $list =3D $1; + + if ($2 =3D~ m/ppp|red/) + { + $lists{$list}{in}++; + $directions{in}++; + } + else + { + $lists{$list}{out}++; + $directions{out}++; + } + + $lines++; + } + } + close (FILE); + } +} + +my $MODNAME=3D"fwlogs"; + +&Header::showhttpheaders(); +&Header::openpage($Lang::tr{'ipblacklist logs'}, 1, ''); +&Header::openbigbox('100%', 'left', '', $errormessage); + + +if ($errormessage) { + &Header::openbox('100%', 'left', $Lang::tr{'error messages'}); + print "$errormessage \n"; + &Header::closebox(); +} + +&Header::openbox('100%', 'left', "$Lang::tr{'settings'}"); + +print < + + + + + + + + + + +
$Lang::tr{'month'}:  +  $Lang::tr{'day'}:&nb= sp; +
+ +END +; + +&Header::closebox(); + +&Header::openbox('100%', 'left', $Lang::tr{'firewall log'}); +print "

$Lang::tr{'ipblacklist hits'} $longmonthstr $daystr: $lines=

"; + +my %color =3D (); +my %mainsettings =3D (); +&General::readhash("${General::swroot}/main/settings", \%mainsettings); +&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/i= nclude/colors.txt", \%color); + +my @lists =3D sort keys (%lists); + +print < + + +$Lang::tr{'ipblackl= ist id'} +$Lang::tr{'ipblackl= ist category'} +$Lang::tr{'ipblackl= ist input'} +$Lang::tr{'ipblackl= ist output'} + + +$Lang::tr{'count'} +$Lang::tr{'percentage'} +$Lang::tr{'count'} +$Lang::tr{'percentage'} + +END +; + +$lines =3D 0; +my $lists =3D join ',', @lists; + +foreach my $list (@lists) +{ + my $col =3D ($lines++ % 2) ? "bgcolor=3D'$color{'color20'}'" : "bgcolor=3D'= $color{'color22'}'"; + my $category =3D exists( $sources{$list}) ? $Lang::tr{"ipblacklist category= $sources{$list}{'category'}"} : ' '; + + print ""; + + print "
=
"; + + if (exists($sources{$list}) and $sources{$list}{'info'}) + { + print "$list<= /a>"; + } + else + { + print "$list"; + } + + print "$category"; + + foreach my $direction ('in', 'out') + { + my $count =3D $lists{$list}{$direction} || 0; + my $percent =3D $directions{$direction} > 0 ? $count * 100 / $directions{$= direction} : 0; + $percent =3D sprintf("%.f", $percent); + print "$count"; + print "$percent%"; + } + + print ""; +} +print < +END +; + +&Header::closebox(); +&Header::closebigbox(); +&Header::closepage(); + +sub checkversion { + #Automatic Updates is disabled + return "0","0"; +} --=20 2.16.4 --===============6134547479117355715==--