Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.220.116.195
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
bestdealsmart.com /
wp-admin /
network /
[ HOME SHELL ]
Name
Size
Permission
Action
about.php
245
B
-rw-r--r--
admin.php
1
KB
-rw-r--r--
contribute.php
255
B
-rw-r--r--
credits.php
249
B
-rw-r--r--
edit.php
908
B
-rw-r--r--
freedoms.php
251
B
-rw-r--r--
index.php
2.84
KB
-rw-r--r--
menu.php
4.63
KB
-rw-r--r--
plugin-editor.php
266
B
-rw-r--r--
plugin-install.php
377
B
-rw-r--r--
plugins.php
249
B
-rw-r--r--
privacy.php
249
B
-rw-r--r--
profile.php
254
B
-rw-r--r--
settings.php
21.46
KB
-rw-r--r--
setup.php
247
B
-rw-r--r--
site-info.php
7.59
KB
-rw-r--r--
site-new.php
9.35
KB
-rw-r--r--
site-settings.php
5.49
KB
-rw-r--r--
site-themes.php
6.71
KB
-rw-r--r--
site-users.php
10.82
KB
-rw-r--r--
sites.php
13.26
KB
-rw-r--r--
theme-editor.php
264
B
-rw-r--r--
theme-install.php
374
B
-rw-r--r--
themes.php
15.62
KB
-rw-r--r--
update-core.php
253
B
-rw-r--r--
update.php
450
B
-rw-r--r--
upgrade.php
4.85
KB
-rw-r--r--
user-edit.php
253
B
-rw-r--r--
user-new.php
5.12
KB
-rw-r--r--
users.php
9.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin.php
<?php /** * WordPress Network Administration Bootstrap * * @package WordPress * @subpackage Multisite * @since 3.1.0 */ define( 'WP_NETWORK_ADMIN', true ); /** Load WordPress Administration Bootstrap */ require_once dirname( __DIR__ ) . '/admin.php'; // Do not remove this check. It is required by individual network admin pages. if ( ! is_multisite() ) { wp_die( __( 'Multisite support is not enabled.' ) ); } $redirect_network_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 Network Admin. * * @since 3.2.0 * * @param bool $redirect_network_admin_request Whether the request should be redirected. */ $redirect_network_admin_request = apply_filters( 'redirect_network_admin_request', $redirect_network_admin_request ); if ( $redirect_network_admin_request ) { wp_redirect( network_admin_url() ); exit; } unset( $redirect_network_admin_request );
Close