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 require_once 'includes/config.php'; if (!isset($_SESSION['reset_email']) || !isset($_SESSION['code_verified'])) { header("Location: forgot-password.php"); exit; } $error = ''; $success = ''; $email = $_SESSION['reset_email']; if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['reset_password'])) { $password = $_POST['password']; $confirm_password = $_POST['confirm_password']; if (empty($password) || empty($confirm_password)) { $error = "Please fill in all fields."; } elseif (strlen($password) < 6) { $error = "Password must be at least 6 characters."; } elseif ($password !== $confirm_password) { $error = "Passwords do not match."; } else { try { $hashed_password = password_hash($password, PASSWORD_DEFAULT); $stmt = $pdo->prepare("UPDATE users SET password = ? WHERE email = ?"); if ($stmt->execute([$hashed_password, $email])) { // Cleanup reset tokens $stmt = $pdo->prepare("DELETE FROM password_resets WHERE email = ?"); $stmt->execute([$email]); unset($_SESSION['reset_email']); unset($_SESSION['code_verified']); $_SESSION['success_msg'] = "Password changed successfully! You can now login."; header("Location: login.php"); exit; } else { $error = "Failed to update password."; } } catch (Exception $e) { $error = "Error: " . $e->getMessage(); } } } 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>New <span class="text-gradient">Beginnings.</span></h2> <p>Choose a strong password to protect your account and your hard-earned balance.</p> <div class="security-tip"> <i class="fas fa-shield-alt"></i> Tips: Use uppercase, numbers, and symbols. </div> </div> </div> <div class="auth-right"> <h2 class="auth-title" style="text-align: left; margin-bottom: 5px;">Set New Password</h2> <p style="color: var(--text-muted); margin-bottom: 30px;">Security is our priority. Enter your new password below.</p> <?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 style="font-size: 0.9rem; margin-bottom: 8px; display: block; color: var(--text-muted); font-weight: 500;">New Password</label> <div class="input-with-icon-end"> <i class="fas fa-lock start-icon"></i> <input type="password" name="password" id="p1" class="form-control" placeholder="Create strong password" required> <i class="fas fa-eye-slash toggle-pass" onclick="togglePass('p1', this)"></i> </div> <div class="strength-meter"> <div class="strength-bar" id="meter"></div> </div> </div> <div class="form-group"> <label style="font-size: 0.9rem; margin-bottom: 8px; display: block; color: var(--text-muted); font-weight: 500;">Confirm Password</label> <div class="input-with-icon-end"> <i class="fas fa-check-circle start-icon"></i> <input type="password" name="confirm_password" id="p2" class="form-control" placeholder="Repeat password" required> <i class="fas fa-eye-slash toggle-pass" onclick="togglePass('p2', this)"></i> </div> </div> <button type="submit" name="reset_password" class="btn-primary" style="width:100%; margin-top:10px; padding: 15px; font-weight: 700;"> Reset Password Now </button> </form> </div> </div> </div> <style> .input-with-icon-end { position: relative; display: flex; align-items: center; } .input-with-icon-end .start-icon { position: absolute; left: 15px; color: var(--text-muted); } .input-with-icon-end .toggle-pass { position: absolute; right: 15px; color: var(--text-muted); cursor: pointer; transition: 0.3s; } .input-with-icon-end .toggle-pass:hover { color: #fff; } .input-with-icon-end .form-control { padding-left: 45px !important; padding-right: 45px !important; } .strength-meter { height: 4px; background: rgba(255,255,255,0.05); margin-top: 10px; border-radius: 10px; overflow: hidden; } .strength-bar { height: 100%; width: 0; transition: 0.3s; } .security-tip { margin-top: 20px; padding: 10px 15px; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 0.85rem; color: var(--text-muted); } .security-tip i { color: var(--primary-color); margin-right: 5px; } /* Strength Colors */ .weak { width: 33%; background: #e74c3c; } .medium { width: 66%; background: #f1c40f; } .strong { width: 100%; background: #2ecc71; } </style> <script> function togglePass(id, el) { const input = document.getElementById(id); if (input.type === "password") { input.type = "text"; el.classList.replace("fa-eye-slash", "fa-eye"); } else { input.type = "password"; el.classList.replace("fa-eye", "fa-eye-slash"); } } document.getElementById('p1').addEventListener('input', function(e) { const val = e.target.value; const meter = document.getElementById('meter'); meter.className = 'strength-bar'; if (val.length > 0) { if (val.length < 6) { meter.classList.add('weak'); } else if (val.length < 10) { meter.classList.add('medium'); } else { meter.classList.add('strong'); } } }); </script> <?php require_once 'includes/footer.php'; ?>