X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=840a3987bf29af50b9b0dc8dd6c254eac3b36493;hp=9f4bb2b09c63118e49df86a728d379ca35675ac6;hb=4e8c44da4b14508bb68da58c20d00e2fc887846d;hpb=c18a447633cb933757c93d6e51a18856fb8dbf54;ds=sidebyside diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index 9f4bb2b..840a398 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -402,6 +402,11 @@ class userAgent { $this->version = $regs[1]; $this->bot = true; } + elseif (preg_match('|heritrix/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'Heritrix'; + $this->version = $regs[1]; + $this->bot = true; + } elseif (preg_match('|Slurp|', $this->uastring, $regs)) { $this->brand = 'Slurp'; $this->version = null; @@ -417,6 +422,11 @@ class userAgent { $this->version = $regs[1]; $this->bot = true; } + elseif (preg_match('|Microsoft URL Control - ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'Microsoft URL Control'; + $this->version = $regs[1]; + $this->bot = true; + } elseif (preg_match('|([0-9a-zA-Z\.+]+)_AC-Plug|', $this->uastring, $regs)) { $this->brand = 'AC-Plug'; $this->version = $regs[1]; @@ -556,7 +566,7 @@ class userAgent { 'NetResearchServer','LinkWalker','Zeus','W3C_Validator','ZyBorg','Ask Jeeves','ia_archiver', 'PingALink Monitoring Services','IlTrovatore-Setaccio','Nutch','Mercator','search.ch', 'appie','larbin','NutchCVS','ObjectsSearch','Webchat','Mediapartners-Google','Schmozilla', - 'FavOrg','findlinks','DataCha0s','','','','','','','','',''); + 'FavOrg','findlinks','DataCha0s','ichiro','Francis','','','','','','',''); if (in_array($this->brand, $botArray)) { $this->bot = true;