From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] display GeoIP information for hosts blocked by Guardian Date: Sat, 02 Dec 2017 19:39:40 +0100 Message-ID: <20171202193940.0fa7006d.peter.mueller@link38.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6368980682738097146==" List-Id: --===============6368980682738097146== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Display GeoIP flag for blocked hosts at guardian.cgi in the WebUI. This makes spotting blocked local IPs (grey flag with question mark) easier. Enumerating the rDNS entry, unfortunately, takes way too long. Signed-off-by: Peter M=C3=BCller --- html/cgi-bin/guardian.cgi | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/html/cgi-bin/guardian.cgi b/html/cgi-bin/guardian.cgi index e15501ef5..3bfa1b522 100644 --- a/html/cgi-bin/guardian.cgi +++ b/html/cgi-bin/guardian.cgi @@ -30,6 +30,7 @@ use Guardian::Socket; require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; +require "${General::swroot}/geoip-functions.pl"; =20 #workaround to suppress a warning when a variable is used only once my @dummy =3D ( @@ -791,7 +792,10 @@ sub showBlockedBox() { print < - $Lang::= tr{'guardian blocked hosts'} + $Lang::tr{'ip address= '} + $Lan= g::tr{'country'} + + $Lan= g::tr{'unblock'} END =20 @@ -814,9 +818,17 @@ END $col=3D"bgcolor=3D'$color{'color20'}'"; } =20 + # enumerate GeoIP information for blocked host... + my $ccode =3D &GeoIP::lookup($blocked_host); + my $flag_icon =3D &GeoIP::get_flag_icon($ccode); + print < - $blocked_host + $blocked_host + + 3D'$ccode' + +
@@ -834,7 +846,7 @@ END =20 # Print notice that currently no hosts are blocked. print "\n"; - print "$Lang::tr{'guardian no entries'}\n"; + print "$Lang::tr{'guardian no entries'}\n"; print "\n"; } =20 --=20 2.13.6 --===============6368980682738097146==--