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 = 'Manage Earning Boosts'; // Handle Add/Delete if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['action'])) { try { if ($_POST['action'] === 'add') { $referrals = intval($_POST['referrals']); $earning = floatval($_POST['earning']); if ($referrals < 1 || $earning <= 0) { throw new Exception("Invalid values"); } $stmt = $pdo->prepare("INSERT INTO referral_boosts (required_referrals, earning_amount) VALUES (?, ?)"); $stmt->execute([$referrals, $earning]); setSuccess("Boost level added!"); } elseif ($_POST['action'] === 'delete') { $id = intval($_POST['id']); $stmt = $pdo->prepare("DELETE FROM referral_boosts WHERE id = ?"); $stmt->execute([$id]); setSuccess("Boost level deleted!"); } } catch (Exception $e) { setError($e->getMessage()); } } header('Location: boosts.php'); exit; } // Fetch Levels $stmt = $pdo->query("SELECT * FROM referral_boosts ORDER BY required_referrals ASC"); $boosts = $stmt->fetchAll(); include 'header.php'; ?> <?php $success = getSuccess(); if ($success): ?> <div class="alert alert-success"><?php echo $success; ?></div> <?php endif; ?> <?php $error = getError(); if ($error): ?> <div class="alert alert-danger"><?php echo $error; ?></div> <?php endif; ?> <div class="row"> <!-- Add Level Form --> <div class="col-md-4"> <div class="card"> <div class="card-header bg-primary text-white"> <i class="fas fa-plus"></i> Add New Level </div> <div class="card-body"> <form method="POST"> <input type="hidden" name="action" value="add"> <div class="form-group"> <label>Required Referrals</label> <input type="number" name="referrals" class="form-control" placeholder="e.g. 5" min="1" required> </div> <div class="form-group"> <label>Earning Per Ad (<?php echo getSetting('currency_symbol', '$'); ?>)</label> <input type="number" name="earning" class="form-control" placeholder="0.0010" step="0.0001" min="0.0001" required> </div> <button type="submit" class="btn btn-primary btn-block">Add Level</button> </form> </div> </div> </div> <!-- Levels List --> <div class="col-md-8"> <div class="card"> <div class="card-header"> <i class="fas fa-list"></i> Active Boost Levels </div> <div class="card-body"> <?php if (empty($boosts)): ?> <p class="text-center text-muted">No boost levels defined.</p> <?php else: ?> <div class="table-responsive"> <table class="table table-bordered"> <thead> <tr> <th>Required Referrals</th> <th>Earning Amount</th> <th>Action</th> </tr> </thead> <tbody> <?php foreach ($boosts as $lvl): ?> <tr> <td> <span class="badge badge-info" style="font-size: 14px;"> <?php echo $lvl['required_referrals']; ?> Referrals </span> </td> <td> <b class="text-success"> <?php echo formatCurrency($lvl['earning_amount']); ?> </b> / Ad </td> <td> <form method="POST" style="display:inline;"> <input type="hidden" name="action" value="delete"> <input type="hidden" name="id" value="<?php echo $lvl['id']; ?>"> <button type="submit" class="btn btn-sm btn-danger" onclick="return confirm('Delete this level?')"> <i class="fas fa-trash"></i> </button> </form> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> </div> <?php include 'footer.php'; ?>