Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
oishifashion /
public_html /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2025-12-18 07:34
admin.php
5.24
KB
-rw-r--r--
2025-12-16 09:20
delete_product.php
299
B
-rw-r--r--
2025-08-13 23:10
error_log
11.5
KB
-rw-r--r--
2025-12-23 06:43
index.php
63.88
KB
-rw-r--r--
2025-12-16 09:20
login.php
1.52
KB
-rw-r--r--
2025-08-13 23:10
logout.php
145
B
-rw-r--r--
2025-08-13 23:10
product_form.php
4.04
KB
-rw-r--r--
2025-08-13 23:10
products.php
1.98
KB
-rw-r--r--
2025-08-13 23:10
wp-blog-header.php
2.74
KB
-rw-r--r--
2025-12-18 07:34
wp-cron.php
2.74
KB
-rw-r--r--
2025-12-18 07:34
Save
Rename
<?php require_once __DIR__ . '/../functions.php'; if (!empty($_SESSION['admin'])) { header('Location: index.php'); exit; } $error = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $user = $_POST['username'] ?? ''; $pass = $_POST['password'] ?? ''; if ($user === ADMIN_USER && password_verify($pass, ADMIN_PASS_HASH)) { $_SESSION['admin'] = true; header('Location: index.php'); exit; } else { $error = 'Invalid credentials'; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Admin Login</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-100"> <div class="min-h-screen flex items-center justify-center px-4"> <form method="post" class="bg-white rounded-2xl p-8 w-full max-w-sm shadow"> <h1 class="text-2xl font-bold">Admin Login</h1> <?php if ($error): ?><div class="mt-3 text-sm text-red-600"><?= e($error) ?></div><?php endif; ?> <div class="mt-4"> <label class="text-sm">Username</label> <input class="mt-1 w-full border border-gray-300 rounded-lg px-3 py-2" name="username" required> </div> <div class="mt-3"> <label class="text-sm">Password</label> <input type="password" class="mt-1 w-full border border-gray-300 rounded-lg px-3 py-2" name="password" required> </div> <button class="mt-5 w-full bg-black text-white py-2 rounded-lg font-semibold">Sign In</button> </form> </div> </body> </html>