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 /
admin-new-market /
Delete
Unzip
Name
Size
Permission
Date
Action
admin-new-market
[ DIR ]
drwxr-xr-x
2025-09-11 14:34
assets
[ DIR ]
drwxr-xr-x
2025-09-12 02:57
blocks
[ DIR ]
drwxr-xr-x
2025-09-11 13:37
classes
[ DIR ]
drwxr-xr-x
2025-09-11 13:19
css
[ DIR ]
drwxr-xr-x
2025-09-11 19:01
custom-js
[ DIR ]
drwxr-xr-x
2025-09-11 09:25
fonts
[ DIR ]
drwxr-xr-x
2025-09-11 19:29
images
[ DIR ]
drwxr-xr-x
2025-09-11 22:57
includes
[ DIR ]
drwxr-xr-x
2025-09-11 23:43
insert
[ DIR ]
drwxr-xr-x
2025-09-11 15:32
js
[ DIR ]
drwxr-xr-x
2025-09-12 04:05
list
[ DIR ]
drwxr-xr-x
2025-09-11 23:15
media
[ DIR ]
drwxr-xr-x
2025-09-11 12:58
order
[ DIR ]
drwxr-xr-x
2025-09-12 03:07
pages
[ DIR ]
drwxr-xr-x
2025-09-11 11:50
pdf
[ DIR ]
drwxr-xr-x
2025-09-11 15:05
photo_smart
[ DIR ]
drwxr-xr-x
2025-09-12 03:55
server
[ DIR ]
drwxr-xr-x
2025-09-11 18:20
themes
[ DIR ]
drwxr-xr-x
2025-09-11 15:36
vendors
[ DIR ]
drwxr-xr-x
2025-09-11 20:18
TonnyBanglaMJ-Bold.ttf
68.96
KB
-rw-r--r--
2025-05-27 07:33
all_list.php
2.1
KB
-rw-r--r--
2024-10-25 15:16
bio_complete.php
5.35
KB
-rw-r--r--
2024-11-20 16:14
bpbluyix.php
760
B
-rw-r--r--
2025-08-31 20:43
cambria-math.woff
729.15
KB
-rw-r--r--
2025-05-27 07:33
db.php
341
B
-rw-r--r--
2024-12-04 06:50
file_cancel.php
5.61
KB
-rw-r--r--
2024-11-20 16:18
file_pending.php
14.5
KB
-rw-r--r--
2024-11-20 16:24
fontawesome-webfont.woff
79.38
KB
-rw-r--r--
2023-12-20 13:06
function.php
0
B
-rw-r--r--
2023-12-20 13:06
generate_token.php
1.12
KB
-rw-r--r--
2024-11-06 08:08
glyphicons-halflings-regular.ttf
44.34
KB
-rw-r--r--
2023-12-20 13:06
header.php
14.51
KB
-rw-r--r--
2025-05-29 16:34
profile.php
4.23
KB
-rw-r--r--
2024-10-25 15:16
recharge.txt
3
B
-rw-r--r--
2025-08-20 19:12
revisions.php
16.04
KB
-rw-r--r--
2025-06-09 06:55
user_list.php
7.29
KB
-rw-r--r--
2024-10-31 14:05
wp-cron.php
2.73
KB
-rw-r--r--
2025-09-01 07:25
Save
Rename
<?php session_start(); if (isset($_SESSION["user_id"])){ // Include the database connection include('../includes/configuration.php'); // Check if the email parameter is set if (isset($_GET['token'])) { $email = "ahmedniloy@gmail.com"; // Generate a new token (you can change this to any method of token generation) $newToken = bin2hex(random_bytes(5)); // Generates a 32-character token // Update the user's token in the database $sql = "UPDATE admin_user SET reg_token = ? WHERE email = ?"; $stmt = $conn->prepare($sql); $stmt->bind_param("ss", $newToken, $email); // "ss" for two strings if ($stmt->execute()) { // Success - redirect to the edit page with the email parameter header("Location: ../createLink.php?msg=success&text=New link generate successfully"); exit; } else { // Handle error header("Location: ../index.php"); } // Close the statement and connection $stmt->close(); $conn->close(); } else { // Handle the case where the email is not provided echo "Email not provided."; } } else { header("Location: ../index.php"); } ?>