Linux 700ba4e1d92d 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64
Apache/2.4.67 (Debian)
: 172.18.0.2 | : 216.73.217.30
Cant Read [ /etc/named.conf ]
8.2.31
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
wp-includes /
rest-api /
endpoints /
[ HOME SHELL ]
Name
Size
Permission
Action
class-wp-rest-abilities-v1-cat...
7.9
KB
-rwxrwxrwx
class-wp-rest-abilities-v1-lis...
13.07
KB
-rwxrwxrwx
class-wp-rest-abilities-v1-run...
6.87
KB
-rwxrwxrwx
class-wp-rest-application-pass...
23.75
KB
-rwxrwxrwx
class-wp-rest-attachments-cont...
56.8
KB
-rwxrwxrwx
class-wp-rest-autosaves-contro...
15.14
KB
-rwxrwxrwx
class-wp-rest-block-directory-...
9.68
KB
-rwxrwxrwx
class-wp-rest-block-pattern-ca...
4.7
KB
-rwxrwxrwx
class-wp-rest-block-patterns-c...
9.08
KB
-rwxrwxrwx
class-wp-rest-block-renderer-c...
5.73
KB
-rwxrwxrwx
class-wp-rest-block-types-cont...
26.25
KB
-rwxrwxrwx
class-wp-rest-blocks-controlle...
3.05
KB
-rwxrwxrwx
class-wp-rest-comments-control...
61.56
KB
-rwxrwxrwx
class-wp-rest-controller.php
18.59
KB
-rwxrwxrwx
class-wp-rest-edit-site-export...
2.06
KB
-rwxrwxrwx
class-wp-rest-font-collections...
10.39
KB
-rwxrwxrwx
class-wp-rest-font-faces-contr...
29.4
KB
-rwxrwxrwx
class-wp-rest-font-families-co...
17.44
KB
-rwxrwxrwx
class-wp-rest-global-styles-co...
23.25
KB
-rwxrwxrwx
class-wp-rest-global-styles-re...
12.98
KB
-rwxrwxrwx
class-wp-rest-icons-controller...
7.06
KB
-rwxrwxrwx
class-wp-rest-menu-items-contr...
32.49
KB
-rwxrwxrwx
class-wp-rest-menu-locations-c...
8.67
KB
-rwxrwxrwx
class-wp-rest-menus-controller...
16.68
KB
-rwxrwxrwx
class-wp-rest-navigation-fallb...
5.05
KB
-rwxrwxrwx
class-wp-rest-pattern-director...
12.58
KB
-rwxrwxrwx
class-wp-rest-plugins-controll...
27.86
KB
-rwxrwxrwx
class-wp-rest-post-statuses-co...
10.07
KB
-rwxrwxrwx
class-wp-rest-post-types-contr...
13.95
KB
-rwxrwxrwx
class-wp-rest-posts-controller...
102.47
KB
-rwxrwxrwx
class-wp-rest-revisions-contro...
27.27
KB
-rwxrwxrwx
class-wp-rest-search-controlle...
11.21
KB
-rwxrwxrwx
class-wp-rest-settings-control...
10.09
KB
-rwxrwxrwx
class-wp-rest-sidebars-control...
15.53
KB
-rwxrwxrwx
class-wp-rest-site-health-cont...
9.61
KB
-rwxrwxrwx
class-wp-rest-taxonomies-contr...
13.69
KB
-rwxrwxrwx
class-wp-rest-template-autosav...
7.64
KB
-rwxrwxrwx
class-wp-rest-template-revisio...
8.52
KB
-rwxrwxrwx
class-wp-rest-templates-contro...
37.34
KB
-rwxrwxrwx
class-wp-rest-terms-controller...
34.61
KB
-rwxrwxrwx
class-wp-rest-themes-controlle...
22.91
KB
-rwxrwxrwx
class-wp-rest-url-details-cont...
20.07
KB
-rwxrwxrwx
class-wp-rest-users-controller...
48.67
KB
-rwxrwxrwx
class-wp-rest-widget-types-con...
18.75
KB
-rwxrwxrwx
class-wp-rest-widgets-controll...
26.23
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-wp-rest-edit-site-export-controller.php
<?php /** * REST API: WP_REST_Edit_Site_Export_Controller class * * @package WordPress * @subpackage REST_API */ /** * Controller which provides REST endpoint for exporting current templates * and template parts. * * @since 5.9.0 * * @see WP_REST_Controller */ class WP_REST_Edit_Site_Export_Controller extends WP_REST_Controller { /** * Constructor. * * @since 5.9.0 */ public function __construct() { $this->namespace = 'wp-block-editor/v1'; $this->rest_base = 'export'; } /** * Registers the site export route. * * @since 5.9.0 */ public function register_routes() { register_rest_route( $this->namespace, '/' . $this->rest_base, array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'export' ), 'permission_callback' => array( $this, 'permissions_check' ), ), ) ); } /** * Checks whether a given request has permission to export. * * @since 5.9.0 * * @return true|WP_Error True if the request has access, or WP_Error object. */ public function permissions_check() { if ( current_user_can( 'export' ) ) { return true; } return new WP_Error( 'rest_cannot_export_templates', __( 'Sorry, you are not allowed to export templates and template parts.' ), array( 'status' => rest_authorization_required_code() ) ); } /** * Output a ZIP file with an export of the current templates * and template parts from the site editor, and close the connection. * * @since 5.9.0 * * @return void|WP_Error */ public function export() { // Generate the export file. $filename = wp_generate_block_templates_export_file(); if ( is_wp_error( $filename ) ) { $filename->add_data( array( 'status' => 500 ) ); return $filename; } $theme_name = basename( get_stylesheet() ); header( 'Content-Type: application/zip' ); header( 'Content-Disposition: attachment; filename=' . $theme_name . '.zip' ); header( 'Content-Length: ' . filesize( $filename ) ); flush(); readfile( $filename ); unlink( $filename ); exit; } }
Close