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 /
includes /
Delete
Unzip
Name
Size
Permission
Date
Action
auth.php
1.36
KB
-rw-r--r--
2025-10-17 23:19
db.php
412
B
-rw-r--r--
2025-10-17 21:12
Save
Rename
<?php if (session_status() === PHP_SESSION_NONE) { session_start(); } // Check if user is logged in function isLoggedIn() { return isset($_SESSION['user_id']); } // Check if user is admin function isAdmin() { return isset($_SESSION['user_role']) && $_SESSION['user_role'] === 'admin'; } // Redirect to login if not logged in function requireLogin() { if (!isLoggedIn()) { header('Location: ../login.php'); exit(); } } // Redirect to admin login if not admin function requireAdmin() { if (!isAdmin()) { header('Location: ../admin/login.php'); exit(); } } // Generate referral code function generateReferralCode($length = 8) { $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charactersLength = strlen($characters); $randomString = ''; for ($i = 0; $i < $length; $i++) { $randomString .= $characters[rand(0, $charactersLength - 1)]; } return $randomString; } // Generate D-Pin function generateDPin($length = 15) { $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charactersLength = strlen($characters); $randomString = ''; for ($i = 0; $i < $length; $i++) { $randomString .= $characters[rand(0, $charactersLength - 1)]; } return $randomString; } ?>