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 /
abayar /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
ads.php
10.11
KB
-rw-r--r--
2025-12-22 20:20
announcements.php
8.13
KB
-rw-r--r--
2025-12-25 17:46
banners.php
9.86
KB
-rw-r--r--
2025-12-22 19:19
boosts.php
5.51
KB
-rw-r--r--
2025-12-24 21:41
daily_targets.php
11.29
KB
-rw-r--r--
2025-12-26 07:59
dashboard.php
9.23
KB
-rw-r--r--
2025-12-25 12:46
deposits.php
13.59
KB
-rw-r--r--
2026-01-26 16:58
dpin_requests.php
7.43
KB
-rw-r--r--
2025-12-24 21:41
dpins.php
9.37
KB
-rw-r--r--
2025-12-23 19:48
error_log
1.14
KB
-rw-r--r--
2026-01-07 16:39
footer.php
122
B
-rw-r--r--
2025-12-25 18:15
header.php
6.83
KB
-rw-r--r--
2026-01-26 17:15
login.php
4.42
KB
-rw-r--r--
2026-01-26 17:46
lucky_wheel.php
24.12
KB
-rw-r--r--
2026-01-26 16:57
orders.php
12.63
KB
-rw-r--r--
2026-01-07 16:27
payment_methods.php
6.53
KB
-rw-r--r--
2025-12-23 19:24
plans.php
22.86
KB
-rw-r--r--
2025-12-29 11:03
products.php
10.72
KB
-rw-r--r--
2026-01-07 16:15
ranks.php
7.31
KB
-rw-r--r--
2025-12-25 16:48
referrals.php
8.7
KB
-rw-r--r--
2025-12-25 12:43
return.php
440
B
-rw-r--r--
2025-12-29 13:55
settings.php
10.77
KB
-rw-r--r--
2026-01-07 16:26
tickets.php
11.98
KB
-rw-r--r--
2025-12-22 19:21
users.php
18.1
KB
-rw-r--r--
2025-12-29 13:53
withdraws.php
11.42
KB
-rw-r--r--
2025-12-24 22:29
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 if (!defined('USER_PANEL')) { header('Location: ../login.php'); exit; } $user = getUserData($_SESSION['user_id']); // Check for unread announcements (count active ones) $stmt = $pdo->query("SELECT COUNT(*) FROM announcements WHERE is_active = 1"); $activeAnnouncementCount = $stmt->fetchColumn(); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title><?php echo isset($page_title) ? $page_title . ' - ' : ''; ?><?php echo getSetting('site_name'); ?></title> <link rel="stylesheet" href="../assets/css/style.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <style> /* Anti-Flicker Global Fix */ .main-content { visibility: visible !important; opacity: 1 !important; } </style> <?php if (isset($custom_css)) echo '<style>' . $custom_css . '</style>'; ?> </head> <body> <!-- Impersonation Banner --> <?php if (isset($_SESSION['admin_user_id'])): ?> <div style="background: #e67e22; color: white; padding: 10px; text-align: center; position: fixed; top: 0; left: 0; right: 0; z-index: 10000; font-weight: bold; font-size: 13px; box-shadow: 0 2px 10px rgba(0,0,0,0.2);"> <i class="fas fa-user-secret"></i> You are logged in as <strong><?php echo htmlspecialchars($user['full_name']); ?></strong> <a href="../admin/return.php" style="margin-left: 15px; background: white; color: #e67e22; padding: 2px 10px; border-radius: 4px; text-decoration: none; font-size: 11px; text-transform: uppercase;">Return to Admin</a> </div> <style> .header { margin-top: 38px !important; } .sidebar { top: 38px !important; } </style> <?php endif; ?> <!-- Header --> <div class="header"> <button class="menu-toggle"> <i class="fas fa-bars"></i> </button> <a href="dashboard.php" class="logo"> <?php echo getSetting('site_name'); ?> </a> <div class="user-info" style="gap: 15px;"> <?php if ($activeAnnouncementCount > 0): ?> <a href="announcements.php" style="position: relative; color: var(--text-primary); font-size: 20px;"> <i class="fas fa-bell"></i> <span style="position: absolute; top: -5px; right: -5px; background: #ff4757; width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--header-bg);"></span> </a> <?php endif; ?> <img src="<?php echo $user['profile_photo'] ? '../uploads/profiles/' . $user['profile_photo'] : '../assets/images/default-avatar.png'; ?>" alt="Avatar" class="user-avatar"> </div> </div> <!-- Sidebar --> <div class="sidebar"> <ul class="sidebar-menu"> <li> <a href="dashboard.php"> <i class="fas fa-home"></i> <span>Dashboard</span> </a> </li> <li> <a href="history.php"> <i class="fas fa-history"></i> <span>History</span> </a> </li> <li> <a href="watch_ads.php"> <i class="fas fa-eye"></i> <span>Watch Ads</span> </a> </li> <li> <a href="my_plan.php"> <i class="fas fa-box"></i> <span>My Plan</span> </a> </li> <li> <a href="dpin_request.php"> <i class="fas fa-ticket-alt"></i> <span>D-Pin Request</span> </a> </li> <li> <a href="dpin_manage.php"> <i class="fas fa-tasks"></i> <span>D-Pin Manage</span> </a> </li> <li> <a href="withdraw.php"> <i class="fas fa-money-bill-wave"></i> <span>Withdraw</span> </a> </li> <li> <a href="referral.php"> <i class="fas fa-users"></i> <span>Referral (My Team)</span> </a> </li> <li> <a href="level_earning.php"> <i class="fas fa-chart-line"></i> <span>Level Earning Setup</span> </a> </li> <li> <a href="ranks.php"> <i class="fas fa-trophy"></i> <span>User Ranks</span> </a> </li> <li> <a href="daily_targets.php"> <i class="fas fa-calendar-check"></i> <span>Daily Missions</span> </a> </li> <li> <a href="lucky_wheel.php"> <i class="fas fa-dharmachakra"></i> <span>Lucky Wheel</span> </a> </li> <li> <a href="announcements.php" style="display: flex; justify-content: space-between; align-items: center;"> <div> <i class="fas fa-bullhorn"></i> <span>New Updates</span> </div> <?php if ($activeAnnouncementCount > 0): ?> <span style="background: #ff4757; color: white; font-size: 9px; padding: 2px 6px; border-radius: 10px; font-weight: 800; text-transform: uppercase;">New</span> <?php endif; ?> </a> </li> <li> <a href="profile.php"> <i class="fas fa-user"></i> <span>Profile</span> </a> </li> <li> <a href="support.php"> <i class="fas fa-headset"></i> <span>Support</span> </a> </li> <li> <a href="../logout.php"> <i class="fas fa-sign-out-alt"></i> <span>Logout</span> </a> </li> </ul> </div> <!-- Sidebar Overlay --> <div class="sidebar-overlay"></div> <!-- Main Content --> <div class="main-content">