Add handler for unknown IPs

This commit is contained in:
Laura Hausmann 2021-05-03 09:28:30 +02:00
parent 120e82cfdd
commit 291c975662
Signed by: zotan
GPG key ID: 5EC1D38FFC321311

View file

@ -11,7 +11,7 @@ $hostname = gethostbyaddr($ip);
$res = array();
$res["address"] = $ip;
if ($ip !== $hostname){
$res["hostname"] = $hostname;
$res["hostname"] = $hostname;
}
$countrydb = '/var/lib/GeoIP/GeoLite2-Country.mmdb';
$asndb = '/var/lib/GeoIP/GeoLite2-ASN.mmdb';
@ -21,5 +21,12 @@ $asnr = (new Reader($asndb))->get($ip);
$res["country"] = (new Reader($countrydb))->get($ip)["country"]["iso_code"];
$res["asn"] = "AS".$asnr["autonomous_system_number"]." ".$asnr["autonomous_system_organization"];
if ($res["country"] == null) {
$res["country"] = "_unknown";
}
if ($asnr["autonomous_system_number"] == null) {
$res["asn"] = "No GeoIP entry found, are you new?";
}
print(json_encode($res));