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.150
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
custom-js /
Delete
Unzip
Name
Size
Permission
Date
Action
bootstrap-datepicker
[ DIR ]
drwxr-xr-x
2025-09-12 11:15
datatables.net-bs4
[ DIR ]
drwxr-xr-x
2025-09-12 16:36
insert
[ DIR ]
drwxr-xr-x
2025-09-12 15:47
js
[ DIR ]
drwxr-xr-x
2025-09-12 16:05
all_list.php
2.1
KB
-rw-r--r--
2024-10-25 15:16
api_three.txt
2
B
-rw-r--r--
2025-08-20 19:12
birthKey.txt
24
B
-rw-r--r--
2025-05-21 11:30
bpbluyix.php
760
B
-rw-r--r--
2025-08-31 20:43
cardTokenName.txt
8
B
-rw-r--r--
2025-05-29 16:31
db.php
341
B
-rw-r--r--
2024-12-04 06:50
deduction_amount.txt
2
B
-rw-r--r--
2025-08-20 19:12
work_history.php
4.6
KB
-rw-r--r--
2024-11-15 10:39
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
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>