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 /
.trash /
user.2 /
Delete
Unzip
Name
Size
Permission
Date
Action
activate_dpin.php
7.76
KB
-rw-r--r--
2025-10-18 22:14
ads.php
11.49
KB
-rw-r--r--
2025-10-18 22:44
commission.php
7.01
KB
-rw-r--r--
2025-10-18 21:56
dashboard.php
17.28
KB
-rw-r--r--
2025-10-18 22:49
deposit.php
6.03
KB
-rw-r--r--
2025-10-18 21:45
deposit_history.php
4.26
KB
-rw-r--r--
2025-10-18 21:55
dpin.php
7.2
KB
-rw-r--r--
2025-10-18 22:26
dpin_history.php
5.91
KB
-rw-r--r--
2025-10-18 22:15
invite.php
6.44
KB
-rw-r--r--
2025-10-18 21:43
logout.php
91
B
-rw-r--r--
2025-10-18 21:42
notifications.php
3.73
KB
-rw-r--r--
2025-10-18 21:47
plans.php
10.34
KB
-rw-r--r--
2025-10-18 22:43
profile.php
6.69
KB
-rw-r--r--
2025-10-18 21:43
purchase_plan.php
4.99
KB
-rw-r--r--
2025-10-18 21:46
sidebar.php
5.16
KB
-rw-r--r--
2025-10-18 22:15
team.php
6.81
KB
-rw-r--r--
2025-10-18 21:47
transactions.php
4.37
KB
-rw-r--r--
2025-10-18 21:47
withdraw.php
7.92
KB
-rw-r--r--
2025-10-18 21:56
withdraw_history.php
7.74
KB
-rw-r--r--
2025-10-18 21:56
Save
Rename
<?php require_once '../includes/header.php'; $success_message = ''; $error_message = ''; // Handle password change if (isset($_POST['change_password'])) { $current_password = $_POST['current_password']; $new_password = $_POST['new_password']; $confirm_password = $_POST['confirm_password']; // Validate inputs if (empty($current_password) || empty($new_password) || empty($confirm_password)) { $error_message = "All fields are required."; } elseif ($new_password !== $confirm_password) { $error_message = "New passwords do not match."; } elseif (strlen($new_password) < 6) { $error_message = "New password must be at least 6 characters."; } else { // Verify current password $stmt = $conn->prepare("SELECT password FROM users WHERE id = ?"); $stmt->bind_param("i", $_SESSION['user_id']); $stmt->execute(); $result = $stmt->get_result(); $user_data = $result->fetch_assoc(); if (password_verify($current_password, $user_data['password'])) { // Update password $hashed_password = password_hash($new_password, PASSWORD_DEFAULT); $stmt = $conn->prepare("UPDATE users SET password = ? WHERE id = ?"); $stmt->bind_param("si", $hashed_password, $_SESSION['user_id']); if ($stmt->execute()) { $success_message = "Password changed successfully."; } else { $error_message = "Failed to change password. Please try again."; } } else { $error_message = "Current password is incorrect."; } } } ?> <div class="container-fluid"> <div class="row"> <!-- Sidebar --> <?php include 'sidebar.php'; ?> <!-- Main Content --> <main class="col-md-9 ms-sm-auto col-lg-10 main-content"> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">Profile</h1> </div> <?php if ($error_message): ?> <div class="alert alert-danger"><?php echo $error_message; ?></div> <?php endif; ?> <?php if ($success_message): ?> <div class="alert alert-success"><?php echo $success_message; ?></div> <?php endif; ?> <div class="row"> <div class="col-md-6"> <div class="card"> <div class="card-header"> <h5 class="mb-0">Personal Information</h5> </div> <div class="card-body"> <form> <div class="mb-3"> <label class="form-label">Full Name</label> <input type="text" class="form-control" value="<?php echo htmlspecialchars($user['name']); ?>" readonly> </div> <div class="mb-3"> <label class="form-label">Email Address</label> <input type="email" class="form-control" value="<?php echo htmlspecialchars($user['email']); ?>" readonly> </div> <div class="mb-3"> <label class="form-label">Phone Number</label> <input type="text" class="form-control" value="<?php echo htmlspecialchars($user['phone']); ?>" readonly> </div> <div class="mb-3"> <label class="form-label">Joining Date</label> <input type="text" class="form-control" value="<?php echo date('M d, Y', strtotime($user['join_date'])); ?>" readonly> </div> <div class="mb-3"> <label class="form-label">Referral Code</label> <div class="input-group"> <input type="text" class="form-control" id="referralCode" value="<?php echo htmlspecialchars($user['referral_code']); ?>" readonly> <button class="btn btn-outline-secondary" type="button" onclick="copyToClipboard('referralCode')">Copy</button> </div> </div> </form> </div> </div> </div> <div class="col-md-6"> <div class="card"> <div class="card-header"> <h5 class="mb-0">Change Password</h5> </div> <div class="card-body"> <form method="POST"> <div class="mb-3"> <label for="current_password" class="form-label">Current Password</label> <input type="password" class="form-control" id="current_password" name="current_password" required> </div> <div class="mb-3"> <label for="new_password" class="form-label">New Password</label> <input type="password" class="form-control" id="new_password" name="new_password" required minlength="6"> </div> <div class="mb-3"> <label for="confirm_password" class="form-label">Confirm New Password</label> <input type="password" class="form-control" id="confirm_password" name="confirm_password" required minlength="6"> </div> <button type="submit" name="change_password" class="btn btn-primary">Change Password</button> </form> </div> </div> </div> </div> </main> </div> </div> <?php require_once '../includes/footer.php'; ?>