??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/netecfwd.co.uk/wp-admin/admin-ajax.php
⬅ Kembali
<?php
/**
* WordPress Ajax Process Execution
*
* @package WordPress
* @subpackage Administration
*
* @link https://developer.wordpress.org/plugins/javascript/ajax
*/
/**
* Executing Ajax process.
*
* @since 2.1.0
*/
define( 'DOING_AJAX', true );
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();
header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );
header( 'X-Robots-Tag: noindex' );
// Require a valid action parameter.
if ( empty( $_REQUEST['action'] ) || ! is_scalar( $_REQUEST['action'] ) ) {
wp_die( '0', 400 );
}
/** Load WordPress Administration APIs */
require_once ABSPATH . 'wp-admin/includes/admin.php';
/** Load Ajax Handlers for WordPress Core */
require_once ABSPATH . 'wp-admin/includes/ajax-actions.php';
send_nosniff_header();
nocache_headers();
/** This action is documented in wp-admin/admin.php */
do_action( 'admin_init' );
$core_actions_get = array(
'fetch-list',
'ajax-tag-search',
'wp-compression-test',
'imgedit-preview',
'oembed-cache',
'autocomplete-user',
'dashboard-widgets',
'logged-in',
'rest-nonce',
);
$core_actions_post = array(
'oembed-cache',
'image-editor',
'delete-comment',
'delete-tag',
'delete-link',
'delete-meta',
'delete-post',
'trash-post',
'untrash-post',
'delete-page',
'dim-comment',
'add-link-category',
'add-tag',
'get-tagcloud',
'get-comments',
'replyto-comment',
'edit-comment',
'add-menu-item',
'add-meta',
'add-user',
'closed-postboxes',
'hidden-columns',
'update-welcome-panel',
'menu-get-metabox',
'wp-link-ajax',
'menu-locations-save',
'menu-quick-search',
'meta-box-order',
'get-permalink',
'sample-permalink',
'inline-save',
'inline-save-tax',
'find_posts',
'widgets-order',
'save-widget',
'delete-inactive-widgets',
'set-post-thumbnail',
'date_format',
'time_format',
'wp-remove-post-lock',
'dismiss-wp-pointer',
'upload-attachment',
'get-attachment',
'query-attachments',
'save-attachment',
'save-attachment-compat',
'send-link-to-editor',
'send-attachment-to-editor',
'save-attachment-order',
'media-create-image-subsizes',
'heartbeat',
'get-revision-diffs',
'save-user-color-scheme',
'update-widget',
'query-themes',
'parse-embed',
'set-attachment-thumbnail',
'parse-media-shortcode',
'destroy-sessions',
'install-plugin',
'activate-plugin',
'update-plugin',
'crop-image',
'generate-password',
'save-wporg-username',
'delete-plugin',
'search-plugins',
'search-install-plugins',
'activate-plugin',
'update-theme',
'delete-theme',
'install-theme',
'get-post-thumbnail-html',
'get-community-events',
'edit-theme-plugin-file',
'wp-privacy-export-personal-data',
'wp-privacy-erase-personal-data',
'health-check-site-status-result',
'health-check-dotorg-communication',
'health-check-is-in-debug-mode',
'health-check-background-updates',
'health-check-loopback-requests',
'health-check-get-sizes',
'toggle-auto-updates',
'send-password-reset',
);
// Deprecated.
$core_actions_post_deprecated = array(
'wp-fullscreen-save-post',
'press-this-save-post',
'press-this-add-category',
'health-check-dotorg-communication',
'health-check-is-in-debug-mode',
'health-check-background-updates',
'health-check-loopback-requests',
);
$core_actions_post = array_merge( $core_actions_post, $core_actions_post_deprecated );
// Register core Ajax calls.
if ( ! empty( $_GET['action'] ) && in_array( $_GET['action'], $core_actions_get, true ) ) {
add_action( 'wp_ajax_' . $_GET['action'], 'wp_ajax_' . str_replace( '-', '_', $_GET['action'] ), 1 );
}
if ( ! empty( $_POST['action'] ) && in_array( $_POST['action'], $core_actions_post, true ) ) {
add_action( 'wp_ajax_' . $_POST['action'], 'wp_ajax_' . str_replace( '-', '_', $_POST['action'] ), 1 );
}
add_action( 'wp_ajax_nopriv_generate-password', 'wp_ajax_nopriv_generate_password' );
add_action( 'wp_ajax_nopriv_heartbeat', 'wp_ajax_nopriv_heartbeat', 1 );
// Register Plugin Dependencies Ajax calls.
add_action( 'wp_ajax_check_plugin_dependencies', array( 'WP_Plugin_Dependencies', 'check_plugin_dependencies_during_ajax' ) );
$action = $_REQUEST['action'];
if ( is_user_logged_in() ) {
// If no action is registered, return a Bad Request response.
if ( ! has_action( "wp_ajax_{$action}" ) ) {
wp_die( '0', 400 );
}
/**
* Fires authenticated Ajax actions for logged-in users.
*
* The dynamic portion of the hook name, `$action`, refers
* to the name of the Ajax action callback being fired.
*
* @since 2.1.0
*/
do_action( "wp_ajax_{$action}" );
} else {
// If no action is registered, return a Bad Request response.
if ( ! has_action( "wp_ajax_nopriv_{$action}" ) ) {
wp_die( '0', 400 );
}
/**
* Fires non-authenticated Ajax actions for logged-out users.
*
* The dynamic portion of the hook name, `$action`, refers
* to the name of the Ajax action callback being fired.
*
* @since 2.8.0
*/
do_action( "wp_ajax_nopriv_{$action}" );
}
// Default status.
wp_die( '0' );
Nama
Tipe
Ukuran
Diubah
Aksi
📁 css
dir
—
2026-06-20 08:29
📁 images
dir
—
2026-06-20 08:29
📁 includes
dir
—
2026-06-20 08:29
📁 js
dir
—
2026-06-20 08:29
📁 maint
dir
—
2026-06-20 08:29
📁 network
dir
—
2026-06-20 08:29
📁 user
dir
—
2026-06-20 08:29
📄 .rnd
rnd
1 KB
2026-03-12 08:34
🐘 about.php
php
16 KB
2026-05-20 20:16
🐘 admin-ajax.php
php
5 KB
2024-07-04 07:22
🐘 admin-footer.php
php
2.7 KB
2026-05-20 20:16
🐘 admin-functions.php
php
479 B
2025-01-22 09:06
🐘 admin-header.php
php
9.1 KB
2026-05-20 20:16
🐘 admin-post.php
php
2 KB
2025-01-16 11:18
🐘 admin.php
php
12.6 KB
2026-05-20 20:16
🐘 async-upload.php
php
5.5 KB
2025-08-27 06:34
🐘 authorize-application.php
php
10.1 KB
2023-09-13 20:54
🐘 comment.php
php
11.4 KB
2026-05-20 20:16
🐘 contribute.php
php
5.9 KB
2026-05-20 20:16
🐘 credits.php
php
4.4 KB
2026-05-20 20:16
🐘 custom-background.php
php
489 B
2025-01-22 09:06
🐘 custom-header.php
php
499 B
2025-01-22 09:06
🐘 customize.php
php
11.2 KB
2026-05-20 20:16
🐘 edit-comments.php
php
14.1 KB
2026-05-20 20:16
🐘 edit-form-advanced.php
php
28.8 KB
2026-05-20 20:16
🐘 edit-form-blocks.php
php
14.7 KB
2026-05-20 20:16
🐘 edit-form-comment.php
php
8.3 KB
2026-05-20 20:16
🐘 edit-link-form.php
php
6.2 KB
2025-02-08 06:44
🐘 edit-tag-form.php
php
10.4 KB
2026-05-20 20:16
🐘 edit-tags.php
php
22 KB
2026-05-20 20:16
🐘 edit.php
php
19.5 KB
2024-10-03 18:46
🐘 erase-personal-data.php
php
7.3 KB
2024-04-17 16:21
📄 error_log
file
12.2 KB
2026-03-12 09:02
🐘 export-personal-data.php
php
7.8 KB
2024-04-17 16:21
🐘 export.php
php
11 KB
2026-05-20 20:16
🐘 font-library.php
php
1 KB
2026-05-20 20:16
🐘 freedoms.php
php
4.8 KB
2026-05-20 20:16
🐘 import.php
php
7.6 KB
2025-02-25 13:34
🐘 index.php
php
7.7 KB
2023-09-13 20:54
🐘 install-helper.php
php
6.8 KB
2022-11-20 09:10
🐘 install.php
php
17.9 KB
2026-05-20 20:16
🐘 link-add.php
php
934 B
2025-02-08 06:44
🐘 link-manager.php
php
4.3 KB
2025-02-08 06:44
🐘 link-parse-opml.php
php
2.6 KB
2026-05-20 20:16
🐘 link.php
php
2.9 KB
2024-05-01 14:01
🐘 load-scripts.php
php
2 KB
2024-08-25 19:48
🐘 load-styles.php
php
2.9 KB
2024-11-04 10:51
🐘 media-new.php
php
3.2 KB
2026-05-20 20:16
🐘 media-upload.php
php
3.6 KB
2025-02-08 10:53
🐘 media.php
php
819 B
2024-05-01 14:01
🐘 menu-header.php
php
9.8 KB
2025-02-20 16:29
🐘 menu.php
php
17.7 KB
2026-05-20 20:16
🐘 moderation.php
php
307 B
2020-02-06 01:33
🐘 ms-admin.php
php
196 B
2020-02-06 01:33
🐘 ms-delete-site.php
php
4.5 KB
2025-04-21 07:49
🐘 ms-edit.php
php
216 B
2020-02-06 01:33
🐘 ms-options.php
php
229 B
2024-06-22 07:47
🐘 ms-sites.php
php
215 B
2020-02-06 01:33
🐘 ms-themes.php
php
217 B
2020-02-06 01:33
🐘 ms-upgrade-network.php
php
219 B
2020-02-06 01:33
🐘 ms-users.php
php
215 B
2020-02-06 01:33
🐘 my-sites.php
php
4.7 KB
2026-05-20 20:16
🐘 nav-menus.php
php
49.1 KB
2026-05-20 20:16
🐘 network.php
php
5.4 KB
2024-03-08 17:38
🐘 options-connectors.php
php
1.1 KB
2026-05-20 20:16
🐘 options-discussion.php
php
15.9 KB
2025-11-10 17:51
🐘 options-general.php
php
22.3 KB
2026-05-20 20:16
🐘 options-head.php
php
621 B
2025-01-22 09:06
🐘 options-media.php
php
6.4 KB
2025-09-28 18:38
🐘 options-permalink.php
php
21.9 KB
2026-05-20 20:16
🐘 options-privacy.php
php
9.9 KB
2026-05-20 20:16
🐘 options-reading.php
php
10 KB
2026-05-20 20:16
🐘 options-writing.php
php
9.1 KB
2025-09-28 18:38
🐘 options.php
php
13.9 KB
2026-05-20 20:16
🐘 plugin-editor.php
php
13.8 KB
2025-10-13 17:50
🐘 plugin-install.php
php
7 KB
2024-02-20 02:27
🐘 plugins.php
php
30 KB
2025-10-13 19:12
🐘 post-new.php
php
2.7 KB
2024-06-15 08:34
🐘 post.php
php
10 KB
2025-09-06 02:49
🐘 press-this.php
php
2.4 KB
2026-05-20 20:16
🐘 privacy-policy-guide.php
php
3.7 KB
2023-11-22 12:44
🐘 privacy.php
php
2.8 KB
2026-05-20 20:16
🐘 profile.php
php
283 B
2020-02-06 01:33
🐘 revision.php
php
5.7 KB
2025-10-07 10:30
🐘 setup-config.php
php
17.5 KB
2026-05-20 20:16
🐘 site-editor.php
php
12.1 KB
2026-05-20 20:16
🐘 site-health-info.php
php
4.1 KB
2026-05-20 20:16
🐘 site-health.php
php
10.2 KB
2026-05-20 20:16
🐘 term.php
php
2.2 KB
2022-06-01 14:14
🐘 theme-editor.php
php
16.9 KB
2025-10-15 20:16
🐘 theme-install.php
php
23.6 KB
2026-05-20 20:16
🐘 themes.php
php
47.9 KB
2025-11-10 16:08
🐘 tools.php
php
3.4 KB
2023-02-23 05:38
🐘 update-core.php
php
45.1 KB
2026-05-20 20:16
🐘 update.php
php
12.8 KB
2026-05-20 20:16
🐘 upgrade-functions.php
php
341 B
2020-02-06 01:33
🐘 upgrade.php
php
6.2 KB
2026-05-20 20:16
🐘 upload.php
php
14.9 KB
2026-05-20 20:16
🐘 user-edit.php
php
40.4 KB
2026-05-20 20:16
🐘 user-new.php
php
24.1 KB
2026-05-20 20:16
🐘 users.php
php
23.4 KB
2026-05-20 20:16
🐘 widgets-form-blocks.php
php
5.1 KB
2025-08-27 06:34
🐘 widgets-form.php
php
19.1 KB
2026-05-20 20:16
🐘 widgets.php
php
1.1 KB
2022-03-22 15:59