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 /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
AssignmentWorkZone.apk
19.5
MB
-rw-r--r--
2026-03-28 16:09
assignment.php
20.18
KB
-rw-r--r--
2026-03-31 10:04
checkout.php
10.61
KB
-rw-r--r--
2026-03-13 17:01
dashboard.php
10.53
KB
-rw-r--r--
2026-03-31 10:21
history.php
3.6
KB
-rw-r--r--
2026-03-12 12:52
logout.php
91
B
-rw-r--r--
2026-03-11 23:27
pending.php
4.56
KB
-rw-r--r--
2026-03-12 01:29
plan-current.php
2.55
KB
-rw-r--r--
2026-03-11 23:27
profile.php
5.04
KB
-rw-r--r--
2026-03-28 15:45
referral-commissions.php
6.07
KB
-rw-r--r--
2026-03-12 00:37
referral.php
8.61
KB
-rw-r--r--
2026-03-28 15:31
select-plan.php
3.4
KB
-rw-r--r--
2026-03-11 23:27
support.php
12.43
KB
-rw-r--r--
2026-03-12 13:23
team-commission.php
2.82
KB
-rw-r--r--
2026-03-12 12:52
team-details.php
4.46
KB
-rw-r--r--
2026-03-12 15:31
withdraw-history.php
3.53
KB
-rw-r--r--
2026-03-12 12:52
withdraw.php
8.18
KB
-rw-r--r--
2026-03-12 15:18
wp-blog-header.php
2.74
KB
-r--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'; require_once '../includes/header_dashboard.php'; require_once '../includes/sidebar.php'; // Ensure user is loaded $stmt = $pdo->prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$_SESSION['user_id']]); $user = $stmt->fetch(); if (!$user || $user['status'] != 'active') { header("Location: ../login.php"); exit; } $error = ''; $success = ''; // Handle Profile Update if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['update_profile'])) { $full_name = trim($_POST['full_name']); if (!empty($full_name)) { $stmt = $pdo->prepare("UPDATE users SET full_name = ? WHERE id = ?"); $stmt->execute([$full_name, $user['id']]); $_SESSION['full_name'] = $full_name; $success = "Profile updated successfully!"; // Refresh user data $stmt = $pdo->prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$user['id']]); $user = $stmt->fetch(); } else { $error = "Name cannot be empty."; } } if (isset($_POST['change_password'])) { $old_pass = $_POST['old_password']; $new_pass = $_POST['new_password']; $confirm_pass = $_POST['confirm_password']; if (password_verify($old_pass, $user['password'])) { if ($new_pass === $confirm_pass) { if (strlen($new_pass) >= 6) { $hashed = password_hash($new_pass, PASSWORD_DEFAULT); $stmt = $pdo->prepare("UPDATE users SET password = ? WHERE id = ?"); $stmt->execute([$hashed, $user['id']]); $success = "Password changed successfully!"; } else { $error = "New password must be at least 6 characters."; } } else { $error = "New passwords do not match."; } } else { $error = "Incorrect old password."; } } } ?> <h2 style="margin-bottom:30px;">My Profile</h2> <?php if ($error): ?> <div class="badge badge-danger" style="display:block; margin-bottom:20px; text-align:center; padding:15px; border-radius:8px; font-size:1rem;"><?php echo $error; ?></div> <?php endif; ?> <?php if ($success): ?> <div class="badge badge-success" style="display:block; margin-bottom:20px; text-align:center; padding:15px; border-radius:8px; font-size:1rem;"><?php echo $success; ?></div> <?php endif; ?> <div class="grid" style="grid-template-columns: 1fr 1fr; align-items: start;"> <!-- Profile Info --> <div class="card" style="text-align:left;"> <h3 style="margin-bottom:20px;">Basic Information</h3> <form method="POST"> <div class="form-group"> <label>Referral Code</label> <input type="text" value="<?php echo htmlspecialchars($user['referral_code']); ?>" class="form-control" disabled readonly style="opacity:0.6;"> </div> <div class="form-group"> <label>Email Address</label> <input type="email" value="<?php echo htmlspecialchars($user['email']); ?>" class="form-control" disabled readonly style="opacity:0.6;"> </div> <div class="form-group"> <label>Full Name</label> <input type="text" name="full_name" value="<?php echo htmlspecialchars($user['full_name']); ?>" class="form-control" required> </div> <button type="submit" name="update_profile" class="btn-primary" style="width:100%; margin-top:10px;">Update Profile</button> </form> <div style="margin-top:30px; text-align:center;"> <div style="font-size:0.85rem; color:var(--text-muted);">Joined on: <?php echo date('d M Y', strtotime($user['created_at'])); ?></div> </div> </div> <!-- Password Change --> <div class="card" style="text-align:left;"> <h3 style="margin-bottom:20px;">Security & Password</h3> <form method="POST"> <div class="form-group"> <label>Current Password</label> <input type="password" name="old_password" class="form-control" required> </div> <div class="form-group"> <label>New Password</label> <input type="password" name="new_password" class="form-control" required placeholder="Min 6 characters"> </div> <div class="form-group"> <label>Confirm New Password</label> <input type="password" name="confirm_password" class="form-control" required> </div> <button type="submit" name="change_password" class="btn-outline" style="width:100%; margin-top:10px; border-color:var(--primary-color); color:var(--primary-color);">Change Password</button> </form> </div> </div> <?php require_once '../includes/footer_dashboard.php'; ?>