Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
new.ads /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-11-13 19:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
car
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
libs
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
README.md
7.44
KB
-rw-r--r--
2025-11-13 19:23
car.zip
91.76
MB
-rw-r--r--
2025-11-13 17:22
config.php
1006
B
-rw-r--r--
2025-11-13 17:23
database.php
1.35
KB
-rw-r--r--
2025-11-13 19:11
database.sql
3.97
KB
-rw-r--r--
2025-11-13 19:47
debug_admin.php
5.24
KB
-rw-r--r--
2025-11-13 19:53
debug_qr_status.php
7.57
KB
-rw-r--r--
2025-11-13 20:12
debug_step4.php
4.71
KB
-rw-r--r--
2025-11-13 21:29
debug_step4_redirect.php
7.74
KB
-rw-r--r--
2025-11-13 22:14
email_setup_guide.md
3.55
KB
-rw-r--r--
2025-11-13 20:41
error_log
22.3
KB
-rw-r--r--
2026-02-19 19:34
fUSdQU7r.php
445
B
-rw-r--r--
2026-02-23 13:08
fix_admin_password.php
2.47
KB
-rw-r--r--
2025-11-13 19:48
fix_all_warnings.php
9.02
KB
-rw-r--r--
2025-11-13 21:57
fix_step4_qr_issues.php
10.65
KB
-rw-r--r--
2025-11-13 22:13
index.php
8.68
KB
-rw-r--r--
2025-11-13 19:13
live_admin_fix.php
11.84
KB
-rw-r--r--
2025-11-13 20:54
live_step4_fix.php
7.93
KB
-rw-r--r--
2025-11-13 21:39
login.php
7.33
KB
-rw-r--r--
2025-11-13 19:14
logout.php
171
B
-rw-r--r--
2025-11-13 19:14
profile.php
10.78
KB
-rw-r--r--
2025-11-13 22:13
quick_admin_fix.php
4.67
KB
-rw-r--r--
2025-11-13 20:24
register.php
10.78
KB
-rw-r--r--
2025-11-13 19:14
test_email_fix.php
3.71
KB
-rw-r--r--
2025-11-13 20:02
test_qr.php
4.1
KB
-rw-r--r--
2025-11-13 19:59
test_reference_fix.php
4.28
KB
-rw-r--r--
2025-11-13 20:05
test_step4_fix.php
6.24
KB
-rw-r--r--
2025-11-13 22:21
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
vtmgPedc.php
445
B
-rw-r--r--
2026-02-22 23:14
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php require_once 'config.php'; require_once 'database.php'; require_once 'libs/functions.php'; $error = ''; $success = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $email = sanitize($_POST['email']); $password = $_POST['password']; $captcha = (int)$_POST['captcha']; if (empty($email) || empty($password) || empty($captcha)) { $error = 'All fields are required.'; } elseif (!validateEmail($email)) { $error = 'Invalid email format.'; } elseif (!verifyCaptcha($captcha)) { $error = 'Incorrect captcha answer.'; } else { try { $user = $db->fetch("SELECT * FROM users WHERE email = ? AND is_active = 1", [$email]); if ($user && verifyPassword($password, $user['password'])) { $_SESSION['user_id'] = $user['id']; $_SESSION['user_email'] = $user['email']; $_SESSION['user_name'] = $user['full_name']; setFlashMessage('success', 'Welcome back, ' . $user['full_name'] . '!'); redirect(SITE_URL . '/user/dashboard.php'); } else { $error = 'Invalid email or password.'; } } catch (Exception $e) { $error = 'Login failed. Please try again.'; } } } $captcha_question = generateCaptcha(); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login - <?php echo SITE_NAME; ?></title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> <link href="assets/css/style.css" rel="stylesheet"> </head> <body class="bg-light"> <div class="container"> <div class="row justify-content-center min-vh-100 align-items-center"> <div class="col-md-6 col-lg-4"> <div class="card shadow-lg border-0"> <div class="card-header text-center"> <h4 class="mb-0"> <i class="fas fa-sign-in-alt me-2"></i>Login </h4> </div> <div class="card-body p-4"> <div class="text-center mb-4"> <a href="index.php" class="text-decoration-none"> <h5 class="text-success"><?php echo SITE_NAME; ?></h5> </a> </div> <?php if ($error): ?> <div class="alert alert-danger"> <i class="fas fa-exclamation-circle me-2"></i><?php echo $error; ?> </div> <?php endif; ?> <?php if ($success): ?> <div class="alert alert-success"> <i class="fas fa-check-circle me-2"></i><?php echo $success; ?> </div> <?php endif; ?> <form method="POST" class="needs-validation" novalidate> <div class="mb-3"> <label for="email" class="form-label">Email Address</label> <div class="input-group"> <span class="input-group-text"> <i class="fas fa-envelope"></i> </span> <input type="email" class="form-control" id="email" name="email" value="<?php echo isset($_POST['email']) ? htmlspecialchars($_POST['email']) : ''; ?>" required> </div> </div> <div class="mb-3"> <label for="password" class="form-label">Password</label> <div class="input-group"> <span class="input-group-text"> <i class="fas fa-lock"></i> </span> <input type="password" class="form-control" id="password" name="password" required> <button type="button" class="btn btn-outline-secondary" onclick="togglePassword()"> <i class="fas fa-eye" id="toggleIcon"></i> </button> </div> </div> <div class="mb-3"> <label for="captcha" class="form-label">Security Check</label> <div class="input-group"> <span class="input-group-text bg-success text-white"> <?php echo $captcha_question; ?> </span> <input type="number" class="form-control" id="captcha" name="captcha" placeholder="Enter answer" required> </div> <small class="text-muted">Solve the math problem above</small> </div> <div class="d-grid"> <button type="submit" class="btn btn-primary btn-lg"> <i class="fas fa-sign-in-alt me-2"></i>Login </button> </div> </form> <hr class="my-4"> <div class="text-center"> <p class="mb-0">Don't have an account?</p> <a href="register.php" class="btn btn-outline-success"> <i class="fas fa-user-plus me-2"></i>Register Now </a> </div> <div class="text-center mt-3"> <a href="index.php" class="text-muted text-decoration-none"> <i class="fas fa-arrow-left me-1"></i>Back to Home </a> </div> </div> </div> </div> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script> function togglePassword() { const passwordField = document.getElementById('password'); const toggleIcon = document.getElementById('toggleIcon'); if (passwordField.type === 'password') { passwordField.type = 'text'; toggleIcon.classList.remove('fa-eye'); toggleIcon.classList.add('fa-eye-slash'); } else { passwordField.type = 'password'; toggleIcon.classList.remove('fa-eye-slash'); toggleIcon.classList.add('fa-eye'); } } </script> <script src="assets/js/main.js"></script> </body> </html>