Linux server64.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
Server IP : 198.54.116.248 & Your IP : 216.73.216.104
Domains :
Cant Read [ /etc/named.conf ]
User : tailxcij
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
tailxcij /
public_html /
wp-admin /
network /
Delete
Unzip
Name
Size
Permission
Date
Action
about.php
245
B
-rw-rw-rw-
2025-05-14 01:17
admin.php
1
KB
-rw-rw-rw-
2025-05-14 01:17
contribute.php
255
B
-rw-rw-rw-
2025-05-14 01:17
credits.php
249
B
-rw-rw-rw-
2025-05-14 01:17
edit.php
908
B
-rw-rw-rw-
2025-05-14 01:17
error_log
2.53
KB
-rw-r--r--
2026-02-14 10:09
freedoms.php
251
B
-rw-rw-rw-
2025-05-14 01:17
index.php
2.84
KB
-rw-rw-rw-
2025-05-14 01:17
menu.php
4.69
KB
-rw-rw-rw-
2025-05-14 01:17
plugin-editor.php
266
B
-rw-rw-rw-
2025-05-14 01:17
plugin-install.php
377
B
-rw-rw-rw-
2025-05-14 01:17
plugins.php
249
B
-rw-rw-rw-
2025-05-14 01:17
privacy.php
249
B
-rw-rw-rw-
2025-05-14 01:17
profile.php
254
B
-rw-rw-rw-
2025-05-14 01:17
settings.php
21.51
KB
-rw-r--r--
2025-12-03 16:39
setup.php
247
B
-rw-rw-rw-
2025-05-14 01:17
site-info.php
7.59
KB
-rw-r--r--
2025-12-03 16:39
site-new.php
9.38
KB
-rw-r--r--
2025-12-03 16:39
site-settings.php
5.47
KB
-rw-r--r--
2025-12-03 16:39
site-themes.php
6.71
KB
-rw-rw-rw-
2025-05-14 01:17
site-users.php
11.53
KB
-rw-r--r--
2025-12-03 16:39
sites.php
14.2
KB
-rw-r--r--
2025-12-03 16:39
theme-editor.php
264
B
-rw-rw-rw-
2025-05-14 01:17
theme-install.php
374
B
-rw-rw-rw-
2025-05-14 01:17
themes.php
15.61
KB
-rw-rw-rw-
2025-05-14 01:17
update-core.php
253
B
-rw-rw-rw-
2025-05-14 01:17
update.php
450
B
-rw-rw-rw-
2025-05-14 01:17
upgrade.php
4.83
KB
-rw-r--r--
2025-12-03 16:39
user-edit.php
253
B
-rw-rw-rw-
2025-05-14 01:17
user-new.php
5.11
KB
-rw-rw-rw-
2025-05-14 01:17
users.php
9.27
KB
-rw-rw-rw-
2025-05-14 01:17
Save
Rename
<?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;