Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
insepet /
wp-admin /
user /
[ HOME SHELL ]
Name
Size
Permission
Action
about.php
275
B
-rw-r--r--
admin.php
842
B
-rw-r--r--
credits.php
279
B
-rw-r--r--
freedoms.php
281
B
-rw-r--r--
index.php
269
B
-rw-r--r--
menu.php
700
B
-rw-r--r--
privacy.php
279
B
-rw-r--r--
profile.php
270
B
-rw-r--r--
user-edit.php
268
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(dirname(__FILE__)) . '/admin.php'); if ( ! is_multisite() ) { wp_redirect( admin_url() ); exit; } $redirect_user_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $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