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 define('ADMIN_PANEL', true); require_once '../includes/config.php'; requireAdmin(); $page_title = 'Dashboard'; // Get statistics $stmt = $pdo->query("SELECT COUNT(*) as count FROM users WHERE id != 1"); $totalUsers = $stmt->fetch()['count']; $stmt = $pdo->query("SELECT COUNT(*) as count FROM users WHERE id != 1 AND status = 'active'"); $activeUsers = $stmt->fetch()['count']; $stmt = $pdo->query("SELECT COUNT(*) as count FROM user_plans WHERE status = 'active'"); $activePlans = $stmt->fetch()['count']; $stmt = $pdo->query("SELECT COUNT(*) as count FROM deposits WHERE status = 'pending'"); $pendingDeposits = $stmt->fetch()['count']; $stmt = $pdo->query("SELECT COUNT(*) as count FROM withdraw_requests WHERE status = 'pending'"); $pendingWithdrawals = $stmt->fetch()['count']; $stmt = $pdo->query("SELECT SUM(wallet_balance) as total FROM users WHERE id != 1"); $totalBalance = $stmt->fetch()['total'] ?? 0; $stmt = $pdo->query("SELECT SUM(total_income) as total FROM users WHERE id != 1"); $totalIncome = $stmt->fetch()['total'] ?? 0; $stmt = $pdo->query("SELECT SUM(total_withdraw) as total FROM users WHERE id != 1"); $totalWithdrawals = $stmt->fetch()['total'] ?? 0; // Recent users $stmt = $pdo->query("SELECT * FROM users WHERE id != 1 ORDER BY created_at DESC LIMIT 5"); $recentUsers = $stmt->fetchAll(); // Recent deposits $stmt = $pdo->query(" SELECT d.*, u.full_name, u.email FROM deposits d JOIN users u ON d.user_id = u.id ORDER BY d.created_at DESC LIMIT 5 "); $recentDeposits = $stmt->fetchAll(); include 'header.php'; ?> <!-- Stats Cards --> <div class="stats-grid"> <div class="stat-card primary"> <div class="stat-icon"> <i class="fas fa-users"></i> </div> <div class="stat-value"><?php echo $totalUsers; ?></div> <div class="stat-label">Total Users</div> </div> <div class="stat-card secondary"> <div class="stat-icon"> <i class="fas fa-user-check"></i> </div> <div class="stat-value"><?php echo $activeUsers; ?></div> <div class="stat-label">Active Users</div> </div> <div class="stat-card warning"> <div class="stat-icon"> <i class="fas fa-box"></i> </div> <div class="stat-value"><?php echo $activePlans; ?></div> <div class="stat-label">Active Plans</div> </div> <div class="stat-card danger"> <div class="stat-icon"> <i class="fas fa-exclamation-circle"></i> </div> <div class="stat-value"><?php echo $pendingDeposits + $pendingWithdrawals; ?></div> <div class="stat-label">Pending Requests</div> </div> </div> <!-- Financial Stats --> <div class="stats-grid"> <div class="stat-card primary"> <div class="stat-icon"> <i class="fas fa-wallet"></i> </div> <div class="stat-value"><?php echo formatCurrency($totalBalance); ?></div> <div class="stat-label">Total Balance</div> </div> <div class="stat-card secondary"> <div class="stat-icon"> <i class="fas fa-chart-line"></i> </div> <div class="stat-value"><?php echo formatCurrency($totalIncome); ?></div> <div class="stat-label">Total Income</div> </div> <div class="stat-card warning"> <div class="stat-icon"> <i class="fas fa-money-bill-wave"></i> </div> <div class="stat-value"><?php echo formatCurrency($totalWithdrawals); ?></div> <div class="stat-label">Total Withdrawals</div> </div> <div class="stat-card danger"> <div class="stat-icon"> <i class="fas fa-hourglass-half"></i> </div> <div class="stat-value"><?php echo $pendingDeposits; ?></div> <div class="stat-label">Pending Deposits</div> </div> </div> <!-- Quick Actions --> <div class="card"> <div class="card-header"> <i class="fas fa-bolt"></i> Quick Actions </div> <div class="card-body"> <div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;"> <a href="deposits.php" class="btn btn-primary"> <i class="fas fa-money-bill-wave"></i> Deposits (<?php echo $pendingDeposits; ?>) </a> <a href="withdraws.php" class="btn btn-danger"> <i class="fas fa-hand-holding-usd"></i> Withdrawals (<?php echo $pendingWithdrawals; ?>) </a> <a href="users.php" class="btn btn-primary"> <i class="fas fa-users"></i> Manage Users </a> <a href="ads.php" class="btn btn-secondary"> <i class="fas fa-ad"></i> Manage Ads </a> </div> </div> </div> <!-- Recent Users --> <div class="card"> <div class="card-header"> <i class="fas fa-user-plus"></i> Recent Users </div> <div class="card-body"> <?php if (empty($recentUsers)): ?> <p style="color: var(--text-secondary); text-align: center;">No users yet.</p> <?php else: ?> <div class="table-responsive" style="max-height: 220px; overflow-y: auto;"> <table> <thead> <tr> <th>Name</th> <th>Email</th> <th>Status</th> <th>Joined</th> </tr> </thead> <tbody> <?php foreach ($recentUsers as $user): ?> <tr> <td> <strong><?php echo htmlspecialchars($user['full_name']); ?></strong> </td> <td><?php echo htmlspecialchars($user['email']); ?></td> <td> <span class="badge badge-<?php echo $user['status'] === 'active' ? 'success' : 'danger'; ?>"> <?php echo ucfirst($user['status']); ?> </span> </td> <td><?php echo date('M d, Y', strtotime($user['created_at'])); ?></td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php endif; ?> </div> </div> <!-- Recent Deposits --> <div class="card"> <div class="card-header"> <i class="fas fa-money-bill-wave"></i> Recent Deposits </div> <div class="card-body"> <?php if (empty($recentDeposits)): ?> <p style="color: var(--text-secondary); text-align: center;">No deposits yet.</p> <?php else: ?> <div class="table-responsive" style="max-height: 280px; overflow-y: auto;"> <table> <thead> <tr> <th>User</th> <th>Amount</th> <th>Method</th> <th>Status</th> <th>Date</th> </tr> </thead> <tbody> <?php foreach ($recentDeposits as $deposit): ?> <tr> <td> <strong><?php echo htmlspecialchars($deposit['full_name']); ?></strong> <br> <small style="color: var(--text-secondary);"> <?php echo htmlspecialchars($deposit['email']); ?> </small> </td> <td><?php echo getSetting('currency_symbol', '$'); ?><?php echo number_format($deposit['amount'], 2); ?> </td> <td><?php echo htmlspecialchars($deposit['method']); ?></td> <td> <?php $badgeClass = 'warning'; if ($deposit['status'] === 'approved') $badgeClass = 'success'; if ($deposit['status'] === 'rejected') $badgeClass = 'danger'; ?> <span class="badge badge-<?php echo $badgeClass; ?>"> <?php echo ucfirst($deposit['status']); ?> </span> </td> <td><?php echo date('M d, Y', strtotime($deposit['created_at'])); ?></td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php endif; ?> </div> </div> <?php include 'footer.php'; ?>