Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.154
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
ajzdfbpz /
public_html /
wp-admin /
network /
Delete
Unzip
Name
Size
Permission
Date
Action
about.php
245
B
-rw-r--r--
2020-02-06 14:33
admin.php
1
KB
-rw-r--r--
2020-02-06 14:33
contribute.php
255
B
-rw-r--r--
2023-07-26 04:34
credits.php
249
B
-rw-r--r--
2020-02-06 14:33
edit.php
908
B
-rw-r--r--
2020-05-26 16:37
freedoms.php
251
B
-rw-r--r--
2020-02-06 14:33
index.php
2.84
KB
-rw-r--r--
2024-03-09 06:38
menu.php
4.69
KB
-rw-r--r--
2025-02-08 19:44
plugin-editor.php
266
B
-rw-r--r--
2021-12-22 04:06
plugin-install.php
377
B
-rw-r--r--
2020-05-24 16:17
plugins.php
249
B
-rw-r--r--
2020-02-06 14:33
privacy.php
249
B
-rw-r--r--
2020-02-06 14:33
profile.php
254
B
-rw-r--r--
2020-02-06 14:33
settings.php
21.51
KB
-rw-r--r--
2025-09-29 05:38
setup.php
247
B
-rw-r--r--
2020-02-06 14:33
site-info.php
7.59
KB
-rw-r--r--
2025-09-29 05:38
site-new.php
9.38
KB
-rw-r--r--
2025-07-01 02:02
site-settings.php
5.47
KB
-rw-r--r--
2025-03-27 19:36
site-themes.php
6.71
KB
-rw-r--r--
2024-09-04 01:19
site-users.php
11.53
KB
-rw-r--r--
2025-10-20 00:20
sites.php
14.2
KB
-rw-r--r--
2025-06-27 22:09
theme-editor.php
264
B
-rw-r--r--
2021-12-22 04:06
theme-install.php
374
B
-rw-r--r--
2020-05-24 16:17
themes.php
15.61
KB
-rw-r--r--
2025-02-08 19:44
update-core.php
253
B
-rw-r--r--
2020-02-06 14:33
update.php
450
B
-rw-r--r--
2020-04-05 10:02
upgrade.php
4.83
KB
-rw-r--r--
2025-03-28 23:30
user-edit.php
253
B
-rw-r--r--
2020-02-06 14:33
user-new.php
5.11
KB
-rw-r--r--
2025-02-08 19:44
users.php
9.27
KB
-rw-r--r--
2025-02-08 19:44
Save
Rename
<?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 );