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 /
.trash /
admin.2 /
Delete
Unzip
Name
Size
Permission
Date
Action
ads.php
15.26
KB
-rw-r--r--
2025-10-18 22:42
dashboard.php
22.01
KB
-rw-r--r--
2025-10-18 22:49
deposit_history.php
4.14
KB
-rw-r--r--
2025-10-18 21:52
deposit_methods.php
11.74
KB
-rw-r--r--
2025-10-18 21:52
deposits.php
12.91
KB
-rw-r--r--
2025-10-18 21:52
dpin_details.php
4.52
KB
-rw-r--r--
2025-10-18 22:26
dpin_management.php
10.04
KB
-rw-r--r--
2025-10-18 21:52
dpin_send.php
6
KB
-rw-r--r--
2025-10-18 22:26
footer.php
148
B
-rw-r--r--
2025-10-18 21:50
header.php
8.2
KB
-rw-r--r--
2025-10-18 22:54
login.php
6.11
KB
-rw-r--r--
2025-10-18 21:41
logout.php
88
B
-rw-r--r--
2025-10-18 21:42
notifications.php
9.34
KB
-rw-r--r--
2025-10-18 21:54
plans.php
15.64
KB
-rw-r--r--
2025-10-18 22:42
referral.php
9.89
KB
-rw-r--r--
2025-10-18 21:52
sidebar.php
5.11
KB
-rw-r--r--
2025-10-18 21:50
transactions.php
4.47
KB
-rw-r--r--
2025-10-18 21:53
users.php
12.66
KB
-rw-r--r--
2025-10-18 22:42
withdraw_history.php
4.2
KB
-rw-r--r--
2025-10-18 21:53
withdraw_methods.php
11.89
KB
-rw-r--r--
2025-10-18 21:53
withdrawals.php
13.4
KB
-rw-r--r--
2025-10-18 21:53
Save
Rename
<?php require_once '../config.php'; // Check if admin is logged in if (!isset($_SESSION['admin_id'])) { header("Location: login.php"); exit(); } // Get D.Pin price from database $dpin_price = floatval(get_setting('dpin_price', 100)); // Handle price update if (isset($_POST['update_price'])) { $new_price = floatval($_POST['dpin_price']); if (set_setting('dpin_price', $new_price)) { header("Location: dpin_details.php?success=price_updated"); exit(); } else { header("Location: dpin_details.php?error=update_failed"); exit(); } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>D.Pin Details - Admin Panel</title> <?php include 'header.php'; ?> </head> <body> <div class="container-fluid"> <div class="row"> <?php include 'sidebar.php'; ?> <main class="col-md-9 ms-sm-auto col-lg-10 main-content"> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">D.Pin Details</h1> </div> <?php if (isset($_GET['success']) && $_GET['success'] == 'price_updated'): ?> <div class="alert alert-success">D.Pin price updated successfully.</div> <?php endif; ?> <?php if (isset($_GET['error']) && $_GET['error'] == 'update_failed'): ?> <div class="alert alert-danger">Failed to update D.Pin price.</div> <?php endif; ?> <div class="row"> <div class="col-md-6"> <div class="card"> <div class="card-header"> <h5 class="mb-0">D.Pin Settings</h5> </div> <div class="card-body"> <form method="POST"> <div class="mb-3"> <label class="form-label">D.Pin Price</label> <input type="number" class="form-control" name="dpin_price" step="0.01" min="0" value="<?php echo $dpin_price; ?>" required> <div class="form-text">Price per D.Pin in <?php echo format_currency(1); ?></div> </div> <button type="submit" name="update_price" class="btn btn-primary">Update Price</button> </form> </div> </div> </div> <div class="col-md-6"> <div class="card"> <div class="card-header"> <h5 class="mb-0">D.Pin Information</h5> </div> <div class="card-body"> <ul class="list-unstyled"> <li class="mb-3"> <strong>Format:</strong> <p class="mb-0">15-digit alphanumeric code</p> </li> <li class="mb-3"> <strong>Usage:</strong> <p class="mb-0">Can be used to purchase membership plans</p> </li> <li class="mb-3"> <strong>Validity:</strong> <p class="mb-0">Does not expire once activated</p> </li> <li> <strong>Security:</strong> <p class="mb-0">Each D.Pin is unique and can only be used once</p> </li> </ul> </div> </div> </div> </div> </main> </div> </div> <?php include 'footer.php'; ?> </body> </html>